* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-deeper: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-bright: #60a5fa;
  --white: #ffffff;
  --off-white: #e8e8f0;
  --gray: #0f0f1a;
  --text: #e8e8f0;
  --muted: #6b6b88;
  --black: #050508;
  --dark: #0a0a0f;
  --mid: #0f0f1a;
  --card: #12121e;
  --border: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) rgba(10, 10, 15, 0.6);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  border-radius: 8px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue-light) 50%, var(--blue) 100%);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

/* INTRO */
#intro {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease;
  overflow: hidden;
}

#intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

#intro.hide {
  opacity: 0;
  pointer-events: none
}

.intro-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: introFade .8s ease both
}

.intro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
}

.intro-icon img {
  height: 110px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.intro-wordmark {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Myriad Pro', 'Myriad', sans-serif;
  font-style: italic;
  -webkit-text-stroke: 3px #fff;
}

@media(max-width: 768px) {
  .intro-icon img {
    height: 100px;
  }

  .intro-wordmark {
    font-size: 100px;
    letter-spacing: 1px;
    -webkit-text-stroke: 2px #fff;
  }

  .intro-tagline {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .enter-btn {
    padding: 12px 32px;
    font-size: 14px;
    margin-top: 24px;
  }
}

@media(max-width: 480px) {
  .intro-logo {
    gap: 8px;
    justify-content: center;
  }

  .intro-icon img {
    height: 80px;
  }

  .intro-wordmark {
    font-size: 70px;
    letter-spacing: 0.4px;
    -webkit-text-stroke: 1px #fff;
  }

  .intro-tagline {
    font-size: 11px;
    margin-top: 8px;
  }

  .enter-btn {
    padding: 10px 24px;
    font-size: 13px;
    margin-top: 16px;
  }
}

.intro-tagline {
  color: #60a5fa;
  font-size: 15px;
  margin-top: 16px;
  opacity: 0;
  animation: introFade .6s .6s ease both;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center
}

.intro-logo.fly-up {
  animation: flyUp .7s cubic-bezier(.4, 0, .2, 1) both
}

.enter-btn {
  margin-top: 52px;
  background: var(--blue);
  color: #fff;
  padding: 16px 52px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transition: all .35s;
  font-family: inherit;
  letter-spacing: .5px;
  border: none;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4)
}

.enter-btn.show {
  opacity: 1
}

.enter-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.5)
}

.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 40%, transparent 100%);
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: drift linear infinite
}

/* HEADER */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding .4s;
}

nav.scrolled {
  padding: .9rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0
}

.logo-box {
  width: 152px;
  height: 48px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}


.nav-links {
  display: flex;
  gap: clamp(.5rem, 1.2vw, 1.35rem);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .3s;
  position: relative;
  padding: .6rem .95rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Navigation Hover Dropdown Menu styling */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 230px;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem 0;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.2) inset;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  margin: 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
  pointer-events: auto;
}

.dropdown-menu li {
  width: 100%;
  padding: 0 0.4rem;
  margin: 0;
  border-bottom: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-align: left !important;
  border-radius: 6px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transition: none !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  position: relative !important;
  margin: 0 !important;
}

.dropdown-menu a:hover {
  color: var(--white) !important;
  background: rgba(76, 124, 255, 0.15) !important;
}





.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: .6rem 1.4rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left .5s;
}

.nav-cta:hover::before {
  left: 100%
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 290px;
  max-width: 85%;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4.5rem 2rem 2rem;
  z-index: 1001;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: hidden;
  display: block;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

.mobile-menu ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 1.05rem 0;
  color: #e8e8f0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.mobile-menu .hero-stats {
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding-top: 1rem;
}

.mobile-menu .stat {
  text-align: center;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu .stat:last-child {
  border-bottom: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 3rem 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero>div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93c5fd;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeUp .8s ease both
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
  letter-spacing: -1.5px
}

.hero h1 .accent {
  color: var(--blue);
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 0 48px 0;
  line-height: 1.7;
  animation: fadeUp .8s .2s ease both
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both
}

.btn-primary {
  background: #fff;
  color: var(--blue);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2)
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px)
}

/* Premium Section Header Row (centered text, absolute right button) */
.section-header-row {
  position: relative;
  width: 100%;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header-left {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.section-header-left .section-sub {
  margin-bottom: 0 !important;
  /* Reset default margin bottom */
}

.section-header-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

/* Beautiful View All button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.view-all-btn i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.view-all-btn:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-2px);
}

.view-all-btn:hover i {
  transform: translateX(4px);
}

/* Responsive styles for Section Header Row */
@media (max-width: 991px) {
  .section-header-row {
    margin-bottom: 32px;
  }

  .section-header-right {
    position: static;
    margin-top: 1.25rem;
    justify-content: center;
    width: 100%;
  }

  .view-all-btn {
    width: min(100%, 280px);
    justify-content: center;
  }
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  animation: fadeUp .8s .4s ease both;
  flex-wrap: wrap
}

.stat {
  text-align: center
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff
}

.stat-label {
  font-size: 13px;
  color: #93c5fd;
  margin-top: 4px
}

.floating-cards {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  animation: fadeUp .8s .5s ease both;
  flex-wrap: wrap;
  padding: 0 5%
}

/* SECTIONS */
section {
  padding: 96px 6%
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75
}

.center {
  text-align: center
}

.center .section-sub {
  margin: 0 auto 36px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 56px
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  opacity: 0;
  transition: opacity .35s
}

.svc-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18)
}

