:root {
  --bg: #f6f9ff;
  --surface: #fff;
  --surface2: #eef5ff;
  --ink: #061225;
  --text: #122238;
  --muted: #637286;
  --blue: #066bff;
  --blue2: #18a0ff;
  --navy: #051225;
  --line: rgba(6, 18, 37, .10);
  --line-blue: rgba(6, 107, 255, .14);
  --shadow: 0 18px 55px rgba(6, 18, 37, .08);
  --shadow-lg: 0 34px 90px rgba(6, 18, 37, .14);
  --shadow-blue: 0 18px 55px rgba(6, 107, 255, .16);
  --radius: 24px;
  --radius-lg: 34px
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden
}

a {
  color: inherit
}

.container {
  max-width: 1180px !important
}

.blue {
  color: var(--blue)
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background:
    radial-gradient(circle at 80% 0%, rgba(6,107,255,.20), transparent 30%),
    linear-gradient(135deg, #04101f 0%, #061225 55%, #071a36 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 55px rgba(6,18,37,.22);
}



.custom-navbar {
  padding: 16px 0;
}

.brand-box {
  width: 285px;
  height: 68px;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.nav-pill-wrap {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 8px;
  backdrop-filter: blur(12px);
}

.nav-link {
  color: #d9e7ff !important;
  font-weight: 850;
  border-radius: 999px;
  padding: 11px 17px !important;
  transition: .25s;
}

.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,.10);
}

.nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 12px 28px rgba(6,107,255,.32);
}

.header-cta {
  background: #ffffff;
  color: var(--blue) !important;
  padding: 15px 28px !important;
  border-radius: 999px;
  font-weight: 950;
  border: 0;
  box-shadow: 0 16px 42px rgba(255,255,255,.12);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #ffffff !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,.22);
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .brand-box {
    width: 235px;
    height: 58px;
  }

  .nav-pill-wrap {
    border-radius: 22px;
    padding: 10px;
    margin: 18px 0;
  }

  .nav-link {
    margin-bottom: 6px;
  }

  .header-cta {
    width: 100%;
  }
}
.btn {
  border-radius: 999px;
  padding: .84rem 1.25rem;
  font-weight: 850
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border: 0;
  box-shadow: var(--shadow-blue)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(6, 107, 255, .22)
}

.btn-outline-primary,
.btn-outline-light {
  color: var(--blue);
  border: 1px solid rgba(6, 107, 255, .28);
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 18, 37, .06)
}

.btn-outline-primary:hover,
.btn-outline-light:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue)
}

.eyebrow,
.service-pill,
.blog-category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 850
}

.eyebrow {
  gap: .5rem;
  color: #0a5bd3;
  background: rgba(6, 107, 255, .10);
  border: 1px solid rgba(6, 107, 255, .18);
  padding: .58rem .9rem;
  font-size: .9rem
}

.section {
  padding: 92px 0
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: -1.5px;
  color: var(--ink)
}

.section-lead {
  color: var(--muted);
  font-size: 1.08rem
}

.light-section {
  background: linear-gradient(180deg, #eef6ff, #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.page-hero,
.home-hero {
  position: relative;
  background: radial-gradient(circle at 88% 12%, rgba(6, 107, 255, .16), transparent 32%), linear-gradient(135deg, #fff 0%, #f7fbff 48%, #e9f4ff 100%);
  overflow: hidden
}

.page-hero {
  padding: 95px 0
}

.home-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 100px 0 90px
}

.page-hero:before,
.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 18, 37, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 18, 37, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%)
}

.page-hero .container,
.home-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1,
.home-hero h1 {
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.5px;
  margin: 20px 0;
  color: var(--ink)
}

.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.8rem)
}

.home-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem)
}

.page-hero p,
.home-hero p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 720px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px
}

.hero-service-tags,
.area-tags,
.mini-map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px
}

.hero-service-tags {
  margin-top: 32px;
  max-width: 650px
}

