
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap");

/* ── CSS Variables ── */
:root {
  --navy: #001b1c;
  --navy-mid: #0f2044;
  --navy-light: #1a3160;
  --blue: #00676eb4;
  --blue-light: #1399a2b4;
  --accent: #25cde6;
  --accent-dark: #d4891a;
  --steel: #4a6fa5;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef1f7;
  --mid-gray: #8a94a8;
  --dark-text: #0a1628;
  --body-text: #3d4f6b;
  --border: rgba(30, 77, 183, 0.12);
  --shadow-sm: 0 4px 16px #1399a2b4;
  --shadow-md: 0 8px 32px #1399a2b4;
  --shadow-lg: 0 20px 60px #1399a2b4;
  --shadow-blue: 0 0 9px #00676eb4;
  --grad-navy: linear-gradient(135deg, #00666e 0%, #00666e 100%);
  --grad-blue: linear-gradient(135deg, #00666e 0%, #00666e 100%);
  --grad-accent: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}


::selection {
  background: var(--blue);
  color: white;
}

#loader img{
  width: 200px;
  height: 75px;
}
/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--trans);
}
.top-bar-item i {
  color: var(--accent);
  font-size: 0.78rem;
}
.top-bar-item:hover {
  color: white;
}
.top-bar-right {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition:
    background var(--trans),
    color var(--trans);
}
.social-link:hover {
  background: var(--blue);
  color: white;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.08);
  transition: box-shadow var(--trans);
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.15);
}
.nav-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-logo-icon {
  width: 200px;
  height: 46px;
  
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.nav-logo-icon i {
  color: white;
  font-size: 1.3rem;
}
.nav-logo-text {
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-name span {
  color: var(--blue);
}
.nav-logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 8px 14px;
  border-radius: 6px;
  transition:
    color var(--trans),
    background var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: #0d616721;
}
.nav-link i {
  font-size: 0.7rem;
  transition: transform var(--trans);
}
.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--trans),
    visibility var(--trans),
    transform var(--trans);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  transition:
    background var(--trans),
    color var(--trans);
  cursor: pointer;
}
.dropdown-link i {
  width: 20px;
  color: var(--blue);
  font-size: 0.85rem;
  text-align: center;
}
.dropdown-link:hover {
  background: var(--light-gray);
  color: var(--navy);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-blue);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  cursor: pointer;
  white-space: nowrap;
  margin-left: 12px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0px 15px var(--blue-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 80px 28px 40px;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -8px 0 40px rgba(10, 22, 40, 0.15);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.mobile-overlay.show {
  opacity: 1;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  transition: color var(--trans);
}
.mob-nav-link i {
  width: 20px;
  color: var(--blue);
}
.mob-nav-link:hover {
  color: var(--blue);
}
.mob-sub-links {
  padding-left: 30px;
}
.mob-sub-links .mob-nav-link {
  font-weight: 500;
  font-size: 0.88rem;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.loader-logo span {
  color: var(--accent);
}
.loader-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--grad-accent);
  animation: load 2s ease forwards;
}
@keyframes load {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ============================================================
   HERO SECTION — Large, Bold
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1900&q=80")
    center/cover no-repeat;
  opacity: 0.12;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.97) 0%,
    rgba(10, 22, 40, 0.85) 50%,
    rgba(26, 49, 96, 0.9) 100%
  );
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 77, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 77, 183, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 30px 60px;
  gap: 80px;
}
.hero-left {
  flex: 1;
  min-width: 0;
}
.hero-right {
  width: 600px;
  flex-shrink: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(47, 123, 149, 0.593);
  border: 1px solid rgba(30, 77, 183, 0.35);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-eyebrow span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.hero-eyebrow i {
  color: var(--accent);
  font-size: 0.8rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-headline .line-accent {
  color: var(--accent);
  display: block;
}
.hero-headline .line-blue {
  color: #47969a;
  display: block;
}
.hero-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease 0.4s both;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.7s ease 0.5s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-blue);
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-blue);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
   box-shadow: 0 0px 15px var(--blue-light);
}
.btn-primary i {
  transition: transform var(--trans);
}
.btn-primary:hover i {
  transform: translateX(4px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition:
    border-color var(--trans),
    background var(--trans),
    transform var(--trans);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.hero-stats-row {
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.6s both;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat {
  text-align: left;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hero-stat-num sup {
  font-size: 1.2rem;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Hero right panel — quote form */
.hero-quote-panel {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(10, 22, 40, 0.35);
  animation: fadeLeft 0.8s ease 0.5s both;
}
.qp-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.qp-sub {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-bottom: 24px;
}
.qp-divider {
  height: 3px;
  background: var(--grad-blue);
  border-radius: 2px;
  width: 48px;
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid #dde3ef;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition:
    border-color var(--trans),
    box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 77, 183, 0.1);
  background: white;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--grad-blue);
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  box-shadow: var(--shadow-blue);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}
.form-submit-btn:hover {
  transform: translateY(-2px);
   box-shadow: 0 0px 15px var(--blue-light);
}

/* Hero bottom strip */
.hero-strip {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.strip-item i {
  color: var(--accent);
}

/* ============================================================
   SECTION BASE STYLES
   ============================================================ */
.section {
  padding: 40px 0;
}
.section-sm {
  padding: 60px 0;
}
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 30px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--blue);
}
.section-desc {
  font-size: 1.02rem;
  color: var(--body-text);
  line-height: 1.8;
  max-width: 880px;
}
.section-header {
  margin-bottom: 35px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-label {
  justify-content: center;
}
.section-header.center .section-label::before {
  display: none;
}
.section-header.center .section-desc {
  margin: 0 auto;
}
.section-bg-light {
  background: var(--off-white);
}
.section-bg-navy {
  background: var(--navy);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.anim.in {
  opacity: 1;
  transform: none;
}
.anim-delay-1 {
  transition-delay: 0.1s;
}
.anim-delay-2 {
  transition-delay: 0.2s;
}
.anim-delay-3 {
  transition-delay: 0.3s;
}
.anim-delay-4 {
  transition-delay: 0.4s;
}
.anim-delay-5 {
  transition-delay: 0.5s;
}
.anim-delay-6 {
  transition-delay: 0.6s;
}
.anim-left {
  transform: translateX(-30px);
}
.anim-left.in {
  transform: none;
}
.anim-right {
  transform: translateX(30px);
}
.anim-right.in {
  transform: none;
}

/* ── Number counter ── */
.count {
  display: inline-block;
}

/* ============================================================
   SERVICES GRID — Home preview
   ============================================================ */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
  cursor: pointer;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 77, 183, 0.2);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(30, 77, 183, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--trans);
}
.svc-card:hover .svc-icon-wrap {
  background: rgba(30, 77, 183, 0.15);
}
.svc-icon-wrap i {
  font-size: 1.6rem;
  color: var(--blue);
}
.svc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--trans);
}
.svc-card:hover .svc-link {
  gap: 10px;
}