.svc-card:hover::before {
  opacity: 1
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(255, 255, 255, 0.15)
}

.svc-card:hover .svc-icon-wrap svg {
  stroke: #fff
}

.svc-card:hover h3 {
  color: #fff
}

.svc-card:hover p {
  color: #93c5fd
}

.svc-card:hover .svc-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff
}

.svc-card>* {
  position: relative;
  z-index: 1
}

.svc-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .35s
}

.svc-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .35s
}

.svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  transition: color .35s
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color .35s
}

.svc-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 16px;
  transition: all .35s
}

.svc-card.featured {
  border-color: var(--blue);
}

.svc-card.featured .svc-icon-wrap {
  background: rgba(255, 255, 255, 0.12)
}

.svc-card.featured .svc-icon-wrap svg {
  stroke: #fff
}

.svc-card.featured h3 {
  color: #fff
}

.svc-card.featured p {
  color: #93c5fd
}

.svc-card.featured .svc-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff
}

.svc-card.featured:hover {
  border-color: var(--blue);
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 56px
}

.why-visual {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  border-radius: 24px;
  padding: 44px
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.check-circle {
  width: 26px;
  height: 26px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.check-circle svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.check-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px
}

.check-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

.metric-bar {
  margin-bottom: 22px
}

.metric-bar:last-child {
  margin-bottom: 0
}

.metric-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px
}

.metric-top span {
  color: #93c5fd
}

.metric-top strong {
  color: #fff
}

.bar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  height: 8px
}

.bar-fill {
  height: 8px;
  border-radius: 50px;
  width: 0;
  transition: width 1.4s ease
}

.testimonials {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: all .3s
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  border-color: var(--blue)
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.reviewer-name {
  font-weight: 700;
  font-size: 15px
}

.reviewer-role {
  font-size: 13px;
  color: var(--text-muted)
}

/* ABOUT */
.about-section {
  padding: 96px 6%;
  background: var(--gray)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px
}

.about-visual {
  background: linear-gradient(135deg, #0a0f1e, #1d4ed8);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  text-align: center
}

.about-big-num {
  font-size: 72px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1
}

.about-big-label {
  font-size: 15px;
  color: #93c5fd;
  margin-top: 8px
}

.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.about-mini-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 10px
}

.about-mini-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff
}

.about-mini-label {
  font-size: 11px;
  color: #93c5fd;
  margin-top: 4px;
  line-height: 1.4
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.btn-blue {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  margin-top: 0
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

.btn-blue-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.28);
  color: var(--white);
}

.btn-blue-secondary:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.48);
}

/* Mobile */
@media(max-width:900px) {
  .about-section {
    padding: 64px 5%
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px
  }

  .about-visual {
    padding: 32px 24px;
    border-radius: 18px
  }

  .about-big-num {
    font-size: 54px
  }

  .about-mini-grid {
    gap: 12px;
    margin-top: 24px
  }

  .about-mini-num {
    font-size: 22px
  }
}

@media(max-width:480px) {
  .about-big-num {
    font-size: 44px
  }

  .about-mini-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-mini-card {
    padding: 12px 8px
  }

  .about-mini-num {
    font-size: 20px
  }
}


/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px
}

.team-card {
  background: var(--mid);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: all .3s;
  color: var(--off-white);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
  border-color: var(--blue);
}

.team-card .team-name {
  color: var(--white);
}

.team-card .team-role {
  color: var(--blue-light);
}

.team-card .team-bio {
  color: var(--muted);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.team-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px
}

.team-bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 56px
}

.process-step {
  text-align: center;
  padding: 36px 22px;
  background: rgba(37, 99, 235, 0.18);
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  border-radius: 18px;
  transition: all .3s;
  color: var(--white);
}

.process-step:hover {
  border-color: rgba(37, 99, 235, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.18);
}

.step-num {
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  margin: 0 auto 18px
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 56px
}

.project-card {
  display: block;
  background: var(--mid);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: all .3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.12);
  border-color: var(--blue)
}

.project-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.project-body {
  padding: 24px
}

.project-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px
}

.project-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.proj-tag {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* BLOG */
.blog-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(37, 99, 235, 0.12), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.08), transparent 28%),
    var(--black);
  position: relative;
  overflow: hidden;
}

.blog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 48px;
}

.blog-head .section-sub {
  max-width: 660px;
}

.blog-grid {
  display: block;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Match project-style grid width while using 4 columns on wide screens */
.blog-grid .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  margin: 0;
  max-width: none;
}

@media (max-width: 1280px) {
  .blog-grid .projects-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

@media (max-width: 1100px) {
  .blog-grid .projects-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid .projects-grid {
    grid-template-columns: 1fr;
  }
}

.blog-featured,
.blog-card,
.blog-lead-box {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.96), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(96, 165, 250, 0.13);
  border-radius: 18px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.blog-featured {
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.blog-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .22), transparent 45%);
  pointer-events: none;
}

.blog-featured>* {
  position: relative;
  z-index: 1;
}

.blog-featured:hover,
.blog-card:hover,
.blog-lead-box:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.blog-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue-bright);
  opacity: .75;
}

.blog-featured h3 {
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 16px;
  max-width: 620px;
}

.blog-featured p,
.blog-card p,
.blog-lead-box p {
  color: var(--muted);
  line-height: 1.75;
}