.hero-service-tags span,
.area-tags span,
.mini-map-tags span {
  background: #eef5ff;
  color: var(--blue);
  border: 1px solid rgba(6, 107, 255, .12);
  border-radius: 999px;
  font-weight: 800
}

.hero-service-tags span {
  background: #fff;
  color: var(--ink);
  padding: 11px 16px;
  box-shadow: 0 12px 32px rgba(6, 18, 37, .06)
}

.area-tags span {
  padding: 10px 16px;
  font-size: 14px
}

.mini-map-tags span {
  padding: 9px 13px;
  font-size: 13px
}

.home-hero-slider {
  position: relative;
  height: 560px;
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: 36px;
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.home-hero-slider .hero-slide {
  position: absolute;
  inset: 18px;
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none
}

.home-hero-slider .hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto
}

.home-hero-slider .hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-35px)
}

.home-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px
}

.hero-slide-content,
.floating-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-blue);
  border-radius: 22px;
  padding: 18px
}

.hero-slide-content strong,
.floating-badge strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950
}

.hero-slide-content span,
.floating-badge span {
  color: var(--muted);
  font-weight: 750
}

.card-base,
.service-card,
.feature-card,
.form-card,
.area-card,
.blog-card,
.process-card,
.faq-item,
.content-card,
.contact-form-card,
.contact-info-card,
.contact-mini-map,
.side-contact-card,
.area-list-card,
.karachi-map-card,
.coverage-card {
  background: var(--surface);
  border: 1px solid rgba(6, 18, 37, .08);
  box-shadow: var(--shadow)
}

.service-card,
.feature-card,
.form-card,
.area-card,
.blog-card,
.process-card,
.faq-item {
  height: 100%;
  border-radius: var(--radius);
  padding: 28px;
  transition: .25s
}

.service-card:hover,
.feature-card:hover,
.area-card:hover,
.blog-card:hover,
.process-card:hover,
.home-service-card:hover,
.service-visual-card:hover,
.blog-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 107, 255, .32);
  box-shadow: 0 22px 64px rgba(6, 107, 255, .14)
}

.service-link,
.home-service-link,
.service-visual-link,
.blog-visual-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%
}

.icon-box,
.process-card span,
.timeline-item>strong,
.included-grid span,
.contact-info-card>span {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-weight: 950
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 107, 255, .12), rgba(24, 160, 255, .18));
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 22px
}

.process-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px
}

.service-card h3,
.feature-card h3,
.process-card h3,
.area-card h3,
.faq-item h3,
.visual-card h3,
.process-image-card h3,
.home-service-card h3,
.service-visual-content h3,
.blog-visual-content h3,
.timeline-item h3,
.included-grid h3,
.best-for-grid h3,
.side-contact-card h3,
.contact-info-card h3,
.contact-mini-map h3 {
  color: var(--ink);
  font-weight: 900
}

.service-card h3,
.feature-card h3,
.process-card h3,
.area-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px
}

.service-card p,
.feature-card p,
.blog-card p,
.process-card p,
.area-card p,
.faq-item p,
.visual-card p,
.process-image-card p,
.timeline-item p,
.side-contact-card p,
.contact-info-card p {
  color: var(--muted);
  margin-bottom: 0
}

.faq-section {
  padding-top: 80px
}

.faq-item {
  height: auto;
  padding: 24px 28px;
  margin-bottom: 16px
}

.faq-item h3 {
  font-size: 18px
}

.faq-item p {
  font-size: 15px
}