.services-sec {
  background: var(--off);
  overflow: hidden;
}
.svc-section-head {
  text-align: center;
  margin-bottom: 72px;
}
.sec-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sec-eyebrow::before,
.sec-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--blue);
}
.sec-title {
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.sec-title span {
  color: var(--blue);
}
.sec-desc {
  font-size: 1rem;
  color: var(--mist);
  max-width: 540px;
  margin: 14px auto 0;
  line-height: 1.85;
}

/* Tab layout */
.svc-tabs-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(10, 22, 40, 0.1);
}

/* Left: tab list */
.svc-tab-list {
  background: var(--navy);
  padding: 0;
}
.svc-tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 25px 32px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition:
    background var(--tr),
    border-color var(--tr);
  position: relative;
}
.svc-tab:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.svc-tab.active {
  background: rgba(30, 77, 183, 0.2);
  border-left-color: var(--accent);
}
.svc-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
}
.svc-tab-num {
  font-family: var(--f-disp);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  transition: color var(--tr);
}
.svc-tab.active .svc-tab-num {
  color: var(--accent);
}
.svc-tab-info {
}
.svc-tab-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
  transition: color var(--tr);
}
.svc-tab.active .svc-tab-title,
.svc-tab:hover .svc-tab-title {
  color: white;
}
.svc-tab-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Right: panel */
.svc-panel-wrap {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.svc-panel {
  position: absolute;
  inset: 0;
  padding: 40px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
  pointer-events: none;
}
.svc-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.svc-panel-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.svc-panel-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--sh-blue);
}
.svc-panel-icon i {
  color: white;
  font-size: 1.6rem;
}
.svc-panel-title {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}
.svc-panel-desc {
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 24px;
}
.svc-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.6;
}
.svc-feat i {
  color: var(--blue);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
/* Panel image */
.svc-panel-img {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  position: relative;
}
.svc-panel-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.svc-panel-img:hover .svc-panel-img-inner {
  transform: scale(1.04);
}
/* Panel bottom CTA strip */
.svc-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: 32px;
  border-top: 1px solid var(--mid);
  flex-wrap: wrap;
  gap: 16px;
}
.svc-panel-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--mist);
}
.svc-panel-tag i {
  color: var(--gold);
}