.blog-featured p {
  max-width: 620px;
  font-size: 15px;
  margin-bottom: 26px;
}

.blog-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.blog-proof-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px;
}

.blog-proof-item strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}

.blog-proof-item span {
  color: #93c5fd;
  font-size: 12px;
  line-height: 1.45;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--blue);
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background .25s ease, transform .25s ease;
}

.blog-link:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.blog-side {
  display: grid;
  gap: 18px;
}

.blog-card,
.blog-lead-box {
  padding: 24px;
}

.blog-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.22);
  margin-bottom: 16px;
}

.blog-card h3,
.blog-lead-box h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p,
.blog-lead-box p {
  font-size: 13px;
  margin-bottom: 16px;
}

.blog-card a {
  color: #60a5fa;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.blog-lead-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 58, 138, 0.96));
  border-color: rgba(255, 255, 255, 0.12);
}

.blog-lead-box p {
  color: #dbeafe;
}

.blog-lead-box .blog-link {
  background: #fff;
  color: var(--blue);
}

/* CONTACT */
.booking-wrap {
  background: linear-gradient(140deg, #0a0f1e 0%, #0f2057 50%, #1d4ed8 100%);
  border-radius: 28px;
  padding: 72px 56px
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 44px
}

.booking-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 36px
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .6px
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border .2s;
  font-family: inherit;
  margin-bottom: 18px
}

.form-input:focus {
  border-color: rgba(255, 255, 255, .55)
}

.form-input::placeholder {
  color: rgba(255, 255, 255, .3)
}

/* SERVICE DROPDOWN */
.svc-dropdown-wrap {
  position: relative;
  margin-bottom: 18px
}

.svc-dropdown-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  outline: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border .2s
}

.svc-dropdown-btn.has-val {
  color: #fff
}

.svc-dropdown-btn:hover,
.svc-dropdown-btn.open {
  border-color: rgba(255, 255, 255, .55)
}

.svc-dropdown-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s;
  flex-shrink: 0
}

.svc-dropdown-btn.open svg {
  transform: rotate(180deg)
}

.svc-dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1e3a8a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4)
}

.svc-dropdown-list.open {
  display: block
}

.svc-dropdown-item {
  padding: 12px 15px;
  color: #e2e8f0;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: 10px
}

.svc-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12)
}

.svc-dropdown-item.selected {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  font-weight: 600
}

.svc-dropdown-item svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.submit-btn {
  width: 100%;
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 14px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2)
}

.booking-info-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff
}

.booking-info-sub {
  color: #93c5fd;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.c-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: background .2s
}

.c-card:hover {
  background: rgba(255, 255, 255, 0.1)
}

.c-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.c-icon svg {
  width: 20px;
  height: 20px;
  stroke: #60a5fa;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.c-label {
  font-size: 12px;
  color: #93c5fd;
  margin-bottom: 3px
}

.c-val {
  font-size: 14px;
  font-weight: 600;
  color: #fff
}

.success-msg {
  display: none;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 9px;
  padding: 14px;
  text-align: center;
  color: #4ade80;
  font-weight: 600;
  margin-top: 10px;
  font-size: 14px
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 6% 26px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  margin-bottom: 14px;
}

.footer-logo-box {
  width: 152px;
  height: 48px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  max-width: 260px
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s
}

.footer-links a:hover {
  color: #60a5fa
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes introFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes flyUp {
  from {
    opacity: 1;
    transform: translateY(0)
  }

  to {
    opacity: 0;
    transform: translateY(-130px)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes drift {
  0% {
    transform: translateY(100vh);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .8
  }

  100% {
    transform: translateY(-10vh) translateX(30px);
    opacity: 0
  }
}


@media(max-width:800px) {

  nav {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }

  nav.scrolled {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }

  .why-grid,
  .booking-grid,
  .blog-head,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .booking-section {
    margin: 0;
    border-radius: 0;
    padding: 60px 5%
  }

  .services-select {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .hero-stats .stat {
    text-align: center;
  }

  nav .nav-links,
  nav .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(5, 5, 8, 0.95);
  }

  .blog-head {
    align-items: start;
    margin-bottom: 34px;
  }

  .blog-proof {
    grid-template-columns: 1fr;
  }
}

/* React Vista style overrides */
nav {
  padding: 1.2rem 3rem;
}

nav.scrolled {
  padding: .9rem 3rem;
}

.logo-box {
  width: 152px;
  height: 48px;
  background: transparent;
}

.logo-name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  font-family: 'Myriad Pro', 'Myriad', sans-serif;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-transform: none;
}

.hero {
  min-height: 65vh;
  padding: 120px 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero>div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-bright);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: .95rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-outline {
  color: var(--off-white);
  padding: .95rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all .25s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 30%, var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

section {
  padding: 7rem 3rem;
}

.center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

#services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  margin-top: 56px;
}

.svc-card {
  position: relative;
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.5rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.svc-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(37, 99, 235, 0.15);
}

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: grid;
  place-items: center;
  transition: background .3s, border-color .3s;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.35);
}

.svc-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.svc-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: .95rem;
  flex: 1;
}

.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: auto;
  width: fit-content;
}

.svc-card.featured {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(15, 23, 42, 0.98));
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.svc-card.featured .svc-icon-wrap {
  background: rgba(37, 99, 235, 0.18);
}

#whyus {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: end;
  margin-top: 56px;
}