.image-card,
.about-image-stack,
.visual-card,
.process-image-card,
.home-service-card,
.service-visual-card,
.blog-visual-card {
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.image-card img,
.about-image-stack>img,
.visual-card img,
.process-image-card img,
.home-service-card img,
.service-visual-card img,
.blog-visual-card img {
  width: 100%;
  object-fit: cover;
  display: block
}

.image-card img {
  height: 480px
}

.about-image-stack {
  position: relative;
  padding: 18px
}

.about-image-stack>img {
  height: 430px;
  border-radius: 22px
}

.visual-card img {
  height: 250px
}

.process-image-card {
  padding: 22px
}

.process-image-card img {
  height: 170px;
  border-radius: 20px;
  margin-bottom: 18px
}

.visual-card div,
.home-service-card div,
.service-visual-content,
.blog-visual-content {
  padding: 24px
}

.home-service-card,
.service-visual-card,
.blog-visual-card {
  height: 100%;
  transition: .25s
}

.home-service-card img,
.service-visual-card img,
.blog-visual-card img {
  height: 230px
}

.home-service-card h3,
.service-visual-content h3,
.blog-visual-content h3 {
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 10px
}

.home-service-card p,
.service-visual-content p,
.blog-visual-content p {
  color: var(--muted);
  margin-bottom: 16px
}

.home-service-card strong,
.service-visual-content strong,
.blog-visual-content strong,
.contact-info-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none
}

.home-service-card span,
.service-pill,
.blog-category {
  background: #eef5ff;
  color: var(--blue);
  border: 1px solid rgba(6, 107, 255, .12);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px
}

.about-logo-badge {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 107, 255, .15);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px
}

.about-logo-badge img {
  width: 70px;
  background: #061225;
  border-radius: 14px;
  padding: 8px
}

.about-logo-badge span {
  font-weight: 900;
  color: var(--ink)
}

.mini-points {
  display: grid;
  gap: 12px;
  margin-top: 26px
}

.mini-points span {
  background: #fff;
  border: 1px solid rgba(6, 107, 255, .12);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(6, 18, 37, .05)
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(6, 18, 37, .06)
}

.timeline-item>strong {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 16px
}

.about-timeline {
  display: grid;
  gap: 18px
}

.services-hero-image,
.service-detail-image,
.areas-hero-card,
.blog-hero-card,
.contact-hero-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg)
}

.services-hero-image img,
.service-detail-image img,
.areas-hero-card img,
.blog-hero-card img,
.contact-hero-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 26px;
  display: block
}

.services-hero-badge,
.service-detail-badge,
.areas-hero-badge,
.blog-hero-badge,
.contact-hero-badge {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(6, 107, 255, .15);
  border-radius: 20px;
  padding: 18px
}

.services-hero-badge strong,
.service-detail-badge strong,
.areas-hero-badge strong,
.blog-hero-badge strong,
.contact-hero-badge strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950
}

.services-hero-badge span,
.service-detail-badge span,
.areas-hero-badge span,
.blog-hero-badge span,
.contact-hero-badge span {
  color: var(--muted);
  font-weight: 700
}

.content-card,
.contact-form-card {
  border-radius: 30px;
  padding: 34px
}

.content-card h2,
.contact-form-card h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 16px 0
}

.content-card p,
.contact-form-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7
}

.included-grid,
.best-for-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px
}

.included-grid {
  grid-template-columns: repeat(2, 1fr)
}

.best-for-grid {
  grid-template-columns: repeat(3, 1fr)
}

.included-grid div,
.best-for-grid div {
  background: #f6f9ff;
  border: 1px solid rgba(6, 107, 255, .10);
  border-radius: 22px;
  padding: 22px
}

.included-grid span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 16px
}

.best-for-grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px
}

.sticky-side {
  position: sticky;
  top: 100px
}

.inspection-card h3 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
  margin-bottom: 8px
}

.inspection-card p {
  color: var(--muted);
  margin-bottom: 22px
}

.side-contact-card {
  margin-top: 18px;
  border-radius: 28px;
  padding: 24px
}

.side-contact-card img {
  width: 140px;
  background: #061225;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 18px
}

.area-list-card,
.karachi-map-card {
  height: 100%;
  border-radius: 30px;
  padding: 24px
}

.area-list-card h3 {
  color: var(--ink);
  font-weight: 950;
  margin-bottom: 18px
}

.area-list {
  display: grid;
  gap: 10px;
  max-height: 610px;
  overflow: auto;
  padding-right: 6px
}