.serivce-btn{
   display: flex;
  gap: 14px;
 flex-wrap: wrap;
 margin-top: 32px;
}
/* ============================================================
   WHY CHOOSE US — Two column
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-container {
  position: relative;
}
.why-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=800&q=80")
    center/cover;
  border-radius: 16px;
  overflow: hidden;
}
.why-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--grad-blue);
  color: white;
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-blue);
}
.why-badge-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.why-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-top: 4px;
}
.why-exp-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.35);
}
.why-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  transition:
    border-color var(--trans),
    box-shadow var(--trans);
}
.why-feat:hover {
  border-color: rgba(30, 77, 183, 0.25);
  box-shadow: var(--shadow-sm);
}
.why-feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(30, 77, 183, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feat-icon i {
  color: var(--blue);
  font-size: 1.1rem;
}
.why-feat-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-feat-desc {
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   STATS BANNER — Blue
   ============================================================ */
.stats-band {
  background: var(--grad-navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 77, 183, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 77, 183, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-box {
  text-align: center;
  padding: 20px;
}
.stat-box-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.stat-box-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}
.stat-box-num {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-box-num sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--accent);
}
.stat-box-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--steel), var(--blue));
  opacity: 0.2;
}
.proc-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}
.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.proc-num {
  width: 56px;
  height: 56px;
  background: var(--grad-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-blue);
}
.proc-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--blue);
}
.proc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.proc-desc {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.93rem;
  color: var(--body-text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ============================================================
   INDUSTRIES SERVED
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ind-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
  cursor: pointer;
}
.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 77, 183, 0.25);
}
.ind-icon {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 14px;
}
.ind-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ind-desc {
  font-size: 0.82rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--blue);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  animation: tick 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.ticker-item i {
  color: var(--accent);
  font-size: 0.75rem;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--grad-blue);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80")
    center/cover;
  opacity: 0.07;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--trans),
    box-shadow var(--trans);
  cursor: pointer;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition:
    border-color var(--trans),
    background var(--trans),
    transform var(--trans);
  cursor: pointer;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-banner {
  background: var(--grad-navy);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 77, 183, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 77, 183, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519003300449-424ad0405076?w=1400&q=80")
    center/cover;
  opacity: 0.07;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb i {
  font-size: 0.65rem;
}
.breadcrumb span {
  color: var(--accent);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color var(--trans);
}
.breadcrumb a:hover {
  color: white;
}
.page-banner-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.page-banner-title span {
  color: var(--accent);
}
.page-banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   SERVICE DETAIL (Inner Service Pages)
   ============================================================ */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.svc-detail-grid.reverse {
  direction: rtl;
}
.svc-detail-grid.reverse > * {
  direction: ltr;
}
.svc-detail-img {
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  position: relative;
}
.svc-detail-img img,
.svc-detail-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.svc-detail-img:hover .svc-detail-img-inner {
  transform: scale(1.04);
}
.detail-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}
.detail-list-item i {
  color: var(--blue);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.val-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
}
.val-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 77, 183, 0.2);
}
.val-icon {
  width: 52px;
  height: 52px;
  background: rgba(30, 77, 183, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.val-icon i {
  font-size: 1.3rem;
  color: var(--blue);
}
.val-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.val-desc {
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(30, 77, 183, 0.25);
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cinfo-icon {
  width: 46px;
  height: 46px;
  background: rgba(30, 77, 183, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-icon i {
  color: var(--accent);
  font-size: 1.1rem;
}
.cinfo-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}
.cinfo-value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.cinfo-value a {
  color: inherit;
}
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.contact-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background var(--trans),
    color var(--trans);
  cursor: pointer;
}
.contact-social-btn:hover {
  background: var(--blue);
  color: white;
}
.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.cf-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.cf-sub {
  font-size: 0.88rem;
  color: var(--mid-gray);
  margin-bottom: 28px;
}
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  margin-top: 28px;
  border: 1px solid var(--border);
  filter: grayscale(60%) contrast(1.05);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
}
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 280px;
  margin: 16px 0 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.foot-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.foot-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.foot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color var(--trans),
    padding-left var(--trans);
  cursor: pointer;
}
.foot-link i {
  font-size: 0.7rem;
}
.foot-link:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}
.foot-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.foot-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.foot-contact-item a {
  color: inherit;
  transition: color var(--trans);
}
.foot-contact-item a:hover {
  color: white;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-copy span {
  color: var(--accent);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--trans);
  cursor: pointer;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--grad-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--trans),
    visibility var(--trans),
    transform var(--trans);
  z-index: 800;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-logo-icon {
    width: 140px;
    height: 46px;
    
}
  .hero-content-wrap {
    flex-direction: column;
    gap: 48px;
    padding: 40px 27px 40px;
  }
  .hero-subtext {
    font-size: 0.9rem;
    text-align: justify;
    hyphens: auto;
  }
  .hero-right {
    width: 100%;
    max-width: 560px;
  }
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .svc-detail-grid.reverse {
    direction: ltr;
  }
  .svc-tabs-layout {
    grid-template-columns: 1fr;
  }
  .top-bar-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .top-bar-left .top-item {
    display: none;
  }
  .hero-stat-num {
    font-size: 1.7rem;
  }
  .section-desc {
    font-size: 0.9rem;
    text-align: justify;
    hyphens: auto;
  }
  .section-header {
    margin-bottom: 20px;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .sec-desc {
    font-size: 0.9rem;
    margin: 10px auto 0;
    text-align: justify;
    hyphens: auto;
  }
  .svc-section-head {
    margin-bottom: 20px;
  }
  .svc-tab {
    padding: 20px;
  }
  .svc-panel {
    padding: 30px 20px 30px;
  }
  .svc-panel-top {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  }

.svc-panel-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}
.svc-panel-title{
  font-size: 1.5rem;
}