.why-card {
  background: var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  color: var(--off-white);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: .75rem;
  color: var(--white);
}

.why-visual {
  margin-top: 2.5rem;
}

.why-card p {
  color: var(--muted);
  line-height: 1.75;
}

.testimonials {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: all .3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  border-color: var(--blue);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.reviewer-role {
  font-size: 13px;
  color: var(--muted);
}

.about-section {
  padding: 96px 6%;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.btn-blue {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  margin-top: 12px;
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.about-visual {
  background: linear-gradient(135deg, #0a0f1e, #1d4ed8);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  text-align: center;
}

.about-big-num {
  font-size: 72px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.about-big-label {
  font-size: 15px;
  color: #93c5fd;
  margin-top: 8px;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-mini-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 10px;
}

.about-mini-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.about-mini-label {
  font-size: 11px;
  color: #93c5fd;
  margin-top: 4px;
  line-height: 1.4;
}

@media(max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  nav .nav-links,
  nav .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  nav {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }

  nav.scrolled {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }
}

@media(max-width: 800px) {
  nav {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }

  nav.scrolled {
    padding: 1rem 1.5rem !important;
    transition: none !important;
  }

  .hero {
    padding: 100px 1.5rem 2rem;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .services-grid,
  .about-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  nav .nav-links,
  nav .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    background: rgba(5, 5, 8, 0.95);
  }
}

/* Mobile overrides: center hero stats and visible separators */
@media (max-width: 800px) {

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 360px);
    margin: 2rem auto 0;
    align-items: stretch;
    justify-content: center;
  }

  .mobile-menu .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }

  .hero-stats .stat {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats .stat:nth-child(n + 3) {
    border-bottom: none;
  }

  .mobile-menu .hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats .stat .stat-num {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .hero-stats .stat .stat-label {
    font-size: clamp(0.58rem, 2.5vw, 0.72rem);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .mobile-menu .hero-stats .stat .stat-num {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(27px, 8.7vw, 42px);
    line-height: 1.1;
    white-space: normal;
    word-wrap: break-word;
  }

  .hero h1 .accent {
    display: inline-block;
    white-space: nowrap;
  }

  /* Mobile contact area inside the mobile menu */
  .mobile-menu .mobile-contact {
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .mobile-menu .mobile-contact .btn-primary {
    width: min(100%, 240px);
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mobile-menu .mobile-contact .mobile-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
  }

  .mobile-menu .mobile-contact .mobile-contact-info a {
    color: var(--blue-bright);
    text-decoration: none;
  }
}

/* ═══ CONTACT / CTA STYLES ═══ */
.cta-box {
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 40%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.1), transparent 40%),
    var(--mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  text-align: left;
}

.cta-content {
  position: relative;
  z-index: 2
}

.cta-form-container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

/* CTA button / action styles */
.cta-actions .btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
}

.cta-actions .btn-primary svg {
  width: 14px;
  height: 14px
}

.cta-actions .btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.cta-actions .btn-ghost i {
  color: #25D366;
  font-size: 1rem
}

.cta-info {
  color: var(--muted);
  font-size: .95rem
}

.submit-btn {
  background: var(--blue);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  transition: all .3s;
  width: 100%;
  max-width: 100%;
}

.form-input::placeholder {
  color: var(--muted)
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2)
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05)
}

.form-input:valid:not(:placeholder-shown) {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.05)
}

textarea.form-input {
  resize: vertical;
  min-height: 120px
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  display: none
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444
}

#submitBtn {
  position: relative;
  overflow: hidden
}

.btn-loading {
  animation: spin 1s linear infinite
}

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

@media(max-width:991px) {
  .cta-box {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
    text-align: center
  }

  .cta-actions {
    justify-content: center
  }
}

@media(max-width:576px) {
  .cta-box {
    padding: 3rem 1.25rem;
    margin: 2rem auto;
    border-radius: 20px;
    gap: 2.5rem
  }

  .cta-form-container {
    padding: 1.5rem;
    border-radius: 16px
  }

  .cta-h2 {
    font-size: 1.85rem
  }

  .cta-sub {
    font-size: 1rem
  }
}

/* Contact polish */
#contact {
  background: var(--black);
  padding: 5rem 1.5rem 6rem;
}

.cta-box {
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(15, 15, 26, 0.98) 44%, rgba(10, 10, 15, 1)),
    var(--mid);
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 28px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.08), transparent);
  pointer-events: none;
}

.cta-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-bright);
  padding: .45rem .9rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.cta-h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.cta-h2 span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cta-sub {
  width: 100%;
  max-width: 510px;
  color: #aeb8d4;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.cta-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
  min-width: 0;
}

.cta-form-container {
  min-width: 0;
  background: rgba(8, 12, 24, 0.74);
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-form-container .booking-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.cta-actions .btn-primary {
  padding: .95rem 1.55rem;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
  transition: all .25s;
  max-width: 100%;
}

.cta-actions .btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.36);
  transform: translateY(-2px);
}

.cta-actions .btn-primary svg {
  width: 14px;
  height: 14px;
}

.cta-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  padding: .95rem 1.55rem;
  border-color: rgba(255, 255, 255, 0.11);
  font-weight: 700;
  transition: all .25s;
  max-width: 100%;
}

.cta-actions .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(96, 165, 250, 0.09);
  transform: translateY(-2px);
}