.area-btn {
  width: 100%;
  border: 1px solid rgba(6, 18, 37, .08);
  background: #f6f9ff;
  border-radius: 18px;
  padding: 14px 16px;
  text-align: left;
  transition: .2s
}

.area-btn span {
  display: block;
  color: var(--ink);
  font-weight: 900
}

.area-btn small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 650
}

.area-btn:hover,
.area-btn.active {
  background: #eaf4ff;
  border-color: rgba(6, 107, 255, .28);
  transform: translateY(-2px)
}

.karachi-map-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 20%, rgba(6, 107, 255, .14), transparent 32%), linear-gradient(135deg, #fff, #eef6ff)
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 18, 37, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 18, 37, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .75
}

.map-title {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line-blue);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 14px 16px
}

.map-title strong {
  display: block;
  color: var(--ink);
  font-weight: 950
}

.map-title span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px
}

.map-shape {
  position: absolute;
  inset: 90px 70px 110px;
  background: radial-gradient(circle at 50% 50%, rgba(6, 107, 255, .09), transparent 62%), linear-gradient(135deg, rgba(6, 107, 255, .10), rgba(24, 160, 255, .18));
  clip-path: polygon(35% 2%, 70% 8%, 92% 28%, 86% 56%, 72% 82%, 38% 96%, 12% 80%, 5% 48%, 18% 18%);
  border: 1px solid rgba(6, 107, 255, .20)
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3
}

.map-pin span {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border: 4px solid #fff;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 8px rgba(6, 107, 255, .16), 0 12px 25px rgba(6, 107, 255, .25);
  transition: .2s
}

.map-pin:hover span,
.map-pin.active span {
  background: #17b45b;
  transform: scale(1.25);
  box-shadow: 0 0 0 10px rgba(23, 180, 91, .18), 0 14px 30px rgba(23, 180, 91, .25)
}

.selected-area-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  width: min(330px, calc(100% - 48px));
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line-blue);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(6, 18, 37, .10)
}

.selected-area-card h3 {
  color: var(--ink);
  font-weight: 950;
  font-size: 26px;
  margin: 6px 0
}

.selected-area-card p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px
}

.coverage-card {
  border-radius: 30px;
  padding: 35px
}

.coverage-card h3 {
  font-size: 32px;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 10px
}

.coverage-card p {
  color: var(--muted);
  margin-bottom: 25px
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.coverage-grid span {
  background: #eef5ff;
  color: var(--blue);
  border-radius: 999px;
  padding: 10px;
  text-align: center;
  font-weight: 800;
  border: 1px solid rgba(6, 107, 255, .10)
}

.coverage-bottom {
  margin-top: 25px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 18px;
  font-weight: 900
}

.contact-form-card label {
  color: var(--ink);
  font-weight: 850;
  margin-bottom: 8px
}

.contact-info-stack {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 100px
}

.contact-info-card,
.contact-mini-map {
  border-radius: 26px;
  padding: 24px
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-info-card>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: #eef5ff;
  border: 1px solid rgba(6, 107, 255, .12);
  font-size: 22px
}

.form-control,
.form-select {
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .14);
  color: var(--ink);
  border-radius: 15px;
  padding: 14px
}

.form-control::placeholder {
  color: #8a98aa
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  color: var(--ink);
  border-color: var(--blue2);
  box-shadow: 0 0 0 .2rem rgba(6, 107, 255, .13)
}

.cta-section {
  padding-top: 40px
}

