/* ================================================================
   NEXCELLENT TECH SOLUTIONS — SHARED STYLE.CSS
   Pages: index.html | about.html | services.html | contact.html
   ================================================================ */

:root {
  --blue:         #1a4f96;
  --blue-dark:    #0d2463;
  --blue-mid:     #2166b0;
  --blue-light:   #e4edf8;
  --orange:       #e87722;
  --orange-light: #fff4eb;
  --white:        #ffffff;
  --off-white:    #f5f8fc;
  --text-dark:    #0a1830;
  --text-mid:     #374f6b;
  --text-light:   #6e87a2;
  --border:       #dce6f5;
  --shadow-sm:    0 2px 12px rgba(13,36,99,0.08);
  --shadow-md:    0 8px 32px rgba(13,36,99,0.14);
  --shadow-lg:    0 20px 60px rgba(13,36,99,0.18);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head:    'Satoshi Variable','Satoshi',sans-serif;
  --font-body:    'Poppins',sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 100px 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

/* ── Utilities ── */
.highlight-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(13, 36, 99, 0.15);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.section-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 60px;
}

/* ── Reveal Animations ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

.delay-1 {
  transition-delay: 0.1s !important
}

.delay-2 {
  transition-delay: 0.2s !important
}

.delay-3 {
  transition-delay: 0.3s !important
}

.delay-4 {
  transition-delay: 0.4s !important
}

.delay-5 {
  transition-delay: 0.5s !important
}


/* ── Buttons ── */
.btn-primary-custom {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(13, 36, 99, 0.35);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13, 36, 99, 0.45);
}

.btn-orange-custom {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232, 119, 34, 0.35);
  cursor: pointer;
}

.btn-orange-custom:hover {
  background: #c9620f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 119, 34, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-custom {
  background: var(--white);
  color: var(--blue);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.btn-white-custom:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#mainNav {
  padding: 18px 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: var(--t);
  z-index: 1000
}

#mainNav.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--border);
  box-shadow: var(--sh-sm)
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-text {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em
}

.brand-accent {
  color: var(--orange)
}

.navbar-nav .nav-link {
  font-family: var(--fb);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 18px !important;
  position: relative;
  transition: var(--t)
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s ease
}

.navbar-nav .nav-link:hover {
  color: var(--blue)
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1)
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  background: transparent;
  box-shadow: none !important;
  outline: none !important
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--t)
}

.nav-cta {
  margin-left: 8px
}

.btn-nav {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(0, 67, 165, .3)
}

.btn-nav:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 86, 33, .4)
}

.dropdown-mega {
  position: relative
}

.nav-chevron {
  font-size: 10px;
  margin-left: 3px;
  transition: transform .3s
}

.dropdown-mega:hover .nav-chevron {
  transform: rotate(180deg)
}

.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-width: 720px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  z-index: 100;
  overflow: hidden
}

.dropdown-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.mega-col {
  padding: 24px 20px;
  border-right: 1px solid var(--border)
}

.mega-col:last-child {
  border-right: none
}

.mega-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a4f96;
  display: block;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border)
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--t)
}

.mega-col a i {
  color: var(--blue);
  font-size: 14px
}

.mega-col a:hover {
  background: var(--blue-light);
  color: var(--blue)
}

/* ================================================================
   PAGE HERO BANNER
   ================================================================ */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f0f5ff 0%, #ffffff 50%, #fff7f4 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(13, 36, 99, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 36, 99, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.page-hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 36, 99, 0.15), transparent);
  top: -200px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.page-hero-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.12), transparent);
  bottom: -100px;
  left: -80px;
  animation: blobFloat 11s ease-in-out infinite 3s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(20px, -30px) scale(1.05)
  }

  66% {
    transform: translate(-15px, 15px) scale(0.95)
  }
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb-custom a {
  color: var(--blue);
  transition: var(--transition);
}

.breadcrumb-custom a:hover {
  color: var(--blue-dark);
}

.breadcrumb-sep {
  color: var(--text-light);
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.08;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   CTA SECTION (shared)
   ================================================================ */
.cta-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1800&q=85') center/cover no-repeat
}

.cta-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgb(9 24 65) 0%, rgb(26 79 150 / 9%) 100%)
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.cta-shape-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  top: -200px;
  right: -100px
}

.cta-shape-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  bottom: -150px;
  left: -50px
}

.cta-content {
  position: relative;
  z-index: 2
}

.light-tag {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2)
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  line-height: 1.15
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.8
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-cta-primary {
  background: #053a6c;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  border: 2px solid var#053a6c;
  box-shadow: 0 8px 28px #053a6c
}