.svc-panel-desc {
  font-size: 0.9rem;
  margin-bottom: 10px;
   text-align: justify;
    hyphens: auto;
}
.svc-panel-img {
  height: 200px;
}
.svc-panel-bottom {
  margin-top: 0px;
}
.btn-primary{
   padding: 10px 14px;
}
.btn-outline{
   padding: 10px 14px;
}
.stats-band {
  padding: 40px 0;
}
.stat-box {
  padding: 0px;
}
.why-main-img {

  height: 350px;
}
.why-badge-num {
  
  font-size: 1.6rem;
}
.section-sm{
    padding: 40px 0;
}
.cta-sub {
  font-size: 0.9rem;
  text-align: justify;
   hyphens: auto;
   margin-bottom: 25px;
}
.footer-top {
  padding: 50px 0 15px;
}
.page-banner {
  padding: 50px 0;
}
.page-banner-desc{
 font-size:0.9rem;
   text-align: justify;
   hyphens: auto;
}
.why-main-img{
  height: 350px !important;
}
.about-para{
  font-size:0.9rem !important;
   text-align: justify;
   hyphens: auto;
}
.serivce-btn{
 flex-wrap: nowrap;
 gap: 10px;
}
.contact-info-card,.contact-form-card{
  padding: 40px 20px 30px 20px;
}
 .svc-detail-img{
  height:350px;
 }
 .section-title{
  font-size: 1.5rem !important;
 }
 .svc-detail-grid{
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
 }
}
@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .top-bar-right {
    display: none;
  }
  .hero-headline {
    font-size: 2.4rem;
  }
  .services-grid-6 {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap:5px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-row {
    row-gap: 20px;

    column-gap: 70px;
  }
  .hero-buttons {
    flex-direction: column;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-stats-row {
    row-gap: 20px;

    justify-content: space-between;
  }
  .hero-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;
    row-gap: 10px;
  }
  .strip-item {
    font-size: 11px;
    gap: 2px;
  }
}