.wa-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.13);
  flex: 0 0 auto;
}

.cta-info {
  color: #8f9bb8;
  font-size: .92rem;
  line-height: 1.7;
  margin-top: 2.8rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-form-container .form-label {
  display: block;
  color: #9fc5ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.cta-form-container .form-input,
.cta-form-container .svc-dropdown-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: .95rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.45;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  max-width: 100%;
  margin-bottom: 1.05rem;
}

.cta-form-container .form-input::placeholder {
  color: #69748e;
}

.cta-form-container .form-input:focus,
.cta-form-container .svc-dropdown-btn:hover,
.cta-form-container .svc-dropdown-btn.open {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(96, 165, 250, 0.68);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.cta-form-container .form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(248, 113, 113, 0.72);
  background: rgba(239, 68, 68, 0.06);
}

.cta-form-container .form-input:valid:not(:placeholder-shown) {
  border-color: rgba(96, 165, 250, 0.42);
}

.cta-form-container textarea.form-input {
  min-height: 118px;
  resize: vertical;
}

.cta-form-container .svc-dropdown-wrap {
  margin-bottom: 1.05rem;
}

.cta-form-container .svc-dropdown-btn {
  margin-bottom: 0;
  cursor: pointer;
  color: #7f89a2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.cta-form-container .svc-dropdown-btn.has-val {
  color: var(--white);
}

.cta-form-container .svc-dropdown-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s;
  flex-shrink: 0;
}

.cta-form-container .svc-dropdown-btn.open svg {
  transform: rotate(180deg);
}

.cta-form-container .svc-dropdown-list {
  top: calc(100% + 8px);
  background: #0b1220;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.cta-form-container .svc-dropdown-item {
  padding: .82rem 1rem;
  color: #dbeafe;
  font-size: .92rem;
  font-weight: 500;
}

.cta-form-container .svc-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.17);
  color: #fff;
}

.cta-form-container .svc-dropdown-item.selected {
  background: rgba(37, 99, 235, 0.26);
  color: var(--blue-bright);
  font-weight: 700;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.38);
}

.submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.22), 0 18px 40px rgba(37, 99, 235, 0.34);
}

@media(max-width:1024px) {

  /* Hide header CTA on tablet and smaller screens */
  nav .nav-cta {
    display: none;
  }
}

@media(max-width:991px) {
  #contact {
    padding: 4.5rem 1.5rem 5rem;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center
  }

  .cta-label {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center
  }
}

@media(max-width:576px) {
  #contact {
    padding: 4rem 1rem;
  }

  .cta-box {
    max-width: calc(100vw - 2rem);
    padding: 2.4rem 1.15rem;
    border-radius: 20px;
    gap: 2.2rem
  }

  .cta-form-container {
    padding: 1.15rem;
    border-radius: 16px
  }

  .cta-h2 {
    font-size: 1.95rem
  }

  .cta-sub {
    max-width: 100%;
    font-size: .96rem
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .cta-info {
    margin-top: 2rem;
    font-size: .86rem;
  }
}

/* ========================================= */

/* ═══ MARQUEE ═══ */
.marquee-wrap {
  padding: .9rem 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.04));
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  z-index: 1;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent)
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent)
}

.marquee-inner {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: .9;
}

.marquee-sep {
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .6
}

@media (max-width: 768px) {
  .marquee-wrap {
    margin-top: -0.5rem;
    padding: .6rem 0
  }

  .marquee-inner {
    animation-duration: 20s
  }
}

.nav-links a.active {
  color: var(--white) !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.mobile-menu a.active {
  color: var(--white) !important;
  background: var(--blue) !important;
  border-radius: 8px !important;
}

/* Premium Breadcrumb Badge Styles */
.breadcrumb {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-bright) !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border: 1px solid rgba(37, 99, 235, 0.3) !important;
  padding: 0.4rem 1rem !important;
  border-radius: 100px !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  box-shadow: none !important;
}

.breadcrumb a {
  color: var(--blue-bright) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white) !important;
}

/* Solid Black Hero Background Overrides */
.hero,
.services-hero,
.whyus-hero,
.projects-hero,
.testimonials-hero,
.about-hero,
.blog-hero,
.contact-hero {
  background: #050508 !important;
}

/* Center About Page Hero Stats */
.about-hero .hero-stats {
  justify-content: center !important;
}

/* Global: regular font weight for all headings & bold text site-wide */
h1,
h2,
h3,
h4,
.section-title,
.section-tag,
.svc-card h3,
.check-item h4,
.team-name,
.step-num,
.blog-card h3,
.testimonial-name {
  font-weight: 400 !important;
}

/* Exception: keep homepage hero heading and contact box CTA heading bold */
.hero h1,
#contact .cta-h2 {
  font-weight: 800 !important;
}

/* Subpages hero h1 back to regular */
.whyus-hero h1,
.services-hero h1,
.projects-hero h1,
.testimonials-hero h1,
.about-hero h1,
.blog-hero h1,
.blog-detail-hero h1,
.contact-hero h1 {
  font-weight: 400 !important;
}