.btn-cta-primary:hover {
  background: #053a6c;
  border-color: #053a6c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 38px #053a6c
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .35);
  transition: var(--t)
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  transform: translateY(-3px)
}

/* ================================================================
   FOOTER (shared)
   ================================================================ */
.footer {
  background: #053a6c
}

.footer-top {
  padding: 80px 0 60px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.footer-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px
}

.footer-brand-text {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px
}

.social-links {
  display: flex;
  gap: 10px
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  transition: var(--t)
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px)
}

.footer-heading {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 22px
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .45);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 7px
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--t);
  font-size: 11px;
  color: var(--orange)
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .9);
  padding-left: 4px
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0)
}

.footer-newsletter-desc {
  font-size: .825rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
  line-height: 1.6
}

.footer-newsletter {
  display: flex;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  overflow: hidden
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--fb);
  font-size: 13px;
  color: #fff
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .3)
}

.footer-newsletter button {
  width: 46px;
  background: var(--blue);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.footer-newsletter button:hover {
  background: var(--orange)
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .07)
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom span,
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  transition: var(--t)
}

.footer-bottom-links {
  display: flex;
  gap: 20px
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .7)
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 67, 165, .4);
  opacity: 0;
  visibility: hidden;
  z-index: 900;
  transition: var(--t)
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(228, 86, 33, .4)
}

/* ================================================================
   FORM CONTROLS
   ================================================================ */
.form-group-custom {
  margin-bottom: 4px;
}

.form-group-custom label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 36, 99, 0.1);
}

.form-control-custom::placeholder {
  color: var(--text-light);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.mv-card.mv-blue::after {
  background: linear-gradient(to right, var(--blue), var(--blue-mid));
}

.mv-card.mv-orange::after {
  background: linear-gradient(to right, var(--orange), #f09040);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mv-card:hover::after {
  transform: scaleX(1);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.mv-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.mv-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.mv-card:hover .mv-icon.blue {
  background: var(--blue);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.mv-card:hover .mv-icon.orange {
  background: var(--orange);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.mv-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 30, 80, 0.75) 100%);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-img-overlay {
  opacity: 1;
}

.team-socials {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-socials {
  transform: translateY(0);
  opacity: 1;
}

.team-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: var(--transition);
}

.team-socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.team-body {
  padding: 22px 20px;
  text-align: center;
}

.team-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.team-body p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), var(--border));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.stats-bar {
  background: #053a6c;
  padding: 60px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stats-bar-num sup {
  font-size: 1.6rem;
  color: var(--orange);
}

.stats-bar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  display: block;
}

.value-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 36, 99, 0.2);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
}