.cta {
  background: radial-gradient(circle at 92% 0, rgba(24, 160, 255, .24), transparent 30%), linear-gradient(135deg, #fff, #eef6ff);
  border: 1px solid var(--line-blue);
  border-radius: 34px;
  padding: 54px;
  box-shadow: var(--shadow)
}



/* Service Detail Page */
.service-hero {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(circle at 85% 0%, rgba(6, 107, 255, .14), transparent 30%), linear-gradient(135deg, #fff, #eef6ff);
  overflow: hidden;
}

.service-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 18, 37, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 18, 37, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-highlights span {
  background: #fff;
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(6, 107, 255, .12);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(6, 18, 37, .05);
}

.service-hero-image {
  background: #fff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.service-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.service-list {
  padding-left: 20px;
  margin: 0;
}

.service-list li {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 700;
}

.mini-feature {
  background: #f7fbff;
  border: 1px solid rgba(6, 107, 255, .08);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
}

.mini-feature h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}

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

.site-footer{
    background:
    radial-gradient(circle at 80% 0%, rgba(6,107,255,.20), transparent 30%),
    linear-gradient(135deg, #04101f 0%, #061225 55%, #071a36 100%);
    color:#fff;
    padding:90px 0 30px;
}

.footer-logo{
    width:260px;
    margin-bottom:20px;
}

.footer-title{
    font-size:20px;
    font-weight:900;
    margin-bottom:22px;
}

.site-footer a{
    color:#9fb2cc;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
    transition:.25s;
}

.site-footer a:hover{
    color:#fff;
}

.footer-divider{
    margin:40px 0 20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.float-whatsapp,
.float-call {
  position: fixed;
  right: 18px;
  z-index: 20;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 18px;
  box-shadow: 0 14px 40px rgba(6, 18, 37, .22)
}

.float-whatsapp {
  bottom: 82px;
  background: #17b45b
}

.float-call {
  bottom: 25px;
  background: var(--blue)
}

@media(max-width:991px) {
  .home-hero {
    min-height: auto;
    padding: 70px 0
  }

  .home-hero h1,
  .page-hero h1 {
    letter-spacing: -1.5px
  }

  .home-hero-slider {
    height: 420px
  }

  .page-hero {
    padding: 70px 0
  }

  .section {
    padding: 62px 0
  }

  .cta {
    padding: 34px
  }

  .brand-logo {
    width: 100%;
    height: 90px
  }

  .float-call {
    left: 18px;
    right: auto
  }

  .image-card img,
  .about-image-stack>img,
  .services-hero-image img,
  .service-detail-image img,
  .areas-hero-card img,
  .blog-hero-card img,
  .contact-hero-card img {
    height: 340px
  }

  .about-logo-badge,
  .services-hero-badge,
  .service-detail-badge,
  .areas-hero-badge,
  .blog-hero-badge,
  .contact-hero-badge {
    position: static;
    margin-top: 14px
  }

  .timeline-item {
    flex-direction: column
  }

  .included-grid,
  .best-for-grid,
  .hero-stats-card,
  .coverage-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr
  }

  .sticky-side,
  .contact-info-stack {
    position: static
  }

  .karachi-map-card {
    min-height: 600px
  }

  .map-shape {
    inset: 100px 24px 150px
  }

  .home-hero-visual>img {
    height: 380px
  }

  .hero-brand-float,
  .hero-stats-card {
    position: static;
    margin-top: 14px
  }
}

.real-map-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
}

.area-list-panel,
.real-map-card {
  background: #ffffff;
  border: 1px solid rgba(6, 18, 37, .08);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(6, 18, 37, .08);
}

.real-map-card {
  position: relative;
  padding: 14px;
  overflow: hidden;
}

#karachiRealMap {
  width: 100%;
  height: 650px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.map-floating-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 500;
  width: 320px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(6,107,255,.14);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(6,18,37,.14);
}

.map-floating-card h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  margin: 6px 0;
}

.map-floating-card p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  .real-map-layout {
    grid-template-columns: 1fr;
  }

  #karachiRealMap {
    height: 520px;
  }

  .map-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}

@media(max-width:991px) {
  .service-hero {
    padding: 70px 0;
  }

  .service-hero-image img {
    height: 340px;
  }
}
.sticky-side {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.inspection-card {
  height: auto;
  min-height: auto;
}

@media (max-width: 991px) {
  .sticky-side {
    position: static;
  }
}