/* ==================== CUSTOM CURSOR ==================== */
@media (pointer: fine) {

  body,
  a,
  button,
  input,
  select,
  textarea,
  [role="button"],
  .hamburger,
  .mobile-menu-close,
  .interactive {
    cursor: none !important;
  }

  .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--blue-bright, #4C7CFF);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 10px var(--blue-bright, #4C7CFF), 0 0 20px var(--blue-bright, #4C7CFF);
    transform: translate(-50%, -50%);
    will-change: transform;
  }

  .custom-cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--blue-bright, #4C7CFF);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
  }

  .custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
  }

  .custom-cursor-ring.hover {
    width: 48px;
    height: 48px;
    border-color: var(--white, #ffffff);
    background-color: rgba(76, 124, 255, 0.08);
  }
}

/* ==========================================================================
   BLOG TWO-COLUMN LAYOUT & CARD STYLES
   ========================================================================== */

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2rem;
}

.blog-main-content {
  min-width: 0;
  text-align: left !important;
  /* Prevents flex/grid overflow */
}

.blog-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}

/* Sidebar Cards styling */
.sidebar-card {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(37, 99, 235, 0.03) !important;
  border-radius: 24px !important;
  padding: 2.2rem 2rem !important;
  margin-bottom: 2rem;
}

.sidebar-card h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--white, #ffffff) !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 2rem !important;
  margin-top: 0 !important;
  letter-spacing: -0.01em;
}

.sidebar-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
  flex-shrink: 0;
}

/* Table of Contents */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.toc-list::before {
  content: '';
  position: absolute;
  left: 17px;
  /* center of 36px circle */
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-bright, #60a5fa) 0%, rgba(37, 99, 235, 0.05) 100%);
  z-index: 0;
  pointer-events: none;
}

.toc-list li {
  margin-bottom: 0.85rem;
}

.toc-list li:last-child {
  margin-bottom: 0;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  padding: 0.6rem 0;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}

.toc-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted, #6b6b88);
  transition: all 0.25s;
  flex-shrink: 0;
  z-index: 2;
}