.value-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.value-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-5deg);
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.award-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.award-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.award-icon {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.award-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.award-card span {
  font-size: 0.775rem;
  color: var(--text-light);
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.svc-card-header {
  padding: 32px 32px 24px;
  position: relative;
}

.svc-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 22px;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.svc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin-bottom: 18px;
}

.svc-card-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.svc-card-header p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.svc-divider {
  height: 1px;
  background: var(--border);
  margin: 0 32px;
}

.svc-card-body {
  padding: 24px 32px 32px;
  flex: 1;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.svc-list li i {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.svc-link:hover {
  gap: 10px;
  color: var(--orange);
}

.tech-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tech-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(13, 36, 99, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  transition: var(--transition);
}

.tech-badge:hover {
  background: var(--blue);
  color: white;
}

.grad-blue {
  background: linear-gradient(135deg, var(--blue), #2166b0);
}

.grad-orange {
  background: linear-gradient(135deg, var(--orange), #f09040);
}

.grad-purple {
  background: linear-gradient(135deg, #6c47d5, #9b72ef);
}

.grad-teal {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.grad-dark {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.grad-green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.price-card.featured {
  background: linear-gradient(150deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.price-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.price-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-card.featured h4,
.price-card.featured p {
  color: white;
}

.price-card.featured>p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin: 20px 0 4px;
}

.price-card.featured .price-amount {
  color: white;
}

.price-period {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.55);
}

.price-features {
  margin: 0 0 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.price-features li i {
  color: var(--blue);
  flex-shrink: 0;
}

.price-card.featured .price-features li i {
  color: var(--orange);
}

.price-features li:last-child {
  border-bottom: none;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(13, 36, 99, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
  gap: 16px;
  user-select: none;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--blue);
  font-size: 14px;
}

.faq-item.open .faq-icon {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
}

.contact-info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ci-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.ci-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.ci-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.ci-icon.dark {
  background: var(--off-white);
  color: var(--text-dark);
}

.contact-info-box h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-box p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-info-box a {
  color: var(--blue);
  font-weight: 600;
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-info-box a:hover {
  color: var(--orange);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), #d4e3f5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--blue);
}

.map-placeholder span {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: white;
}

.sc-linkedin {
  background: #0077b5;
}

.sc-twitter {
  background: #1da1f2;
}

.sc-instagram {
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.sc-facebook {
  background: #1877f2;
}

.social-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.social-card span {
  font-size: 12px;
  color: var(--text-light);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-form-card .form-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 36, 99, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 119, 34, 0.4);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media(max-width:991px) {
  .section-padding {
    padding: 70px 0
  }

  .page-hero {
    padding: 130px 0 60px
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0
  }

  .stats-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px
  }

  .stats-bar-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1)
  }

  .stats-bar-item:last-child {
    border-bottom: none
  }
}

@media(max-width:767px) {
  .page-hero h1 {
    font-size: 2.4rem
  }

  .page-hero-actions {
    flex-direction: column;
    gap: 12px
  }

  .btn-primary-custom,
  .btn-orange-custom,
  .btn-outline-custom,
  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    justify-content: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .stats-bar-grid {
    grid-template-columns: 1fr 1fr
  }

  .price-card.featured {
    transform: scale(1)
  }

  .contact-form-card {
    padding: 28px 20px
  }

  .back-to-top {bottom: 20px; right: 20px; }
}
@media(max-width:480px) {
  .page-hero h1{font-size:2rem}
  .stats-bar-num{font-size:2.2rem}
}
.focus-section {
  background: #fff;
}

.focus-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.focus-list li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.focus-list i {
  color: var(--blue);
  font-size: 18px;
}

.focus-images {
  position: relative;
  height: 350px;
}

.focus-images img {
  position: absolute;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  object-fit: cover;
}

.focus-images .img1 {
  width: 70%;
  height: 100%;
  left: 0;
  top: 0;
}

.focus-images .img2 {
  width: 55%;
  height: 70%;
  right: 0;
  bottom: 0;
  border: 4px solid #fff;
}
.what-we-do {
  background: var(--off);
}

.what-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  border: 1px solid var(--border);
  height: 100%;
}

.what-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.what-img {
  height: 200px;
  overflow: hidden;
}

.what-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.what-card:hover .what-img img {
  transform: scale(1.08);
}

.what-content {
  padding: 24px;
}

.what-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.what-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.what-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
}
/* ============================================================
   🔥 GLOBAL RESPONSIVE FIXES (SAFE - NO DESIGN BREAK)
   ============================================================ */

/* Prevent horizontal scroll everywhere */
html, body {
  overflow-x: hidden;
}

/* Better container spacing */
.container {
  padding-left: 16px;
  padding-right: 16px;
}

/* Images always responsive */
img {
  max-width: 100%;
  height: auto;
}


/* ============================================================
   📱 LARGE TABLETS (1024px and below)
   ============================================================ */
@media (max-width: 1024px) {

  .page-hero {
    padding: 120px 0 70px;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .page-hero-desc {
    font-size: 0.95rem;
  }

  .focus-images {
    height: 300px;
  }

  .focus-images .img1 {
    width: 65%;
  }

  .focus-images .img2 {
    width: 50%;
  }

  .svc-card-header,
  .svc-card-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/* ============================================================
   📱 TABLETS (991px and below)
   ============================================================ */
@media (max-width: 991px) {

  /* NAVBAR MOBILE FIX */
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav {
    gap: 10px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  /* HERO */
  .page-hero {
    text-align: center;
  }

  .page-hero-desc {
    margin: 0 auto 30px;
  }

  .page-hero-actions {
    justify-content: center;
  }

  /* STATS */
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TIMELINE */
  .timeline {
    padding-left: 24px;
  }

  .timeline-dot {
    left: -24px;
  }

  /* FOCUS SECTION STACK */
  .focus-images {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .focus-images img {
    position: relative;
    width: 100% !important;
    height: 200px;
  }

  /* WHAT WE DO */
  .what-img {
    height: 180px;
  }
}


/* ============================================================
   📱 MOBILE (767px and below)
   ============================================================ */
@media (max-width: 767px) {

  /* TYPOGRAPHY */
  .section-heading {
    font-size: 1.6rem;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .page-hero-desc {
    font-size: 0.9rem;
  }

  /* BUTTONS FULL WIDTH */
  .btn-primary-custom,
  .btn-orange-custom,
  .btn-outline-custom,
  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }

  /* CTA */
  .cta-btns {
    flex-direction: column;
    gap: 12px;
  }

  /* STATS */
  .stats-bar-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .stats-bar-item:last-child {
    border-bottom: none;
  }

  /* TEAM */
  .team-img-wrap {
    height: 220px;
  }

  /* SERVICES */
  .svc-card-header {
    padding: 24px 20px;
  }

  .svc-card-body {
    padding: 20px;
  }

  /* PRICING */
  .price-card {
    padding: 28px 20px;
  }

  /* CONTACT */
  .contact-form-card {
    padding: 24px 16px;
  }

  /* FOOTER */
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* BACK TO TOP */
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}


/* ============================================================
   📱 SMALL MOBILE (480px and below)
   ============================================================ */
@media (max-width: 480px) {

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .stats-bar-num {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .team-img-wrap {
    height: 200px;
  }

  .what-img {
    height: 160px;
  }
}


/* ============================================================
   🖥️ LARGE SCREENS (1400px+)
   ============================================================ */
@media (min-width: 1400px) {

  .container {
    max-width: 1320px;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .focus-images {
    height: 400px;
  }
}

/* ================================================================
   INDEX PAGE — HOMEPAGE STYLES
   (extracted from index.html inline <style>)
   ================================================================ */

/* ── Scrollbar & Selection ── */
::selection {
  background: var(--blue);
  color: #fff;
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1800&q=85') center / cover no-repeat;
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 30, 80, 0.92) 0%, rgba(0, 67, 165, 0.09) 100%);
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(228, 86, 33, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(228, 86, 33, 0); }
}

.hero-heading {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-heading .hl {
  background: linear-gradient(135deg, #ffd166, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero Buttons */
.btn-hero-primary,
.btn-hero-outline {
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-primary {
  background: #053a6c;
  color: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 8px 28px #053a6c;
}

.btn-hero-primary:hover {
  background: #053a6c;
  border-color: #053a6c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px #053a6c;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-hero-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.hstat {
  padding: 18px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hstat-num span {
  color: #ffd166;
}

.hstat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* Hero Image Stack */
.hero-img-stack {
  position: relative;
  height: 520px;
}

.his-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.his-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.his-small {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 220px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.18);
  animation: floatY 5s ease-in-out infinite;
}

.his-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating Stat Badges */
.hfloat {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border: 1px solid rgba(0, 67, 165, 0.08);
}

.hfloat-1 {
  top: 50px;
  left: -30px;
  animation: floatY 4s ease-in-out infinite;
}

.hfloat-2 {
  bottom: 100px;
  right: -20px;
  animation: floatY 4s ease-in-out infinite 0.8s;
}

.hfloat-3 {
  top: 200px;
  right: 15px;
  animation: floatY 4s ease-in-out infinite 1.6s;
}

.hfloat-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hfloat-ico.bl { background: var(--blue-light); color: var(--blue); }
.hfloat-ico.or { background: var(--orange-light); color: var(--orange); }
.hfloat-ico.gr { background: #e8fdf3; color: #059669; }

.hfloat-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.hfloat-val {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 3px;
  line-height: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollLn 2s ease-in-out infinite;
}

@keyframes scrollLn {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Trusted By / Logo Ticker ── */
.trusted-section {
  padding: 40px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.logos-track {
  overflow: hidden;
  position: relative;
}

.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.logos-track::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.logos-track::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.logos-inner {
  display: flex;
  gap: 0;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}

.logos-inner:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: var(--transition);
  cursor: default;
  border-right: 1px solid var(--border);
}

.client-logo:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

.client-logo span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* ── About Section (Homepage) ── */
.about-section {
  background: #fff;
}

.about-visual {
  position: relative;
  padding: 20px;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.about-img-block {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-block:hover img {
  transform: scale(1.05);
}

.about-img-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 80, 0.35), transparent 60%);
  pointer-events: none;
}

.block-2 {
  grid-row: 1 / 3;
}

.block-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.block-label i {
  color: var(--blue);
  font-size: 13px;
}

.about-badge-float {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  padding: 13px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  border: 1px solid var(--border);
  z-index: 5;
}

.about-badge-float i {
  color: var(--orange);
  font-size: 20px;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.counter-item {
  display: flex;
  flex-direction: column;
}

.counter-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.counter-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.counter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ── Services Section (Homepage) ── */
.services-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.services-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 67, 165, 0.05), transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img-strip {
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.service-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-strip img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 30, 80, 0.6), transparent 55%);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.blue-gradient   { background: linear-gradient(135deg, var(--blue), #1a5cd4); }
.orange-gradient { background: linear-gradient(135deg, var(--orange), #f07840); }
.purple-gradient { background: linear-gradient(135deg, #6c47d5, #9b72ef); }
.teal-gradient   { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.dark-gradient   { background: linear-gradient(135deg, #0f172a, #1e293b); }

.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: var(--blue);
  background: var(--blue-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.service-cta-card {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.service-cta-card::before {
  background: linear-gradient(to right, var(--orange), #f07840);
}

.service-cta-content {
  color: #fff;
}

.service-cta-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-cta-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Process Section ── */
.process-section {
  background: #fff;
}

.process-timeline {
  overflow-x: auto;
  padding-bottom: 20px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 900px;
  position: relative;
  padding-top: 20px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step:not(.last) .step-connector {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 2px 10px;
  margin-bottom: 4px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-icon-wrap.active .step-icon {
  background: linear-gradient(135deg, var(--orange), #f07840);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(228, 86, 33, 0.4);
}

.process-step:hover .step-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.step-content {
  margin-top: 20px;
  padding: 0 16px;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.825rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Portfolio Showcase ── */
.portfolio-section {
  background: var(--off-white);
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.pf-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pf-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pf-item:hover img {
  transform: scale(1.07);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 80, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.pf-item:hover .pf-overlay {
  opacity: 1;
}

.pf-info h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.pf-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 50px;
}

.pf-1 { grid-column: 1 / 7;  height: 300px; }
.pf-2 { grid-column: 7 / 13; height: 300px; }
.pf-3 { grid-column: 1 / 5;  height: 260px; }
.pf-4 { grid-column: 5 / 9;  height: 260px; }
.pf-5 { grid-column: 9 / 13; height: 260px; }

/* ── Testimonials ── */
.testi-section {
  background: #fff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: var(--blue-light);
  line-height: 1;
  opacity: 0.7;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: #fff;
}

.testi-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testi-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ── Why Choose Us ── */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(0, 67, 165, 0.03), rgba(0, 67, 165, 0.06));
  transition: height 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::after {
  height: 100%;
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 22px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-icon-wrap.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.why-card:hover .why-icon-wrap {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.why-card:hover .why-icon-wrap.orange {
  background: var(--orange);
  color: #fff;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
}

.why-card-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent, rgba(0, 67, 165, 0.06));
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
}

.why-card-accent.orange {
  background: linear-gradient(135deg, transparent, rgba(228, 86, 33, 0.06));
}

/* ── Team Section (Homepage) ── */
.team-section {
  background: #fff;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 67, 165, 0.22);
  border-color: transparent;
}

.team-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.07);
}

.team-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 80, 0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-ov {
  opacity: 1;
}

.team-soc {
  display: flex;
  gap: 8px;
}

.team-soc a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-soc a:hover {
  background: #fff;
  color: var(--blue);
}

.team-body {
  padding: 20px;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}

/* ── Homepage Contact Section ── */
.contact-section {
  background: #fff;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 67, 165, 0.2);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--blue);
  color: #fff;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── Homepage Responsive ── */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-1, .pf-2 {
    grid-column: span 6;
  }

  .pf-3, .pf-4, .pf-5 {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 120px 0 70px;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  .hero-img-stack {
    height: auto;
  }

  .his-main {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }

  .about-img-grid {
    grid-template-rows: 180px 180px;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .pf-1, .pf-2 {
    grid-column: span 12;
    height: 220px;
  }

  .pf-3, .pf-4, .pf-5 {
    grid-column: span 6;
    height: 200px;
  }

  .his-main {
    width: 100%;
    right: 0;
    position: relative;
    height: 320px;
  }

  .his-small {
    display: none;
  }

  .hfloat {
    display: none;
  }

  .hero-img-stack {
    height: auto;
  }

  .process-steps {
    min-width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .process-step:not(.last) .step-connector {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    width: 100%;
  }

  .hstat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
  }

  .hstat:last-child {
    border-bottom: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }

  .portfolio-grid {
    display: flex;
    flex-direction: column;
  }

  .pf-item {
    height: 200px !important;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .pf-3, .pf-4, .pf-5 {
    grid-column: span 12;
    height: 180px;
  }

  .team-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.7rem;
  }

  .hstat-num {
    font-size: 1.4rem;
  }
}

@media (min-width: 1400px) {
  .hero-heading {
    font-size: 4.5rem;
  }

  .hero-img-stack {
    height: 600px;
  }

  .his-main {
    width: 480px;
    height: 420px;
  }
}
