:root {
  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --blue-l: #eff6ff;
  --blue-ll: #dbeafe;
  --teal: #0891b2;
  --teal-l: #e0f2fe;
  --dark: #111827;
  --dark2: #1f2937;
  --mid: #374151;
  --gray: #6b7280;
  --lgray: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --gold: #f59e0b;
  --font: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── PAGE SYSTEM ── */
/* .page{display:none;}
.page.active{display:block;} */

/* ══ NAV ══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);


  /* padding: 0 5vw;s */
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-left img {
  height: 55px;

}

.nav-badge {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
}

.nav-brand {
  line-height: 1.2;
}

.nav-brand strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.nav-brand span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
  background: var(--blue-l);
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 40px;
}

.btn-call {
  background: #25D366;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .18s;
  text-decoration: none;
}

.btn-call:hover {
  background: var(--blue-d);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--gray);
  border-radius: 2px;
}

@media(max-width:820px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .btn-call span {
    display: none;
  }
}

/* ══ SHARED ══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 40px);
}

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: var(--blue-l);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: .5px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 80%;
  padding-bottom: 20px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 14px 0 22px;
}

.divider-center {
  margin: 14px auto 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: all .18s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-d);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-white {
  background: #fff;
  color: var(--blue);
}

.btn-white:hover {
  background: var(--blue-l);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .22s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

/* ══ PAGE: HOME ══ */
/* Hero */
.hero {
  padding-top: 64px;
  background: var(--white);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: calc(100% - 40px);
}


.hero-trusted {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-l);
  border: 1px solid var(--blue-ll);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
}

.hero-trusted-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  display: flex;
  gap: 1px;
}

.proof-text {
  font-size: 12px;
  color: var(--gray);
}

.hero-visual {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
  aspect-ratio: 4/3;
}

.hero-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a5f, #2563eb, #0891b2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border-radius: 16px;
}

.hero-badge-float {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hbf-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-l);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hbf-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.hbf-lbl {
  font-size: 11px;
  color: var(--gray);
}

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

/* Services section on home */
.services-home {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .22s;
  cursor: pointer;
}

.svc-card:hover {
  box-shadow: 0 8px 28px rgba(37, 99, 235, .12);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.svc-img {
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #e5e7eb;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.svc-card:hover .svc-img img {
  transform: scale(1.06);
}

.svc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.svc-icon-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.svc-body {
  padding: 16px;
}

.svc-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.svc-body p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.55;
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .22s;
}

.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(37, 99, 235, .08);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #0891b2 100%);
  padding: 70px 0;
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══ PAGE: ABOUT ══ */
.page-banner {
  background: var(--bg);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
}

.breadcrumb span {
  color: var(--blue);
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  overflow: hidden;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.about-float .big {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-float .sm {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}

.about-text p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.addr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.addr-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.addr-card strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .8px;
  display: block;
  margin-bottom: 6px;
}

.addr-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.why-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-row-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.wri-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.wri-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
}

.wri-text span {
  font-size: 12.5px;
  color: var(--gray);
}

.vmc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.vmc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .2s;
}

.vmc:hover {
  border-color: var(--blue);
}

.vmc-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-ll);
  line-height: 1;
  margin-bottom: 6px;
}

.vmc-t {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.vmc-p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.val-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.val-pill {
  background: var(--blue-l);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ══ PAGE: SERVICES ══ */
.all-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-full-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .22s;
  cursor: default;
}

.svc-full-card:hover {
  box-shadow: 0 10px 36px rgba(37, 99, 235, .1);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.sfc-img {
  height: 180px;
  overflow: hidden;
  background: #e5e7eb;
  position: relative;
}

.sfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.svc-full-card:hover .sfc-img img {
  transform: scale(1.05);
}

.sfc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
}

.sfc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sfc-body {
  padding: 20px;
}

.sfc-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sfc-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.sfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sfc-tag {
  font-size: 11px;
  background: var(--bg);
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 500;
}

.ind-bar {
  background: var(--blue);
  padding: 50px 0;
  margin-top: 0;
}

.ind-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

.ind-inner h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ind-inner p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 24px;
}

.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ind-p {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background .18s;
}

.ind-p:hover {
  background: rgba(255, 255, 255, .25);
}

/* ══ PAGE: GALLERY ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
  position: relative;
  cursor: pointer;
}

.gallery-item:hover .gal-overlay {
  opacity: 1;
}

.gal-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.gal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}

.gal-overlay span {
  color: #fff;
  font-size: 28px;
}

/* .gallery-item.large {
  grid-column: span 2;
} */

/* ══ PAGE: CONTACT ══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.gallary-detail-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.cinfo {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cinfo-body strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}

.cinfo-body span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .05);
}

.form-wrap h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-wrap .form-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 26px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.fg label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.fg input,
.fg select,
.fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  transition: border-color .18s;
  background: #fff;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
}

.fg textarea {
  resize: vertical;
  min-height: 100px;
}

.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background .18s;
}

.submit-btn:hover {
  background: var(--blue-d);
}

/* ══ FOOTER ══ */
footer {
  background: var(--dark2);
  padding: 60px 0 28px;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.fb p {
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.fb-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.fb-soc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background .18s;
}

.fb-soc:hover {
  background: var(--blue);
}

.fc h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc ul li a {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  cursor: pointer;
  transition: color .18s;
  text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  background: var(--white);
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
}

.footer-logo img {
  height: 55px;
  display: block;
}

.fc ul li:hover {
  color: var(--blue);
}

.fc-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.footer-bot {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 5vw 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.footer-bot p {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-bot a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
  text-decoration: none;
}

.footer-bot a:hover {
  color: var(--blue);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fu {
  animation: fadeUp .6s ease both;
}

.d1 {
  animation-delay: .1s
}

.d2 {
  animation-delay: .2s
}

.d3 {
  animation-delay: .35s
}

.d4 {
  animation-delay: .5s
}

/* ══ RESPONSIVE ══ */
@media(max-width:960px) {

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vmc-row,
  .all-svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  .stat-item:last-child,
  .stat-item:nth-child(2) {
    border-bottom: none;
  }
}

@media(max-width:600px) {
  .nav-left img{
    height: 45px;
  }
.gallary-detail-wrapper {
  grid-template-columns: repeat(2, 1fr);
}
  .services-grid,
  .why-grid,
  .vmc-row,
  .all-svc-grid,
  .gallery-grid,
  .frow,
  .addr-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}