.toc-text {
  font-size: 0.95rem;
  color: var(--muted, #6b6b88);
  font-weight: 500;
  transition: all 0.25s;
  line-height: 1.4;
}

/* Active states */
.toc-item.active .toc-num {
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%);
  border-color: var(--blue-bright, #60a5fa);
  color: var(--white);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.toc-item.active .toc-text {
  color: var(--white);
  font-weight: 700;
}

/* Compact Related Sidebar List */
.related-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-sidebar-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.related-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

.related-sidebar-meta {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.related-sidebar-tag {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-bright, #60a5fa) !important;
  background: rgba(37, 99, 235, 0.12) !important;
  border: 1px solid rgba(37, 99, 235, 0.3) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 100px !important;
  display: inline-flex !important;
  align-items: center;
}

.related-sidebar-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.related-sidebar-item h5 {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  transition: color 0.3s;
}

.related-sidebar-item:hover h5 {
  color: var(--blue-bright, #60a5fa) !important;
}

.related-sidebar-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright, #60a5fa);
  font-size: 0.75rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.related-sidebar-item:hover .related-sidebar-arrow {
  background: var(--blue-bright, #60a5fa);
  color: var(--black, #000000);
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
  transform: translateX(2px);
}

/* Stats grid (aligned in a row, boxless layout) */
.blog-stats-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 3.5rem !important;
  justify-content: flex-start !important;
  margin: 3rem 0 !important;
}

.blog-stat-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.25rem !important;
  flex: 0 0 auto !important;
}

.blog-stat-num {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, var(--white, #ffffff) 30%, var(--blue-bright, #60a5fa)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 0.4rem !important;
}

.blog-stat-label {
  font-size: 0.85rem !important;
  color: var(--muted, #6b6b88) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 600 !important;
}

/* Bottom Related Articles Section */
.blog-bottom-related {
  margin-top: 5rem;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  padding-top: 4.5rem;
  max-width: none !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
  box-sizing: border-box !important;
}

.blog-bottom-related .projects-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 0;
}

.related-bottom-title {
  font-size: 2rem;
  color: var(--white, #ffffff);
  margin-bottom: 2.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.related-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card-link {
  background: var(--card, #12121e);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  border-radius: 20px;
  padding: 2.2rem 2rem;
  text-decoration: none;
  display: block;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card-link:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12);
}

.related-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.related-card-icon i {
  color: var(--blue-bright, #60a5fa);
  font-size: 1.25rem;
}

.related-card-link h3 {
  font-size: 1.15rem;
  color: var(--white, #ffffff);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.25s;
}

.related-card-link:hover h3 {
  color: var(--blue-bright, #60a5fa);
}

.related-card-link p {
  font-size: 0.925rem;
  color: var(--muted, #6b6b88);
  line-height: 1.6;
  margin: 0;
}

/* Comfortable reading width & spacing for body text */
.article-body {
  text-align: left !important;
}

.article-body p {
  color: var(--off-white, #e8e8f0);
  line-height: 1.75;
  font-size: 1.1rem;
  max-width: none !important;
  margin-bottom: 1.8rem;
}

.article-body h2 {
  color: var(--white, #ffffff);
  font-weight: 800;
  font-size: 1.85rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .blog-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-sidebar {
    position: static;
  }

  .toc-card {
    display: none;
    /* Hide TOC on mobile/tablet since it stacks at the bottom */
  }

  .related-bottom-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-bottom-related {
    margin-top: 4rem;
    padding-top: 3.5rem;
  }
}

@media (max-width: 480px) {
  .blog-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Styling blog meta info — each item is its own oval badge */
.blog-meta-info {
  display: flex !important;
  justify-content: center;
  gap: 0.75rem !important;
  margin-top: 1.5rem !important;
  flex-wrap: wrap;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blog-meta-info span {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-bright, #60a5fa) !important;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-detail-hero {
  padding-bottom: 5rem !important;
  min-height: auto !important;
  overflow: visible !important;
}

.featured-image-wrap {
  width: 100%;
  max-width: 480px !important;
  margin: 2.2rem auto 0 !important;
  border-radius: 20px !important;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
  aspect-ratio: 16/9;
}

/* Breadcrumb responsive — short version on mobile */
.bc-short {
  display: none;
}

@media (max-width: 600px) {
  .bc-full {
    display: none;
  }

  .bc-short {
    display: inline;
  }
}

.blog-detail-hero h1 {
  font-size: 2.75rem !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
}

.featured-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Globally hide the duplicate logo inside the mobile menu overlay */
.mobile-menu-logo {
  display: none !important;
}

/* Share Post Card Panel Redesign */
.share-card-panel {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(37, 99, 235, 0.02) !important;
  border-radius: 24px !important;
  padding: 2.5rem !important;
  margin-top: 3rem !important;
  margin-bottom: 2.5rem !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Soft radial glow in the top-right corner */
.share-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Share Card Horizontal Inner Body */
.share-card-body {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 2.5rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.share-card-left {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  text-align: left !important;
  flex-shrink: 0 !important;
}

.share-card-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

.share-icon-badge {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  /* Circular shape */
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%) !important;
  border: 2px solid rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--white, #ffffff) !important;
  font-size: 26px !important;
  /* matches author avatar text size */
  flex-shrink: 0 !important;
}

.share-card-title {
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  /* Regular font weight */
  color: var(--white, #ffffff) !important;
  margin: 0 !important;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.share-card-subtitle {
  font-size: 0.925rem !important;
  color: var(--muted, #6b6b88) !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.share-card-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-grow: 1 !important;
}

/* Share Icons Grid Row */
.share-grid-row {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-wrap: wrap !important;
  position: relative !important;
  z-index: 1 !important;
  margin-bottom: 0 !important;
  /* Reset bottom margin in horizontal mode */
}

.share-grid-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: transform 200ms ease !important;
  cursor: pointer !important;
}

.share-grid-item:hover {
  transform: translateY(-2px) !important;
}

.share-icon-box {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #3b82f6 !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  box-shadow: none !important;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease !important;
  position: relative !important;
}

.share-grid-item:hover .share-icon-box {
  background: #3b82f6 !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4) !important;
}

/* WhatsApp TOP badge */
.whatsapp-item {
  position: relative !important;
}

.share-top-badge {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%) !important;
  color: var(--white, #ffffff) !important;
  font-size: 0.55rem !important;
  font-weight: 800 !important;
  padding: 0.15rem 0.4rem !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4) !important;
  letter-spacing: 0.02em !important;
  z-index: 10 !important;
}

.share-icon-label {
  display: none !important;
}

/* Copy Link Badge — 7th share icon */
.share-grid-item:hover .share-icon-box.copy-color {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%) !important;
  border-color: rgba(96, 165, 250, 0.5) !important;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.5) !important;
  color: var(--white, #ffffff) !important;
}

.share-icon-box.copied {
  background: linear-gradient(135deg, #1aab4a 0%, #25D366 100%) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5) !important;
  color: var(--white, #ffffff) !important;
}

/* Author Avatar Premium Styling & Glowing Ring */
.author-card {
  margin-top: 2.5rem !important;
}

.author-avatar {
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%) !important;
  border: 2px solid rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3) !important;
  color: var(--white, #ffffff) !important;
}

/* Blog Hero Stats — matches index.html hero stats, centered below featured image */
.blog-hero-stats {
  display: flex !important;
  gap: 2rem !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  margin-top: 2.5rem !important;
  padding: 1.2rem 0 !important;
  position: relative !important;
  animation: fadeUp 0.8s 0.4s ease both !important;
}

/* Remove the top divider line from the blog hero stats */
.blog-hero-stats::before {
  display: none !important;
}

.blog-hero-stats .stat {
  text-align: center !important;
  align-items: center !important;
}

.blog-hero-stats .stat-num {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  background: linear-gradient(135deg, var(--white, #fff) 30%, var(--blue-bright, #60a5fa)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.blog-hero-stats .stat-label {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 0.25rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

/* Mobile responsive layout for blog hero stats — matches index.html hero stats 2x2 grid */
@media (max-width: 800px) {
  .blog-hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    width: min(100%, 360px) !important;
    margin: 2rem auto 0 !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  .blog-hero-stats .stat {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 0 !important;
    padding: 14px 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-right: none !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .blog-hero-stats .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .blog-hero-stats .stat:nth-child(n + 3) {
    border-bottom: none !important;
  }

  .blog-hero-stats .stat .stat-num {
    font-size: 2rem !important;
  }

  .blog-hero-stats .stat .stat-label {
    font-size: 0.72rem !important;
  }
}

/* ==========================================
   PREMIUM SCOPE CONNECTED TIMELINE LAYOUT
   ========================================== */
.scope-timeline {
  position: relative !important;
  max-width: none !important;
  margin: 40px auto 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  --col-width: 56px;
}

/* The vertical line running down the left side - mathematically centered */
.scope-timeline::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: calc(var(--col-width) / 2) !important;
  transform: translateX(-50%) !important;
  width: 2px !important;
  background: linear-gradient(to bottom, #2563eb 0%, #1d4ed8 50%, #60a5fa 100%) !important;
  opacity: 0.3 !important;
  z-index: 1 !important;
}

.scope-timeline-row {
  position: relative !important;
  display: grid !important;
  grid-template-columns: var(--col-width) 1fr !important;
  gap: 24px !important;
  margin-bottom: 48px !important;
  z-index: 2 !important;
}

.scope-timeline-row:last-child {
  margin-bottom: 0 !important;
}

/* Column wrapper for centering the node */
.scope-node-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}

/* Icon node */
.scope-node {
  flex-shrink: 0 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--blue, #2563eb) 0%, var(--blue-bright, #60a5fa) 100%) !important;
  display: grid !important;
  place-items: center !important;
  color: var(--white, #ffffff) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  box-shadow: 0 0 0 4px rgba(76, 124, 255, 0.12), 0 0 15px rgba(76, 124, 255, 0.25) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.scope-timeline-row:hover .scope-node {
  transform: scale(1.08) !important;
}

/* Content block next to the node */
.scope-content {
  padding-top: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.scope-content h2 {
  font-size: 1.85rem !important;
  font-weight: 400 !important;
  /* Regular font weight */
  color: var(--white, #ffffff) !important;
  margin: 0 0 1.25rem 0 !important;
  text-transform: none !important;
  text-align: left !important;
  line-height: 1.25 !important;
}

@media (max-width: 768px) {
  .scope-timeline {
    --col-width: 36px !important;
    padding: 0 !important;
  }

  .scope-timeline-row {
    gap: 12px !important;
    margin-bottom: 30px !important;
  }

  .scope-node {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12), 0 0 8px rgba(37, 99, 235, 0.15) !important;
  }

  .scope-content {
    padding-top: 4px !important;
  }

  .scope-content h2 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
}

/* Redesign Related Articles Bottom Full-width panel */
.related-articles-panel {
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(37, 99, 235, 0.02) !important;
  border-radius: 24px !important;
  padding: 2.2rem 2rem !important;
  margin-top: 3rem !important;
  margin-bottom: 2.5rem !important;
  position: relative !important;
  text-align: left !important;
}

.related-panel-title {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--white, #ffffff) !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 2rem !important;
  margin-top: 0 !important;
}

.related-panel-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
}

@media (max-width: 991px) {
  .related-panel-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* Force blog-layout-grid to block layout stretching to full width */
.blog-layout-grid {
  display: block !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.blog-main-content {
  width: 100% !important;
  max-width: 100% !important;
}

.scope-content p,
.scope-content ul,
.scope-content ol,
.scope-content blockquote {
  max-width: none !important;
  width: 100% !important;
}

/* Footer Social Media Icons */
.footer-socials {
  display: flex !important;
  gap: 12px !important;
  margin-top: 18px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

.footer-socials .social-link {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #3b82f6 !important;
  /* light accent blue */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.footer-socials .social-link:hover {
  background: #3b82f6 !important;
  /* accent blue background */
  color: #ffffff !important;
  /* white icon */
  transform: translateY(-2px) !important;
}

.footer-socials .social-link svg {
  display: block !important;
  flex-shrink: 0 !important;
  transition: fill 200ms ease, stroke 200ms ease !important;
}

/* Mobile & Tablet Overrides for Blog Detail pages - Relocated to override desktop selectors */
@media (max-width: 991px) {
  .blog-detail-hero {
    padding-top: 90px !important;
    padding-bottom: 4rem !important;
    overflow: visible !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .blog-detail-hero .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .blog-detail-hero h1 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .blog-container {
    padding: 0 1.5rem !important;
  }

  .featured-image-wrap {
    aspect-ratio: auto !important;
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .featured-image-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .blog-bottom-related {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .blog-bottom-related .projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .share-card-panel {
    padding: 1.5rem !important;
  }

  .share-card-body {
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }

  .share-card-left {
    flex-direction: row !important;
    text-align: left !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .share-card-text {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .share-card-title,
  .share-card-subtitle {
    text-align: left !important;
  }

  .share-icon-badge {
    width: 60px !important;
    height: 60px !important;
    font-size: 20px !important;
  }

  .share-card-title {
    font-size: 1.15rem !important;
  }

  .share-card-subtitle {
    font-size: 0.85rem !important;
  }

  .share-card-right {
    justify-content: space-between !important;
    width: 100% !important;
  }

  .share-grid-row {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .share-grid-row a[href*="whatsapp.com"],
  .share-grid-row a[href*="pinterest.com"] {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .blog-detail-hero h1 {
    font-size: 1.35rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .blog-meta-info {
    gap: 0.25rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  .blog-meta-info span {
    font-size: 0.62rem !important;
    padding: 0.25rem 0.45rem !important;
    gap: 0.2rem !important;
    white-space: nowrap !important;
  }

  .share-card-panel {
    padding: 1.25rem 1rem !important;
  }

  .share-icon-badge {
    width: 54px !important;
    height: 54px !important;
    font-size: 18px !important;
  }

  .share-card-title {
    font-size: 1.05rem !important;
  }

  .share-card-subtitle {
    font-size: 0.8rem !important;
  }

  .share-grid-row {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .share-icon-box {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }

  .share-icon-label {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 640px) {
  .blog-bottom-related .projects-grid {
    grid-template-columns: 1fr !important;
  }
}