/* ================================================
   Deeva Payon Global — style.css
   Fully Responsive: 320px → 1400px+
   Breakpoints: 320, 480, 576, 768, 992, 1100, 1200
   ================================================ */

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
  --blue: #1A73E8;
  --blue-dark: #1558b0;
  --blue-light: #4a9aff;
  --navy: #0B3C6D;
  --navy-deep: #071f38;
  --bg: #F4F8FF;
  --bg-card: #EEF4FD;
  --white: #FFFFFF;
  --text: #1F2D3D;
  --muted: #5A6E84;
  --border: #D4E3F5;
  --success: #1fa84a;
  --error: #d93025;
  --topbar-h: 42px;
  --header-h: 74px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .28s var(--ease);
  --r: 10px;
  --r-lg: 16px;
  --shadow-xs: 0 1px 4px rgba(11, 60, 109, .06);
  --shadow-sm: 0 2px 14px rgba(11, 60, 109, .10);
  --shadow-md: 0 8px 32px rgba(11, 60, 109, .14);
  --shadow-lg: 0 20px 64px rgba(11, 60, 109, .20);
}

/* ================================================
   RESET & BASE
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

/* ================================================
   UTILITY
   ================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 115, 232, .3);
}

.btn--nav {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  padding: 10px 22px;
  font-size: 14px;
}

.btn--nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--nav-desktop {
  display: inline-flex;
}

.btn--solid {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
}

.btn--solid:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
}

.btn--ghost {
 background: rgb(36 148 255 / 84%);
    color: #fff;
    border-color: rgb(255 255 255);
    font-size: 16px;
    padding: 15px 28px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white-solid {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.btn--white-solid:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.btn--white-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* Nav mobile CTA */
.nav__cta-mobile {
  display: none;
  padding: 14px 14px 6px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}

.btn--full-mobile {
  width: 83%;
    justify-content: center;
    padding: 13px 11px;
    font-size: 15px;
    border-radius: var(--r);
}

/* ================================================
   PAGE LOADER — SPINNER
   ================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: loaderFadeIn .5s ease;
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.loader__spinner {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-ring--2 {
  inset: 10px;
  border-top-color: transparent;
  border-right-color: var(--blue-light);
  animation-duration: .7s;
  animation-direction: reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader__logo-center {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(26, 115, 232, .5);
}

.loader__brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.loader__brand em {
  font-style: normal;
  color: var(--blue-light);
}

.loader__text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--navy-deep);
  height: var(--topbar-h);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: transform .3s var(--ease);
border-radius: 222px 222px 0px 0px;    
}
.topbar.hidden {
  transform: translateY(-100%);
}
.topbar__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
color: rgb(255 255 255);
font-weight: 400;
  transition: var(--t);
}
.topbar__item i {
  font-size: 12px;
  color: var(--blue-light);
}
.topbar__item:hover {
  color: #fff;
}
.topbar__item--plain {
color: rgb(255 255 255);
cursor: default;
}
.topbar__sep {
  color: rgba(255, 255, 255, .2);
  font-size: 13px;
}
.topbar__follow {
  font-size: 11px;
color: rgb(255 255 255);
font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.topbar__social {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
color: rgb(255 255 255);
font-size: 12px;
  transition: var(--t);
}
.topbar__social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}  

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--t), top .3s var(--ease);
border-radius: 0px 0px 46px 46px;    
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header.topbar-gone {
  top: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
  overflow: hidden;
  max-width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__mark--sm {
  width: 36px;
  height: 36px;
  font-size: 18px;
  border-radius: 9px;
}

.logo__name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.2;
}

.logo__name em {
  font-style: normal;
  color: var(--blue);
  display: block;
  font-size: .68em;
  font-weight: 600;
}

.logo__name--light {
  color: #cde4ff;
}

.logo__name--light em {
  color: #7bb8ff;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
      margin-left: 15%;
}

.nav__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  /*color: var(--blue);*/
  /*background: var(--bg-card);*/
}

.nav__chevron {
  font-size: 10px;
  transition: transform .25s var(--ease);
}

/* Mega menu wrapper */
.nav__mega-wrap {
  position: static;
}

.nav__mega-wrap:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mega-wrap:hover .nav__chevron {
  transform: rotate(180deg);
}

.nav__mega-wrap:hover .nav__link--mega {
  color: var(--blue);
  background: var(--bg-card);
}

/* ================================================
   MEGA MENU
   ================================================ */
.mega-menu {
  position: fixed;
  padding-top: 8px;
  top: calc(var(--topbar-h) + var(--header-h) - 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(11, 60, 109, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 998;
  pointer-events: none;
}

.mega-menu.topbar-gone {
  top: calc(var(--header-h) - 8px);
}

.mega-menu__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px clamp(16px, 3vw, 40px) 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-col {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--border);
}

.mega-col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 24px;
}

.mega-col:nth-child(2) {
  padding-left: 24px;
}

.mega-col:nth-child(3) {
  padding-left: 24px;
}

.mega-col__title {
  font-family: 'Syne', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  gap: 7px;
}

.mega-col__title i {
  color: var(--blue);
  font-size: 11px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--t);
}

.mega-link i {
  font-size: 11.5px;
  color: var(--border);
  transition: var(--t);
  width: 14px;
  flex-shrink: 0;
}

.mega-link:hover {
  color: var(--blue);
  background: var(--bg-card);
  padding-left: 12px;
}

.mega-link:hover i {
  color: var(--blue);
}

/* Header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--t);
  white-space: nowrap;
}

.header__phone i {
  color: var(--blue);
  font-size: 12px;
}

.header__phone:hover {
  background: var(--border);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--bg-card);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   HERO — VIDEO BACKGROUND
   ================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-deep);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /*padding:50px 0px;*/
  background:white;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(130deg, rgba(7, 31, 56, .92) 0%, rgba(11, 60, 109, .84) 55%, rgba(7, 31, 56, .8) 100%);*/
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 140px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
background: rgb(255 255 255 / 65%);
border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  width: fit-content;
  color: var(--blue);
  margin-bottom: 196px!important;
  
  
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cef7e;
  box-shadow: 0 0 0 3px rgba(76, 239, 126, .25);
  animation: pulse-g 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-g {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(76, 239, 126, .25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 239, 126, .08);
  }
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero__accent {
  color: #7bb8ff;
}

.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Metrics bar */
.hero__metrics-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  background: rgba(7, 20, 40, .65);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero__metrics {
  display: flex;
  align-items: center;
  padding: 5px clamp(16px, 3vw, 40px);
}

.metric {
  flex: 1;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.metric span {
  font-size: 11px;
  color: rgba(255, 255, 255, .52);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .14);
  flex-shrink: 0;
}

/* ================================================
   SERVICES — half image + half content rows
   ================================================ */
.services {
  background: var(--bg);
}

.split-head {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
}

.split-head__left {
  flex: 0 0 auto;
}

.split-head__left h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 4px;
}

.split-head__right {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  padding-bottom: 4px;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(11, 60, 109, .1), 0 1px 4px rgba(11, 60, 109, .06);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--t);
}

.svc-row:last-child {
  margin-bottom: 0;
}

.svc-row:hover {
  box-shadow: 0 12px 40px rgba(11, 60, 109, .16);
  transform: translateY(-3px);
}

.svc-row--reverse {
  direction: rtl;
}

.svc-row--reverse>* {
  direction: ltr;
}

.svc-row__img {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.svc-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.svc-row:hover .svc-row__img img {
  transform: scale(1.05);
}

.svc-row__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 60, 109, .55) 0%, rgba(26, 115, 232, .3) 100%);
}

.svc-row__img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.svc-row__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--white);
}

.svc-row__num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .1em;
}

.svc-row__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: var(--t);
  border: 1px solid var(--border);
}

.svc-row:hover .svc-row__icon {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.svc-row__content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text);
}

.svc-row__content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

.svc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.svc-row__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: var(--t);
}

.svc-row__tags span i {
  font-size: 10.5px;
}

.btn--sm-svc {
  padding: 10px 22px;
  font-size: 14px;
  width: fit-content;
  margin-top: 4px;
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  background: var(--bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img-wrap>img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.about__badge {
  position: absolute;
  bottom: -18px;
  right: -16px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__badge strong {
  display: block;
  font-size: 1.9rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
}

.about__badge span {
  font-size: 11px;
  opacity: .85;
  line-height: 1.5;
}

.about__cert-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}

.cert-pill i {
  color: var(--blue);
  font-size: 11px;
}

.about__text-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.about__text-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.check-item i {
  color: var(--success);
  font-size: 17px;
  flex-shrink: 0;
}

/* ================================================
   FEATURES
   ================================================ */
.features {
  background: var(--white);
}

.center-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.center-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.center-head p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
  box-shadow: 10px 10px 5px #c1c1c1;
}

.feat-card:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--t);
}

.feat-card:hover .feat-icon {
  background: var(--blue);
  color: #fff;
}

.feat-card h4 {
  font-size: 1rem;
  margin-bottom: 9px;
}

.feat-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why {
  background: var(--white);
}

/* Hero block */
.why-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.why-hero__img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.why-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.why-hero:hover .why-hero__img img {
  transform: scale(1.04);
}

.why-hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
}

.why-hero__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  padding: 2px;
  background: rgba(7, 31, 56, .5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.why-hero__stat {
  text-align: center;
  color: #fff;
}

.why-hero__stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1;
}

.why-hero__stat span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.why-hero__content {
  padding: 40px 44px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.why-hero__intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.why-hero__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.why-point i {
  color: var(--success);
  font-size: 15px;
  flex-shrink: 0;
}

/* 4 image cards */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(11, 60, 109, .09);
  transition: var(--t);
}

.why-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(11, 60, 109, .16);
  border-color: var(--blue);
}

.why-img-card__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.why-img-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.why-img-card:hover .why-img-card__img img {
  transform: scale(1.08);
}

.why-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 60, 109, .6) 0%, rgba(26, 115, 232, .4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}

.why-img-card:hover .why-img-card__overlay {
  opacity: 1;
}

.why-img-card__overlay i {
  font-size: 2rem;
  color: rgba(255, 255, 255, .9);
}

.why-img-card__body {
  padding: 18px 18px 22px;
}

.why-img-card__body h4 {
  font-size: .95rem;
  margin-bottom: 7px;
}

.why-img-card__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ================================================
   TESTIMONIAL CAROUSEL
   ================================================ */
.testi {
  background: var(--bg);
}

.testi-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.testi-track {
  display: flex;
  transition: transform .5s var(--ease);
  will-change: transform;
  width: 100%;
}

.testi-slide {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
}

.testi-slide:last-child {
  margin-right: 0;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(11, 60, 109, .08);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-card:hover {
  box-shadow: 0 12px 36px rgba(11, 60, 109, .15);
  transform: translateY(-4px);
  border-color: rgba(26, 115, 232, .3);
}

.testi-card--accent {
  background: var(--navy);
  border-color: var(--navy);
}

.testi-card--accent .testi-card__meta strong {
  color: #fff;
}

.testi-card--accent .testi-card__meta span {
  color: rgba(255, 255, 255, .55);
}

.testi-card--accent p {
  color: rgba(255, 255, 255, .82);
}

.testi-card--accent .testi-card__logo {
  color: rgba(255, 255, 255, .18);
}

.testi-card--accent .testi-stars i {
  color: #f9d44a;
}

.testi-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testi-card__avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-card);
  flex-shrink: 0;
}

.testi-card--accent .testi-card__avatar img {
  border-color: rgba(255, 255, 255, .2);
}

.testi-card__meta strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  color: var(--text);
}

.testi-card__meta span {
  font-size: 12px;
  color: var(--muted);
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  color: #f4a800;
  font-size: 12px;
}

.testi-card__logo {
  margin-left: auto;
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}

.testi-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.testi-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--t);
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* ================================================
   CTA STRIP
   ================================================ */
.cta-strip {
  background: linear-gradient(105deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: 64px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__copy h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip__copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
}

.cta-strip__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  background: var(--bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.contact__left h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.contact__left>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact__item span {
  font-size: 14px;
  color: var(--muted);
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.contact__form h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field label i {
  color: var(--blue);
  font-size: 11px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--t);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b4c4d4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.ferr {
  font-size: 11.5px;
  color: var(--error);
  display: none;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--error);
}

.form-field.has-error .ferr {
  display: block;
}

.form-ok {
  display: none;
  align-items: center;
  gap: 9px;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
  color: #1a6e36;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 12px;
}

.form-ok.show {
  display: flex;
}

.form-ok i {
  font-size: 17px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-deep);
}

.footer__main {
  padding: 60px 0 48px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin: 16px 0 24px;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  transition: var(--t);
}

.footer__social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col h5 {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer__col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .44);
  padding: 4px 0;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer__col a i {
  font-size: 9px;
  color: rgba(255, 255, 255, .22);
  transition: var(--t);
}

.footer__col a:hover {
  color: rgba(255, 255, 255, .9);
  padding-left: 4px;
}

.footer__col a:hover i {
  color: var(--blue-light);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__bar p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .32);
}

.footer__certs {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer__certs span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.footer__certs i {
  color: var(--blue-light);
  font-size: 11px;
}

/* ================================================
   STICKY CONTACT (Right Side)
   ================================================ */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 997;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: -4px 0 24px rgba(0, 0, 0, .2);
}

.sticky-contact.show {
  opacity: 1;
  visibility: visible;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: var(--t);
}

.sticky-btn:last-child {
  border-bottom: none;
}

.sticky-btn--green {
  background: #16a34a;
}

.sticky-btn--wa {
  background: #25D366;
}

.sticky-btn i {
  width: 46px;
  height: 53px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-right:5px;
}

.sticky-btn span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  transition: max-width .3s var(--ease), padding .3s var(--ease);
  padding: 0;
}

.sticky-btn:hover span {
  max-width: 110px;
  padding: 0 14px 0 4px;
}

.sticky-btn:hover {
  filter: brightness(1.1);
}

/* ================================================
   BACK TO TOP
   ================================================ */
.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 996;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(26, 115, 232, .4);
  transition: var(--t);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--rd, 0s);
}

.reveal.reveal--left {
  transform: translateX(-36px);
}

.reveal.reveal--right {
  transform: translateX(36px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ================================================
   SERVICES — Vertical Card Grid (image top + content bottom)
   ================================================ */
.svc-v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-v-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(11, 60, 109, .08);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 5px #c1c1c1;
}

.svc-v-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(11, 60, 109, .16);
  border-color: rgba(26, 115, 232, .3);
}

/* Image top */
.svc-v-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-v-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.svc-v-card:hover .svc-v-card__img img {
  transform: scale(1.07);
}

/* Dark gradient overlay on image */
.svc-v-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 60, 109, .18) 0%, rgba(11, 60, 109, .55) 100%);
  transition: var(--t);
}

.svc-v-card:hover .svc-v-card__img::after {
  background: linear-gradient(180deg, rgba(26, 115, 232, .2) 0%, rgba(11, 60, 109, .65) 100%);
}

/* Icon badge over image */
.svc-v-card__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(26, 115, 232, .45);
  transition: var(--t);
}

.svc-v-card:hover .svc-v-card__badge {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(26, 115, 232, .55);
}

/* Content bottom */
.svc-v-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-v-num {
  font-family: 'Syne', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.svc-v-card__body h3 {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.svc-v-card__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.svc-v-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-v-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.svc-v-tags span i {
  font-size: 10px;
}

.svc-v-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  transition: var(--t);
  margin-top: 4px;
  text-decoration: none;
}

.svc-v-link:hover {
  gap: 10px;
}

/* Svc-v-grid responsive */
@media (max-width: 1100px) {
  .svc-v-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .svc-v-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-v-card__img {
    height: 180px; 
  }
} 

/* ================================================
   WHY CHOOSE US — Cards Carousel
   ================================================ */
.why-carousel-wrap {
  position: relative;
  margin-top: 8px;
}

.why-carousel {
  overflow: hidden;
  width: 100%;
  border-radius: var(--r-lg);
}

.why-c-track {
  display: flex;
  gap: 20px;
  transition: transform .48s var(--ease);
  will-change: transform;
}

.why-c-slide {
  flex-shrink: 0;
}

/* Card design */
.why-c-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(11, 60, 109, .09);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  height: 97%;
      box-shadow: 10px 10px 5px #e6e6e6;
}

.why-c-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(11, 60, 109, .16);
  border-color: var(--blue);
}

.why-c-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.why-c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.why-c-card:hover .why-c-img img {
  transform: scale(1.07);
}

.why-c-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 60, 109, .6) 100%);
}

.why-c-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, .4);
  transition: var(--t);
}

.why-c-card:hover .why-c-icon {
  transform: scale(1.1);
}

.why-c-body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-c-body h4 {
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  color: var(--text);
  margin: 0;
}

.why-c-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Carousel controls */
.why-c-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.why-c-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.why-c-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.why-c-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.why-c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--t);
  border: none;
  padding: 0;
}

.why-c-dot.active {
  background: var(--blue);
  transform: scale(1.35);
}

/* ================================================
   TECH STACK TICKER — Infinite Auto-Scroll Slider
   ================================================ */
.tech-stack {
  background: var(--white);
  padding: 56px 0 64px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-stack__header {
  text-align: center;
  margin-bottom: 36px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
}

.tech-tag i {
  font-size: 12px;
}

/* Ticker wrapper — clips overflow, adds fade edges */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  /* Fade left & right edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

.ticker-wrap:last-child {
  margin-bottom: 0;
}

/* Ticker row — flex, no wrap, animates */
.ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  /* as wide as all cards combined */
  will-change: transform;
}

/* Row 1 — scrolls left (forward) */
.ticker--fwd {
  animation: tickerFwd 35s linear infinite;
  margin-bottom:8px;
}

/* Row 2 — scrolls right (reverse) */
.ticker--rev {
  animation: tickerRev 30s linear infinite;
}

/* Pause on hover */
.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

@keyframes tickerFwd {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* -50% = scroll first half (duplicated) */
}

@keyframes tickerRev {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Individual tech card */
.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;
  height: 110px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 12px;
  flex-shrink: 0;
  transition: all .3s var(--ease);
  cursor: default;
  box-shadow: 0 2px 10px rgba(11, 60, 109, .06);
}

.tech-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(26, 115, 232, .16);
  transform: translateY(-5px) scale(1.04);
  background: var(--bg-card);
}

.tech-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  transition: transform .3s var(--ease);
}

.tech-card:hover img {
  transform: scale(1.1);
}

.tech-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  text-align: center;
  white-space: nowrap;
  transition: color .3s;
}

.tech-card:hover span {
  color: var(--blue);
}

/* Alt style — row 2 darker background */
.tech-card--alt {
  background: var(--bg);
  border-color: var(--border);
}

.tech-card--alt:hover {
  background: var(--bg-card);
  border-color: var(--blue);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .tech-stack {
    padding: 44px 0 52px;
  }

  .tech-card {
    min-width: 90px;
    height: 90px;
    border-radius: 12px;
    gap: 8px;
  }

  .tech-card img {
    width: 36px;
    height: 36px;
  }

  .tech-card span {
    font-size: 11px;
  }

  .ticker {
    gap: 12px;
  }

  .ticker--fwd {
    animation-duration: 28s;
  }

  .ticker--rev {
    animation-duration: 24s;
  }
}

@media (max-width: 480px) {
  .tech-stack {
    padding: 36px 0 44px;
  }

  .tech-card {
    min-width: 76px;
    height: 80px;
    border-radius: 10px;
    gap: 7px;
    padding: 12px 8px;
  }

  .tech-card img {
    width: 30px;
    height: 30px;
  }

  .tech-card span {
    font-size: 10px;
  }

  .ticker {
    gap: 10px;
  }

  .ticker--fwd {
    animation-duration: 22s;
  }

  .ticker--rev {
    animation-duration: 18s;
  }
}

/* ================================================
   GLOBAL OVERFLOW GUARD
   ================================================ */
footer,
.hero,
.topbar,
.services,
.about,
.features,
.why,
.testi,
.cta-strip,
.contact {
  overflow-x: hidden;
  max-width: 100%;
}

.svc-row {
  overflow: hidden;
}

.why-hero {
  overflow: hidden;
}

.about__img-wrap {
  overflow: visible;
}

/* allow badge bleed but clip parent */
.about__img-col {
  overflow: hidden;
  padding-bottom: 24px;
  padding-right: 24px;
}

/* ================================================
   RESPONSIVE — 1200px (Large Desktop)
   ================================================ */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }

  .topbar__wrap {
    padding: 0 32px;
  }

  .mega-menu__inner {
    padding: 24px 32px 28px;
  }

  .hero__metrics {
    padding: 18px 32px;
  }
}

/* ================================================
   RESPONSIVE — 1100px (Tablet Landscape)
   ================================================ */
@media (max-width: 1100px) {
  .container {
    padding: 0 28px;
  }

  .topbar__wrap {
    padding: 0 28px;
  }

  .section {
    padding: 72px 0;
  }

  /* Header — hide phone number, compact */
  .header__phone {
    display: none;
  }

  .nav__link {
    font-size: 13px;
    padding: 7px 10px;
  }

  /* Mega menu — 2 col */
  .mega-menu__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 28px 24px;
  }

  .mega-col {
    padding: 0 18px 0 0;
  }

  .mega-col:nth-child(even) {
    padding-left: 18px;
    border-right: none;
    padding-right: 0;
  }

  .mega-col:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .mega-col:last-child {
    padding-left: 18px;
    border-right: none;
  }

  /* Services */
  .svc-row {
    grid-template-columns: 1fr 1fr;
  }

  .svc-row__img {
    height: 280px;
  }

  .svc-row__content {
    padding: 28px 30px;
  }

  /* Features 2 col */
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About stacked */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__img-col {
    max-width: 520px;
    margin: 0 auto;
  }

  /* Why hero */
  .why-hero {
    grid-template-columns: 1fr 1fr;
  }

  .why-hero__content {
    padding: 32px 36px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testi 2 per view */
  .testi-slide {
    flex: 0 0 calc(50% - 12px);
  }

  /* Contact stacked */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer 2 col */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .split-head {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ================================================
   RESPONSIVE — 992px (Tablet Portrait)
   ================================================ */
@media (max-width: 992px) {
  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 24px;
  }

  .topbar__wrap {
    padding: 0 24px;
  }

  /* Nav hidden — hamburger menu */
  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px 20px;
    max-height: calc(100vh - var(--topbar-h) - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
    box-shadow: var(--shadow-md);
    z-index: 1100;
        margin-left: 15%;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    border-radius: 55px;
  }

  .nav__link {
    padding: 11px 14px;
    font-size: 14.5px;
  }

  .hamburger {
    display: flex;
  }

  .btn--nav-desktop {
    display: none;
  }

  .nav__cta-mobile {
    display: block;
  }

  /* Mega menu mobile */
  .mega-menu {
    position: static;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: all;
    box-shadow: none;
    border-top: 1px solid var(--border);
    border-bottom: none;
    display: none;
  }

  .mega-menu.mobile-open {
    display: block;
  }

  .mega-menu__inner {
    grid-template-columns: 1fr;
    padding: 10px 8px;
    gap: 0;
  }

  .mega-col {
    border-right: none;
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
  }

  .mega-col:last-child {
    border-bottom: none;
  }

  /* Testi 2 per view */
  .testi-slide {
    flex: 0 0 calc(50% - 12px);
  }

  /* Why hero stacked */
  .why-hero {
    grid-template-columns: 1fr;
  }

  .why-hero__img {
    min-height: 300px;
  }

  .why-hero__content {
    padding: 32px 28px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Services — full width rows */
  .svc-row {
    grid-template-columns: 1fr 1fr;
  }

  .svc-row__img {
    height: 260px;
  }

  .svc-row__content {
    padding: 24px 26px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ================================================
   RESPONSIVE — 768px (Mobile Landscape / Large Mobile)
   ================================================ */
@media (max-width: 768px) {
  :root {
    --topbar-h: 38px;
    --header-h: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .topbar__wrap {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  /* Topbar — hide left items on small screens */
  .topbar__item--plain {
    display: none;
  }

  .topbar__sep:last-of-type {
    display: none;
  }

  /* Header */
  .header__inner {
    height: var(--header-h);
  }

  .logo__name {
    font-size: 1rem;
  }

  .logo__mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Nav */
  .nav {
    top: calc(var(--topbar-h) + var(--header-h));
  }

  .nav.topbar-gone {
    top: var(--header-h) !important;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--topbar-h) + var(--header-h));
  }

  .hero__inner {
    padding-top: 44px;
    padding-bottom: 130px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero__sub {
    font-size: .95rem;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero__metrics {
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 12px;
  }

  .metric {
    flex: 1 1 40%;
    min-width: 100px;
  }

  .metric strong {
    font-size: 1.3rem;
  }

  .metric-divider {
    display: none;
  }

  /* Services rows → stacked */
  .svc-row {
    grid-template-columns: 1fr;
  }

  .svc-row--reverse {
    direction: ltr;
  }

  .svc-row__img {
    height: 220px;
  }

  .svc-row__content {
    padding: 24px 22px;
  }

  .svc-row__content h3 {
    font-size: 1.1rem;
  }

  .svc-row__tags span {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about__img-col {
    max-width: 100%;
  }

  .about__badge {
    bottom: -14px;
    right: 0;
    padding: 12px 16px;
  }

  .about__badge strong {
    font-size: 1.5rem;
  }

  /* Features 2 col */
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feat-card {
    padding: 22px 18px;
  }

  /* Why */
  .why-hero {
    grid-template-columns: 1fr;
  }

  .why-hero__img {
    min-height: 240px;
  }

  .why-hero__content {
    padding: 26px 22px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .why-img-card__img {
    height: 160px;
  }

  .why-img-card__body {
    padding: 14px 16px 18px;
  }

  /* Testi 1 per view */
  .testi-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }

  /* CTA */
  .cta-strip {
    padding: 48px 0;
  }

  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-strip__btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__certs {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Sticky contact */
  .sticky-contact {
    top: auto;
    bottom: 70px;
    transform: none;
  }

  /* Back to top */
  .btt {
    bottom: 20px;
    right: 18px;
    width: 38px;
    height: 38px;
  }
}

/* ================================================
   RESPONSIVE — 576px (Small Mobile)
   ================================================ */
@media (max-width: 576px) {
  :root {
    --topbar-h: 36px;
    --header-h: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .topbar__wrap {
    padding: 0 14px;
  }

  .section {
    padding: 48px 0;
  }

  /* Topbar — only social icons on right */
  .topbar__left {
    display: none;
  }

  .topbar__follow {
    display: none;
  }

  /* Logo compact */
  .logo__name {
    font-size: .92rem;
  }

  .logo__mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .hero__sub {
    font-size: .9rem;
  }

  .hero__badge {
    font-size: 11.5px;
  }

  .hero__metrics {
    gap: 10px;
    padding: 12px 16px;
  }

  .metric strong {
    font-size: 1.2rem;
  }

  .metric span {
    font-size: 10px;
  }

  /* Services */
  .svc-row__img {
    height: 200px;
  }

  .svc-row__content {
    padding: 20px 18px;
    gap: 10px;
  }

  .svc-row__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .svc-row__tags {
    gap: 6px;
  }

  .svc-row__tags span {
    font-size: 10.5px;
    padding: 4px 9px;
  }

  .btn--sm-svc {
    padding: 9px 18px;
    font-size: 13px;
  }

  /* About */
  .about__cert-row {
    gap: 8px;
  }

  .cert-pill {
    font-size: 11.5px;
    padding: 5px 11px;
  }

  .about__badge {
    position: absolute;
    bottom: auto;
    top: 16px;
    right: 16px;
    padding: 10px 14px;
  }

  /* Features — 1 col */
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Why */
  .why-hero__img {
    min-height: 210px;
  }

  .why-hero__img-overlay {
    padding: 14px;
  }

  .why-hero__stat strong {
    font-size: 1.2rem;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-img-card__img {
    height: 130px;
  }

  .why-img-card__body {
    padding: 12px 13px 16px;
  }

  .why-img-card__body h4 {
    font-size: .88rem;
  }

  .why-img-card__body p {
    font-size: 12.5px;
  }

  /* Testi */
  .testi-card {
    padding: 20px;
  }

  .testi-card__avatar img {
    width: 44px;
    height: 44px;
  }

  .testi-controls {
    margin-top: 24px;
    gap: 10px;
  }

  .testi-btn {
    width: 38px;
    height: 38px;
  }

  /* Contact form */
  .contact__form {
    padding: 20px 16px;
  }

  .contact__form h3 {
    font-size: 1.1rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__main {
    padding: 44px 0 36px;
  }

  .footer__bar p {
    font-size: 12px;
  }

  /* Split head */
  .split-head__right {
    font-size: 14px;
  }

  .center-head p {
    font-size: 14px;
  }

  /* CTA */
  .cta-strip__copy h2 {
    font-size: 1.4rem;
  }

  .cta-strip__copy p {
    font-size: 14px;
  }
}

/* ================================================
   RESPONSIVE — 480px (Very Small Mobile)
   ================================================ */
@media (max-width: 480px) {
  :root {
    --topbar-h: 0px;
    --header-h: 58px;
  }

  .topbar {
    display: none;
  }

  .header {
    top: 0;
  }

  .nav {
    top: var(--header-h);
  }

  .hero {
    padding-top: var(--header-h);
  }

  .mega-menu {
    top: var(--header-h);
  }

  .mega-menu.topbar-gone {
    top: var(--header-h);
  }

  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .logo__name {
    font-size: .88rem;
  }

  .logo__mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
  }

  .hero__inner {
    padding-top: 36px;
    padding-bottom: 110px;
  }

  .hero__title {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
  }

  .hero__badge {
    display: none;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 269px !important;
  }

  .hero__metrics {
    padding: 10px 14px;
  }

  .metric {
    flex: 1 1 45%;
  }

  .metric strong {
    font-size: 1.1rem;
  }

  /* Services single column */
  .svc-row__img {
    height: 180px;
  }

  .svc-row__content {
    padding: 18px 16px;
    gap: 8px;
  }

  .svc-row__content h3 {
    font-size: 1rem;
  }

  .svc-row__content p {
    font-size: 13.5px;
  }

  .svc-row__tags {
    display: none;
  }

  .about__text-col h2 {
    font-size: 1.4rem;
  }

  .about__text-col p {
    font-size: 14px;
  }

  .check-item {
    font-size: 13.5px;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .why-img-card__img {
    height: 120px;
  }

  .testi-card p {
    font-size: 13.5px;
  }

  .contact__left h2 {
    font-size: 1.5rem;
  }

  .footer__certs {
    display: none;
  }

  .sticky-btn i {
    width: 40px;
    height: 44px;
    font-size: 16px;
  }

  .btt {
    width: 36px;
    height: 36px;
    font-size: 14px;
    right: 14px;
    bottom: 16px;
  }
}

/* ================================================
   RESPONSIVE — 360px (Smallest — Galaxy S8 etc)
   ================================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 40px 0;
  }

  .logo__name {
    font-size: .82rem;
  }

  .hero__title {
    font-size: 1.4rem;
  }

  .hero__sub {
    font-size: .88rem;
  }

  .svc-row__content h3 {
    font-size: .95rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-img-card__img {
    height: 160px;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 16px;
  }

  .metric {
    flex: 1 1 100%;
  }
}

/* ================================================
   MOBILE OVERFLOW NUCLEAR FIX — all devices ≤ 992px
   ================================================ */
@media (max-width: 992px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container,
  .topbar__wrap,
  .mega-menu__inner,
  .hero__inner,
  .hero__metrics,
  .svc-row,
  .svc-row__content,
  .about__inner,
  .about__text-col,
  .feat-grid,
  .why-hero,
  .why-hero__content,
  .why-cards,
  .testi-carousel,
  .cta-strip__inner,
  .contact__inner,
  .contact__form,
  .footer__grid,
  .footer__bar-inner {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Don't use overflow:hidden on section — clips fixed nav menu */
  .hero {
    overflow-x: hidden;
  }

  /* Images never wider than container */
  img {
    max-width: 100% !important;
  }

  /* Carousel track — clip tightly */
  .testi-carousel {
    overflow: hidden !important;
    width: 100% !important;
  }

  .testi-track {
    overflow: visible;
  }

  /* Sticky contact stays inside viewport */
  .sticky-contact {
    right: 0 !important;
    max-width: 48px;
  }

  .sticky-btn span {
    display: none !important;
  }

  .sticky-btn:hover span {
    display: none !important;
  }

  /* About badge — contain inside parent */
  .about__img-col {
    position: relative;
    overflow: visible;
    padding: 0 0 20px 0;
  }

  .about__badge {
    right: 8px !important;
  }

  /* Hero metrics — ensure no overflow */
  .hero__metrics-bar {
    overflow: hidden;
  }

  .hero__metrics {
    overflow: hidden;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Nav menu width fix — but NOT overflow:hidden (breaks transform animation) */
  .nav {
    width: 100% !important;
  }
}

@media (max-width: 576px) {

  /* Service row tags can wrap freely */
  .svc-row__tags {
    flex-wrap: wrap;
  }

  .svc-row__tags span {
    flex-shrink: 0;
  }

  /* All grids clamp to single column when needed */
  .feat-grid,
  .why-cards {
    overflow: hidden;
  }

  /* Footer columns no overflow */
  .footer__col a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Contact form inputs */
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100% !important;
    max-width: 100%;
  }
}

/* ============================================================
   mobile-app-development.css  — 100% Standalone
   No dependency on style.css
   ============================================================ */

/* === VARIABLES === */
:root {
  --blue: #1A73E8;
  --blue-dk: #1558b0;
  --navy: #0B3C6D;
  --navy-dp: #071f38;
  --bg: #F4F8FF;
  --bg-c: #EEF4FD;
  --white: #FFFFFF;
  --text: #1F2D3D;
  --muted: #5A6E84;
  --border: #D4E3F5;
  --green: #1fa84a;
  --r: 10px;
  --r-lg: 16px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .28s var(--ease);
  --sh-sm: 0 2px 14px rgba(11, 60, 109, .1);
  --sh-md: 0 8px 32px rgba(11, 60, 109, .14);
  --sh-lg: 0 20px 64px rgba(11, 60, 109, .2);
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === SECTIONS === */
.sec {
  padding: 80px 0;
}

.sec--white {
  background: var(--white);
}

.sec--light {
  background: var(--bg);
}

.sec--navy {
  background: var(--navy-dp);
}

/* === SECTION HEADER === */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.sec-head p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* === TAG PILL === */
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-c);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.ptag--light {
  background: rgba(255, 255, 255, .12);
  color: #7bb8ff;
  border-color: rgba(255, 255, 255, .25);
}

/* === BUTTONS === */
.pbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}

.pbtn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.pbtn--primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 115, 232, .3);
}

.pbtn--solid {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
}

.pbtn--solid:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  font-size: 16px;
  padding: 15px 28px;
}

.pbtn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
  transform: translateY(-2px);
}

.pbtn--white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.pbtn--white:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--white-solid {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.pbtn--white-solid:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.pbtn--white-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

.pbtn--full {
  width: 100%;
  justify-content: center;
}

/* === SCROLL REVEAL ANIMATION === */
.anim {
  opacity: 1;
  /* DEFAULT VISIBLE — JS adds class to animate */
  transform: none;
}

/* When JS adds .animate class, elements that haven't been revealed yet */
.anim.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0s);
}

.anim.will-animate.anim--left {
  transform: translateX(-36px);
}

.anim.will-animate.anim--right {
  transform: translateX(36px);
}

.anim.will-animate.show {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-pg {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-pg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pg__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-pg__overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(7 31 56 / 23%) 0%, rgb(11 60 109 / 28%) 55%, rgb(7 31 56 / 38%) 100%);
     margin-top: 680px;
}

.hero-pg__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bc a,
.bc span {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  transition: color .25s;
}

.bc a:hover {
  color: #fff;
}

.bc__sep {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.bc span {
  color: rgba(255, 255, 255, .9);
}

/* Hero content */
.hero-pg__content {
  max-width: 800px;
  padding-bottom: 48px;
}

.hero-pg__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-pg__accent {
  color: #7bb8ff;
}

.hero-pg__content p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-pg__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-pg__stats {
  display: flex;
  align-items: center;
  background: rgba(7, 20, 40, .6);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 40px;
  margin: 0 -40px;
}

.hstat {
  flex: 1;
  text-align: center;
}

.hstat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hstat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* ============================================================
   TWO COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col--top {
  align-items: start;
}

.two-col__img {
  min-width: 0;
}

.two-col__txt {
  min-width: 0;
}

.two-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.two-col p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Image frame */
.img-frame {
  position: relative;
}

.img-frame img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, .4);
}

.img-badge i {
  font-size: 1.6rem;
}

.img-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
}

.img-badge span {
  font-size: 12px;
  opacity: .8;
}

/* Checklist */
.chklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 32px;
}

.chklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.chklist li i {
  color: var(--green);
  font-size: 17px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS (3 col)
   ============================================================ */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 10px 10px 5px #e6e6e6;
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.scard__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--t);
}

.scard:hover .scard__icon {
  background: currentColor;
}

.scard:hover .scard__icon i {
  color: #fff;
}

.scard h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.scard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.scard__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.scard__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.scard__list li i {
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS GRID (3 col)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pstep {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.pstep:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.pstep__num {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
}

.pstep__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: 8px 0 14px;
  transition: var(--t);
}

.pstep:hover .pstep__icon {
  background: var(--blue);
  color: #fff;
}

.pstep h4 {
  font-size: 1rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pstep p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.pstep__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-c);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}


.tg h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg h5 i {
  color: #7bb8ff;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tpill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--t);
}

.tpill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.tpill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tpill span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* ============================================================
   FEATURES (4 col)
   ============================================================ */
.feat4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--t);
  box-shadow: 10px 10px 5px #373737;
}

.fcard:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.fcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--t);
}

.fcard:hover .fcard__ico {
  background: var(--blue);
  color: #fff;
}

.fcard h4 {
  font-size: .95rem;
  margin-bottom: 9px;
  color: var(--text);
}

.fcard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   INDUSTRIES (6 col)
   ============================================================ */
.ind6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.icard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 14px;
  text-align: center;
  transition: var(--t);
  cursor: default;
}

.icard:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.icard__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  transition: var(--t);
}

.icard:hover .icard__ico {
  background: var(--blue);
  color: #fff;
}

.icard h5 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ============================================================
   PORTFOLIO (2 col)
   ============================================================ */
.port2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(11, 60, 109, .08);
  transition: var(--t);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.pcard__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.pcard:hover .pcard__img img {
  transform: scale(1.06);
}

.pcard__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 31, 56, .72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.pcat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
}

.pcard__body {
  padding: 20px 22px 24px;
}

.pcard__body h4 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pcard__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ptags span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-c);
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ============================================================
   PRICING (3 col)
   ============================================================ */
.price3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.prcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: var(--t);
}

.prcard:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.prcard--feat {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 48px rgba(11, 60, 109, .3);
  transform: translateY(-8px);
}

.prcard--feat:hover {
  transform: translateY(-14px);
}

.prcard--feat h3 {
  color: #fff;
}

.prcard--feat strong {
  color: #fff;
}

.prcard--feat span {
  color: rgba(255, 255, 255, .6);
}

.prcard--feat .prlist li {
  color: rgba(255, 255, 255, .85);
}

.prcard--feat .prlist li i {
  color: #4cef7e;
}

.prcard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.prcard__head {
  margin-bottom: 24px;
}

.prcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}

.prcard--feat .prcard__ico {
  background: rgba(255, 255, 255, .15);
  color: #7bb8ff;
}

.prcard h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.prcard__price {
  margin-top: 12px;
}

.prcard__price span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.prcard__price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.prlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}

.prlist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}

.prlist li i {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 28px;
}

.price-note i {
  color: var(--blue);
}

.price-note a {
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .25s;
}

.faq__q:hover {
  color: var(--blue);
}

.faq__q[aria-expanded="true"] {
  color: var(--blue);
}

.faq__ico {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq__q[aria-expanded="true"] .faq__ico {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq__a.open {
  max-height: 300px;
}

.faq__a p {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(105deg, var(--navy-dp) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: 64px 0;
}

.cta-strip__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__in h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
}

.cta-strip__in p {
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
}

.cta-strip__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .wrap {
    padding: 0 28px;
  }

  .hero-pg__stats {
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .cards3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
  .sec {
    padding: 64px 0;
  }

  .wrap {
    padding: 0 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .img-badge {
    right: 0;
    bottom: -14px;
  }

  .prcard--feat {
    transform: none;
  }

  .price3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }

  .sec {
    padding: 52px 0;
  }

  .hero-pg {
    min-height: 100svh;
  }

  .hero-pg__content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-pg__content p {
    font-size: .95rem;
  }

  .hero-pg__btns {
    flex-direction: column;
  }

  .hero-pg__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .hero-pg__stats {
    flex-wrap: wrap;
    margin: 0 -20px;
    padding: 16px 20px;
  }

  .hstat {
    flex: 1 1 40%;
    min-width: 100px;
  }

  .hstat-sep {
    display: none;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .price3 {
    grid-template-columns: 1fr;
  }

  .port2 {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    padding: 48px 0;
  }

  .cta-strip__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-strip__btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .two-col--top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 576px
   ============================================================ */
@media (max-width: 576px) {
  .feat4 {
    grid-template-columns: 1fr;
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-pills {
    gap: 8px;
  }

  .tpill {
    padding: 8px 12px;
  }

  .tpill img {
    width: 22px;
    height: 22px;
  }

  .tpill span {
    font-size: 12px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .wrap {
    padding: 0 14px;
  }

  .hero-pg__content h1 {
    font-size: 1.55rem;
  }

  .bc a,
  .bc span {
    font-size: 12px;
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sec-head {
    margin-bottom: 36px;
  }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.pg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #071f38;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}

.pg-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pg-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: ldFadeIn .4s ease;
}

@keyframes ldFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pg-loader__spinner {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-spin-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #1A73E8;
  border-radius: 50%;
  animation: pgSpin 1s linear infinite;
}

.pg-spin-ring--2 {
  inset: 10px;
  border-top-color: transparent;
  border-right-color: #4a9aff;
  animation-duration: .7s;
  animation-direction: reverse;
}

@keyframes pgSpin {
  to {
    transform: rotate(360deg);
  }
}

.pg-loader__center {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1A73E8;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(26, 115, 232, .5);
}

.pg-loader__brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.pg-loader__brand em {
  font-style: normal;
  color: #4a9aff;
}

.pg-loader__text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   TECH TICKER SLIDER
   ============================================================ */
.tk-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 0;
}

.tk-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.tk-track--fwd {
  animation: tkFwd 32s linear infinite;
}

.tk-track--rev {
  animation: tkRev 28s linear infinite;
}

.tk-wrap:hover .tk-track {
  animation-play-state: paused;
}

@keyframes tkFwd {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes tkRev {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.tk-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 104px;
  height: 104px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 10px;
  flex-shrink: 0;
  transition: all .3s ease;
  cursor: default;
}

.tk-card:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.tk-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform .3s;
}

.tk-card:hover img {
  transform: scale(1.12);
}

.tk-card span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}

.tk-card--alt {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
}

@media (max-width: 768px) {
  .tk-card {
    min-width: 86px;
    height: 88px;
    border-radius: 10px;
  }

  .tk-card img {
    width: 34px;
    height: 34px;
  }

  .tk-card span {
    font-size: 10.5px;
  }

  .tk-track {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .tk-card {
    min-width: 74px;
    height: 78px;
  }

  .tk-card img {
    width: 28px;
    height: 28px;
  }

  .tk-track {
    gap: 8px;
  }
}

/* ============================================================
   mobile-app-development.css  — 100% Standalone
   No dependency on style.css
   ============================================================ */

/* === VARIABLES === */
:root {
  --blue: #1A73E8;
  --blue-dk: #1558b0;
  --navy: #0B3C6D;
  --navy-dp: #071f38;
  --bg: #F4F8FF;
  --bg-c: #EEF4FD;
  --white: #FFFFFF;
  --text: #1F2D3D;
  --muted: #5A6E84;
  --border: #D4E3F5;
  --green: #1fa84a;
  --r: 10px;
  --r-lg: 16px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .28s var(--ease);
  --sh-sm: 0 2px 14px rgba(11, 60, 109, .1);
  --sh-md: 0 8px 32px rgba(11, 60, 109, .14);
  --sh-lg: 0 20px 64px rgba(11, 60, 109, .2);
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === SECTIONS === */
.sec {
  padding: 80px 0;
}

.sec--white {
  background: var(--white);
}

.sec--light {
  background: var(--bg);
}

.sec--navy {
  background: var(--navy-dp);
}

/* === SECTION HEADER === */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.sec-head p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* === TAG PILL === */
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-c);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.ptag--light {
  background: rgba(255, 255, 255, .12);
  color: #7bb8ff;
  border-color: rgba(255, 255, 255, .25);
}

/* === BUTTONS === */
.pbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}

.pbtn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.pbtn--primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26, 115, 232, .3);
}

.pbtn--solid {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
}

.pbtn--solid:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  font-size: 16px;
  padding: 15px 28px;
}

.pbtn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
  transform: translateY(-2px);
}

.pbtn--white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.pbtn--white:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--white-solid {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.pbtn--white-solid:hover {
  background: var(--bg-c);
  transform: translateY(-2px);
}

.pbtn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.pbtn--white-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

.pbtn--full {
  width: 100%;
  justify-content: center;
}

/* === SCROLL REVEAL ANIMATION === */
.anim {
  opacity: 1;
  /* DEFAULT VISIBLE — JS adds class to animate */
  transform: none;
}

/* When JS adds .animate class, elements that haven't been revealed yet */
.anim.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0s);
}

.anim.will-animate.anim--left {
  transform: translateX(-36px);
}

.anim.will-animate.anim--right {
  transform: translateX(36px);
}

.anim.will-animate.show {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-pg {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-pg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pg__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-top: 50px;
  
}

.hero-pg__overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(7 31 56 / 23%) 0%, rgb(11 60 109 / 28%) 55%, rgb(7 31 56 / 38%) 100%);
}

.hero-pg__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bc a,
.bc span {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  transition: color .25s;
}

.bc a:hover {
  color: #fff;
}

.bc__sep {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.bc span {
  color: rgba(255, 255, 255, .9);
}

/* Hero content */
.hero-pg__content {
  max-width: 800px;
  padding-bottom: 48px;
}

.hero-pg__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-pg__accent {
  color: #7bb8ff;
}

.hero-pg__content p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-pg__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-pg__stats {
  display: flex;
  align-items: center;
  /*background: rgba(7, 20, 40, .6);*/
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 40px;
  margin: 0 -40px;
  background: rgb(13 31 58 / 91%);
}

.hstat {
  flex: 1;
  text-align: center;
}

.hstat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hstat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* ============================================================
   TWO COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col--top {
  align-items: start;
}

.two-col__img {
  min-width: 0;
}

.two-col__txt {
  min-width: 0;
}

.two-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.two-col p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Image frame */
.img-frame {
  position: relative;
}

.img-frame img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

.img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, .4);
}

.img-badge i {
  font-size: 1.6rem;
}

.img-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
}

.img-badge span {
  font-size: 12px;
  opacity: .8;
}

/* Checklist */
.chklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 32px;
}

.chklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.chklist li i {
  color: var(--green);
  font-size: 17px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS (3 col)
   ============================================================ */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.scard__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--t);
}

.scard:hover .scard__icon {
  background: currentColor;
}

.scard:hover .scard__icon i {
  color: #fff;
}

.scard h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.scard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.scard__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.scard__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.scard__list li i {
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS GRID (3 col)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pstep {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.pstep:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.pstep__num {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
}

.pstep__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: 8px 0 14px;
  transition: var(--t);
}

.pstep:hover .pstep__icon {
  background: var(--blue);
  color: #fff;
}

.pstep h4 {
  font-size: 1rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pstep p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.pstep__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-c);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

/* ============================================================
   TECH STACK
   ============================================================ */
.tech-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}



.tg h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg h5 i {
  color: #7bb8ff;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tpill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--t);
}

.tpill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.tpill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tpill span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* ============================================================
   FEATURES (4 col)
   ============================================================ */
.feat4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--t);
}

.fcard:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.fcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--t);
}

.fcard:hover .fcard__ico {
  background: var(--blue);
  color: #fff;
}

.fcard h4 {
  font-size: .95rem;
  margin-bottom: 9px;
  color: var(--text);
}

.fcard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   INDUSTRIES (6 col)
   ============================================================ */
.ind6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.icard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 14px;
  text-align: center;
  transition: var(--t);
  cursor: default;
}

.icard:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.icard__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
  transition: var(--t);
}

.icard:hover .icard__ico {
  background: var(--blue);
  color: #fff;
}

.icard h5 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ============================================================
   PORTFOLIO (2 col)
   ============================================================ */
.port2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(11, 60, 109, .08);
  transition: var(--t);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}

.pcard__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.pcard:hover .pcard__img img {
  transform: scale(1.06);
}

.pcard__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 31, 56, .72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.pcat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
}

.pcard__body {
  padding: 20px 22px 24px;
}

.pcard__body h4 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pcard__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ptags span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-c);
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ============================================================
   PRICING (3 col)
   ============================================================ */
.price3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.prcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: var(--t);
}

.prcard:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.prcard--feat {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 48px rgba(11, 60, 109, .3);
  transform: translateY(-8px);
}

.prcard--feat:hover {
  transform: translateY(-14px);
}

.prcard--feat h3 {
  color: #fff;
}

.prcard--feat strong {
  color: #fff;
}

.prcard--feat span {
  color: rgba(255, 255, 255, .6);
}

.prcard--feat .prlist li {
  color: rgba(255, 255, 255, .85);
}

.prcard--feat .prlist li i {
  color: #4cef7e;
}

.prcard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.prcard__head {
  margin-bottom: 24px;
}

.prcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-c);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}

.prcard--feat .prcard__ico {
  background: rgba(255, 255, 255, .15);
  color: #7bb8ff;
}

.prcard h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.prcard__price {
  margin-top: 12px;
}

.prcard__price span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.prcard__price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.prlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}

.prlist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}

.prlist li i {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 28px;
}

.price-note i {
  color: var(--blue);
}

.price-note a {
  color: var(--blue);
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .25s;
}

.faq__q:hover {
  color: var(--blue);
}

.faq__q[aria-expanded="true"] {
  color: var(--blue);
}

.faq__ico {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq__q[aria-expanded="true"] .faq__ico {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq__a.open {
  max-height: 300px;
}

.faq__a p {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(105deg, var(--navy-dp) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: 64px 0;
}

.cta-strip__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__in h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
}

.cta-strip__in p {
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
}

.cta-strip__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .wrap {
    padding: 0 28px;
  }

  .hero-pg__stats {
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .cards3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
  .sec {
    padding: 64px 0;
  }

  .wrap {
    padding: 0 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .img-badge {
    right: 0;
    bottom: -14px;
  }

  .prcard--feat {
    transform: none;
  }

  .price3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }

  .sec {
    padding: 52px 0;
  }

  .hero-pg {
    min-height: 100svh;
  }

  .hero-pg__content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-pg__content p {
    font-size: .95rem;
  }

  .hero-pg__btns {
    flex-direction: column;
  }

  .hero-pg__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .hero-pg__stats {
    flex-wrap: wrap;
    margin: 0 -20px;
    padding: 16px 20px;
  }

  .hstat {
    flex: 1 1 40%;
    min-width: 100px;
  }

  .hstat-sep {
    display: none;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .price3 {
    grid-template-columns: 1fr;
  }

  .port2 {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    padding: 48px 0;
  }

  .cta-strip__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-strip__btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .two-col--top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 576px
   ============================================================ */
@media (max-width: 576px) {
  .feat4 {
    grid-template-columns: 1fr;
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-pills {
    gap: 8px;
  }

  .tpill {
    padding: 8px 12px;
  }

  .tpill img {
    width: 22px;
    height: 22px;
  }

  .tpill span {
    font-size: 12px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .wrap {
    padding: 0 14px;
  }

  .hero-pg__content h1 {
    font-size: 1.55rem;
  }

  .bc a,
  .bc span {
    font-size: 12px;
  }

  .ind6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sec-head {
    margin-bottom: 36px;
  }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.pg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #071f38;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}

.pg-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pg-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: ldFadeIn .4s ease;
}

@keyframes ldFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pg-loader__spinner {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-spin-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #1A73E8;
  border-radius: 50%;
  animation: pgSpin 1s linear infinite;
}

.pg-spin-ring--2 {
  inset: 10px;
  border-top-color: transparent;
  border-right-color: #4a9aff;
  animation-duration: .7s;
  animation-direction: reverse;
}

@keyframes pgSpin {
  to {
    transform: rotate(360deg);
  }
}

.pg-loader__center {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1A73E8;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(26, 115, 232, .5);
}

.pg-loader__brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.pg-loader__brand em {
  font-style: normal;
  color: #4a9aff;
}

.pg-loader__text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* ============================================================
   TECH TICKER SLIDER
   ============================================================ */
.tk-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 0;
}

.tk-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.tk-track--fwd {
  animation: tkFwd 33s linear infinite;
}

.tk-track--rev {
  animation: tkRev 28s linear infinite;
}

.tk-wrap:hover .tk-track {
  animation-play-state: paused;
}

@keyframes tkFwd {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes tkRev {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.tk-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 104px;
  height: 104px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 10px;
  flex-shrink: 0;
  transition: all .3s ease;
  cursor: default;
}

.tk-card:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.tk-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform .3s;
}

.tk-card:hover img {
  transform: scale(1.12);
}

.tk-card span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}

.tk-card--alt {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
}

@media (max-width: 768px) {
  .tk-card {
    min-width: 86px;
    height: 88px;
    border-radius: 10px;
  }

  .tk-card img {
    width: 34px;
    height: 34px;
  }

  .tk-card span {
    font-size: 10.5px;
  }

  .tk-track {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .tk-card {
    min-width: 74px;
    height: 78px;
  }

  .tk-card img {
    width: 28px;
    height: 28px;
  }

  .tk-track {
    gap: 8px;
  }
}







/* ============================================================
   WEBSITE DEVELOPMENT PAGE — Additional Styles
   Add this to your existing style.css
   ============================================================ */

/* --- Inner Page Hero --- */
.hero-pg {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-pg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pg__bg img {
  width: 100%;
  height: 82%;
  object-fit: cover;
  object-position: center;
}

.hero-pg__overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(7 31 56 / 23%) 0%, rgb(11 60 109 / 28%) 55%, rgb(7 31 56 / 38%) 100%);
}

.hero-pg__inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bc a,
.bc span {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  transition: color .25s;
}

.bc a:hover {
  color: #fff;
}

.bc__sep {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.bc span {
  color: rgba(255, 255, 255, .9);
}

/* Hero Content */
.hero-pg__content {
  max-width: 800px;
  padding-bottom: 48px;
}

.hero-pg__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-pg__accent {
  color: #7bb8ff;
}

.hero-pg__content p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-pg__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-pg__stats {
  display: flex;
  align-items: center;
background: rgb(10 35 74);
backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 5px 40px;
  margin: 0 -40px;
}

.hstat {
  flex: 1;
  text-align: center;
}

.hstat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.hstat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hstat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* --- Section Styles --- */
.sec {
  padding: 80px 0;
}

.sec--white {
  background: var(--white);
}

.sec--light {
  background: var(--bg);
}

.sec--navy {
  background: var(--navy-deep);
}

/* Section Header */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.sec-head p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* Tag Pill */
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.ptag--light {
  background: rgba(255, 255, 255, .12);
  color: #7bb8ff;
  border-color: rgba(255, 255, 255, .25);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col--top {
  align-items: start;
}

.two-col__img {
  min-width: 0;
}

.two-col__txt {
  min-width: 0;
}

.two-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.two-col p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Image Frame */
.img-frame {
  position: relative;
}

.img-frame img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, .4);
}

.img-badge i {
  font-size: 1.6rem;
}

.img-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
}

.img-badge span {
  font-size: 12px;
  opacity: .8;
}

/* Checklist */
.chklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 24px 0 32px;
}

.chklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.chklist li i {
  color: var(--success);
  font-size: 17px;
  flex-shrink: 0;
}

/* --- Service Cards (3 col) --- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.scard__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--t);
}

.scard:hover .scard__icon {
  background: currentColor;
}

.scard:hover .scard__icon i {
  color: #fff;
}

.scard h3 {
  font-size: 1.05rem;
  color: var(--text);
}

.scard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.scard__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.scard__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.scard__list li i {
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
}

/* --- Process Grid (3 col) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pstep {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  margin-top:0px;
}

.pstep:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.pstep__num {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
}

.pstep__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: 8px 0 14px;
  transition: var(--t);
}

.pstep:hover .pstep__icon {
  background: var(--blue);
  color: #fff;
}

.pstep h4 {
  font-size: 1rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pstep p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.pstep__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

/* --- Tech Stack --- */
.tech-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tg h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg h5 i {
  color: #7bb8ff;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tpill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--t);
}

.tpill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.tpill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tpill span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* --- Features (4 col) --- */
.feat4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: var(--t);
}

.fcard:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.fcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--t);
}

.fcard:hover .fcard__ico {
  background: var(--blue);
  color: #fff;
}

.fcard h4 {
  font-size: .95rem;
  margin-bottom: 9px;
  color: var(--text);
}

.fcard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Portfolio (2 col) --- */
.port2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(11, 60, 109, .08);
  transition: var(--t);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.pcard__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.pcard:hover .pcard__img img {
  transform: scale(1.06);
}

.pcard__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 31, 56, .72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.pcat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
}

.pcard__body {
  padding: 20px 22px 24px;
}

.pcard__body h4 {
  font-size: 1.05rem;
  margin-bottom: 9px;
  color: var(--text);
}

.pcard__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ptags span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-card);
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* --- Pricing (3 col) --- */
.price3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.prcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: var(--t);
}

.prcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.prcard--feat {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 16px 48px rgba(11, 60, 109, .3);
  transform: translateY(-8px);
}

.prcard--feat:hover {
  transform: translateY(-14px);
}

.prcard--feat h3 {
  color: #fff;
}

.prcard--feat strong {
  color: #fff;
}

.prcard--feat span {
  color: rgba(255, 255, 255, .6);
}

.prcard--feat .prlist li {
  color: rgba(255, 255, 255, .85);
}

.prcard--feat .prlist li i {
  color: #4cef7e;
}

.prcard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.prcard__head {
  margin-bottom: 24px;
}

.prcard__ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}

.prcard--feat .prcard__ico {
  background: rgba(255, 255, 255, .15);
  color: #7bb8ff;
}

.prcard h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.prcard__price {
  margin-top: 12px;
}

.prcard__price span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.prcard__price strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.prlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}

.prlist li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}

.prlist li i {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 28px;
}

.price-note i {
  color: var(--blue);
}

.price-note a {
  color: var(--blue);
  font-weight: 600;
}

/* --- FAQ Accordion --- */
.faq {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .25s;
}

.faq__q:hover {
  color: var(--blue);
}

.faq__q[aria-expanded="true"] {
  color: var(--blue);
}

.faq__ico {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq__q[aria-expanded="true"] .faq__ico {
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq__a.open {
  max-height: 300px;
}

.faq__a p {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(105deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  padding: 64px 0;
}

.cta-strip__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__in h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
}

.cta-strip__in p {
  font-size: 15px;
  color: rgba(255, 255, 255, .68);
}

.cta-strip__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* --- Contact Section --- */
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.contact__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact__item span {
  font-size: 14px;
  color: var(--muted);
}

.contact__item a {
  color: var(--blue);
  transition: color .25s;
}

.contact__item a:hover {
  color: var(--blue-dark);
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
    box-shadow:10px 10px 5px #c1c1c1;

}

.contact__form h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field label i {
  color: var(--blue);
  font-size: 11px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--t);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b4c4d4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.ferr {
  font-size: 11.5px;
  color: var(--error);
  display: none;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--error);
}

.form-field.has-error .ferr {
  display: block;
}

.form-ok {
  display: none;
  align-items: center;
  gap: 9px;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
  color: #1a6e36;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 12px;
}

.form-ok.show {
  display: flex;
}

.form-ok i {
  font-size: 17px;
}

/* --- Page Loader --- */
.pg-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}

.pg-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pg-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: ldFadeIn .4s ease;
}

@keyframes ldFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pg-loader__spinner {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-spin-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: pgSpin 1s linear infinite;
}

.pg-spin-ring--2 {
  inset: 10px;
  border-top-color: transparent;
  border-right-color: var(--blue-light);
  animation-duration: .7s;
  animation-direction: reverse;
}

@keyframes pgSpin {
  to {
    transform: rotate(360deg);
  }
}

.pg-loader__center {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(26, 115, 232, .5);
}

.pg-loader__brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.pg-loader__brand em {
  font-style: normal;
  color: var(--blue-light);
}

.pg-loader__text {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

/* --- Back to Top (Inner Page) --- */
#pgBtt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 996;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(26, 115, 232, .4);
  transition: var(--t);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#pgBtt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#pgBtt:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* --- Animation System (Inner Pages) --- */
.anim {
  opacity: 1;
  transform: none;
}

.anim.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0s);
}

.anim.will-animate.anim--left {
  transform: translateX(-36px);
}

.anim.will-animate.anim--right {
  transform: translateX(36px);
}

.anim.will-animate.show {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — Website Development Page
   ============================================================ */

@media (max-width: 1100px) {
  .wrap {
    padding: 0 28px;
  }

  .hero-pg__stats {
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .cards3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    gap: 48px;
  }
}

@media (max-width: 992px) {
  .sec {
    padding: 64px 0;
  }

  .wrap {
    padding: 0 24px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .img-badge {
    right: 0;
    bottom: -14px;
  }

  .prcard--feat {
    transform: none;
  }

  .price3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }

  .sec {
    padding: 52px 0;
  }

  .hero-pg {
    min-height: 100svh;
  }

  .hero-pg__content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-pg__content p {
    font-size: .95rem;
  }

  .hero-pg__btns {
    flex-direction: column;
  }

  .hero-pg__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .hero-pg__stats {
    flex-wrap: wrap;
    margin: 0 -20px;
    padding: 16px 20px;
  }

  .hstat {
    flex: 1 1 40%;
    min-width: 100px;
  }

  .hstat-sep {
    display: none;
  }

  .cards3 {
    grid-template-columns: 1fr;
  }

  .feat4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .price3 {
    grid-template-columns: 1fr;
  }

  .port2 {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    padding: 48px 0;
  }

  .cta-strip__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-strip__btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip__btns .pbtn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  .feat4 {
    grid-template-columns: 1fr;
  }

  .tech-pills {
    gap: 8px;
  }

  .tpill {
    padding: 8px 12px;
  }

  .tpill img {
    width: 22px;
    height: 22px;
  }

  .tpill span {
    font-size: 12px;
  }

  .contact__form {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 14px;
  }

  .hero-pg__content h1 {
    font-size: 1.55rem;
  }

  .bc a,
  .bc span {
    font-size: 12px;
  }

  .sec-head {
    margin-bottom: 36px;
  }

  .img-badge {
    padding: 12px 16px;
    bottom: -10px;
  }

  .img-badge strong {
    font-size: .8rem;
  }
}

/* ============================================================
   CLOUD SOLUTIONS PAGE — Additional Styles
   Add this to your existing style.css
   ============================================================ */

/* --- Cloud Providers Section --- */
.cloud-providers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.cloud-provider {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}

.cloud-provider:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.cloud-provider__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
}

.cloud-provider__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.cloud-provider h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.cloud-provider p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cloud-provider__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.cloud-provider__badges .badge {
  background: rgba(26, 115, 232, .2);
  color: #7bb8ff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26, 115, 232, .4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .cloud-providers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cloud-provider__logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .cloud-providers {
    grid-template-columns: 1fr;
  }

  .cloud-provider {
    padding: 28px 20px;
  }

  .cloud-provider__logo {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .cloud-provider h4 {
    font-size: 1.05rem;
  }

  .cloud-provider p {
    font-size: 13px;
  }
}

/* ============================================================
   CRM SOLUTIONS PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === CRM PLATFORMS SECTION === */
.crm-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.crm-platform {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}

.crm-platform:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.crm-platform__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
}

.crm-platform__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.crm-platform h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.crm-platform p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.crm-platform__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.crm-platform__badges .badge {
  background: rgba(26, 115, 232, .2);
  color: #7bb8ff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26, 115, 232, .4);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .crm-platforms {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .crm-platforms {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .crm-platform__logo {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .crm-platforms {
    gap: 16px;
  }

  .crm-platform {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .crm-platforms {
    grid-template-columns: 1fr;
  }

  .crm-platform__logo {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
    padding: 10px;
  }

  .crm-platform h4 {
    font-size: 1.05rem;
  }

  .crm-platform p {
    font-size: 13px;
  }

  .crm-platform__badges .badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .crm-platform {
    padding: 24px 16px;
  }

  .crm-platform__logo {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   E-COMMERCE SERVICES PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === E-COMMERCE PLATFORMS SECTION === */
.ecom-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.ecom-platform {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}

.ecom-platform:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.ecom-platform__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
}

.ecom-platform__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.ecom-platform h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.ecom-platform p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ecom-platform__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.ecom-platform__badges .badge {
  background: rgba(26, 115, 232, .2);
  color: #7bb8ff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26, 115, 232, .4);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .ecom-platforms {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .ecom-platforms {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ecom-platform__logo {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .ecom-platforms {
    gap: 16px;
  }

  .ecom-platform {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .ecom-platforms {
    grid-template-columns: 1fr;
  }

  .ecom-platform__logo {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
    padding: 10px;
  }

  .ecom-platform h4 {
    font-size: 1.05rem;
  }

  .ecom-platform p {
    font-size: 13px;
  }

  .ecom-platform__badges .badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .ecom-platform {
    padding: 24px 16px;
  }

  .ecom-platform__logo {
    width: 60px;
    height: 60px;
  }
}

/* ============================================================
   SOFTWARE TESTING PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === TESTING TOOLS SECTION === */
.testing-tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testing-tool {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}

.testing-tool:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.testing-tool__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 16px;
}

.testing-tool__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.testing-tool h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.testing-tool p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testing-tool__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.testing-tool__badges .badge {
  background: rgba(26, 115, 232, .2);
  color: #7bb8ff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26, 115, 232, .4);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .testing-tools {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .testing-tools {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testing-tool__logo {
    width: 80px;
    height: 80px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .testing-tools {
    gap: 16px;
  }

  .testing-tool {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .testing-tools {
    grid-template-columns: 1fr;
  }

  .testing-tool__logo {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
    padding: 10px;
  }

  .testing-tool h4 {
    font-size: 1.05rem;
  }

  .testing-tool p {
    font-size: 13px;
  }

  .testing-tool__badges .badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .testing-tool {
    padding: 24px 16px;
  }

  .testing-tool__logo {
    width: 60px;
    height: 60px;
  }
}
/* ============================================================
   CUSTOM SOFTWARE DEVELOPMENT PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === TECH STACK SECTION (Already in Website Dev CSS) === */
/* Included here for completeness if not present */
.tech-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tg h5 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tg h5 i {
  color: #7bb8ff;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tpill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--t);
}

.tpill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.tpill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tpill span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .tech-groups {
    gap: 28px;
  }

  .tg h5 {
    font-size: 12px;
  }

  .tech-pills {
    gap: 8px;
  }

  .tpill {
    padding: 8px 12px;
  }

  .tpill img {
    width: 22px;
    height: 22px;
  }

  .tpill span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .tpill {
    padding: 6px 10px;
  }

  .tpill img {
    width: 18px;
    height: 18px;
  }

  .tpill span {
    font-size: 11px;
  }
}



/* ============================================================
   MOBILE RECHARGE SERVICES PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === OPERATOR GRID SECTION === */
.operator-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.operator-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.operator-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
}

.operator-card__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 12px;
}

.operator-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.operator-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .operator-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .operator-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .operator-card {
    padding: 20px 12px;
  }

  .operator-card__logo {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .operator-card h4 {
    font-size: .9rem;
  }
}

@media (max-width: 576px) {
  .operator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operator-card__logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .operator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .operator-card {
    padding: 16px 10px;
  }

  .operator-card__logo {
    width: 45px;
    height: 45px;
  }

  .operator-card h4 {
    font-size: .85rem;
  }
}



/* ============================================================
   DTH RECHARGE SERVICES PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === DTH OPERATOR GRID SECTION === */
.dth-operator-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.dth-operator-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dth-operator-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
}

.dth-operator-card__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 12px;
}

.dth-operator-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.dth-operator-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin: 4px 0;
}

.dth-operator-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .dth-operator-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .dth-operator-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .dth-operator-card {
    padding: 20px 12px;
  }

  .dth-operator-card__logo {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .dth-operator-card h4 {
    font-size: .9rem;
  }

  .dth-operator-card p {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .dth-operator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dth-operator-card__logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .dth-operator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dth-operator-card {
    padding: 16px 10px;
  }

  .dth-operator-card__logo {
    width: 45px;
    height: 45px;
  }

  .dth-operator-card h4 {
    font-size: .85rem;
  }

  .dth-operator-card p {
    font-size: 10px;
  }
}


/* ============================================================
   BBPS SERVICES PAGE — COMPLETE CSS
   Add this to your existing style.css
   ============================================================ */

/* === BILL CATEGORY GRID SECTION === */
.bill-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bill-category-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bill-category-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
}

.bill-category-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 115, 232, .2);
  border-radius: 12px;
  color: #7bb8ff;
  font-size: 28px;
}

.bill-category-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin: 4px 0;
}

.bill-category-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .bill-category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .bill-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bill-category-card {
    padding: 24px 16px;
  }

  .bill-category-card__icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .bill-category-card h4 {
    font-size: .95rem;
  }

  .bill-category-card p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .bill-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bill-category-card {
    padding: 20px 14px;
  }

  .bill-category-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .bill-category-card h4 {
    font-size: .9rem;
  }

  .bill-category-card p {
    font-size: 10px;
  }
}
/* ============================================================
   BILLERS INFINITE CAROUSEL - 2 ROWS OPPOSITE DIRECTIONS
   ============================================================ */

.billers-carousel-wrap {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.billers-carousel {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

/* Row 1: Left to Right */
.billers-carousel--fwd {
  animation: billersScrollFwd 40s linear infinite;
}

/* Row 2: Right to Left */
.billers-carousel--rev {
  animation: billersScrollRev 35s linear infinite;
}

/* Pause on hover */
.billers-carousel-wrap:hover .billers-carousel {
  animation-play-state: paused;
}

@keyframes billersScrollFwd {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes billersScrollRev {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.biller-logo-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  min-width: 140px;
  transition: var(--t);
}

.biller-logo-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
}

.biller-logo-card i {
  font-size: 40px;
  color: #7bb8ff;
  transition: var(--t);
}

.biller-logo-card:hover i {
  color: #fff;
  transform: scale(1.1);
}

.biller-logo-card span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  text-align: center;
  white-space: nowrap;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .billers-carousel {
    gap: 20px;
  }

  .biller-logo-card {
    min-width: 110px;
    padding: 18px 14px;
  }

  .biller-logo-card i {
    font-size: 32px;
  }

  .biller-logo-card span {
    font-size: 11px;
  }

  .billers-carousel--fwd {
    animation-duration: 30s;
  }

  .billers-carousel--rev {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .billers-carousel {
    gap: 16px;
  }

  .biller-logo-card {
    min-width: 90px;
    padding: 14px 12px;
  }

  .biller-logo-card i {
    font-size: 28px;
  }

  .biller-logo-card span {
    font-size: 10px;
  }

  .billers-carousel--fwd {
    animation-duration: 25s;
  }

  .billers-carousel--rev {
    animation-duration: 20s;
  }
}

/* ============================================================
   AEPS SERVICES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === BANK GRID SECTION === */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.bank-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bank-card:hover {
  background: var(--white);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bank-card i {
  font-size: 32px;
  color: var(--blue);
  transition: var(--t);
}

.bank-card:hover i {
  color: var(--blue-dark);
  transform: scale(1.1);
}

.bank-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .bank-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .bank-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .bank-card {
    padding: 16px 12px;
  }

  .bank-card i {
    font-size: 28px;
  }

  .bank-card span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bank-card {
    padding: 14px 10px;
  }

  .bank-card i {
    font-size: 24px;
  }

  .bank-card span {
    font-size: 10px;
  }
}


/* ============================================================
   PAN CARD SERVICES PAGE — IMAGE CARDS CSS
   ============================================================ */

/* === SERVICE CARDS WITH IMAGES === */
.scard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.scard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.scard__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.scard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.scard:hover .scard__img img {
  transform: scale(1.1);
}

.scard__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 60, 109, .3) 100%);
}

.scard__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--t);
  margin: 20px 24px 0;
}

.scard:hover .scard__icon {
  background: currentColor;
}

.scard:hover .scard__icon i {
  color: #fff;
}

.scard h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 16px 24px 8px;
}

.scard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 24px 16px;
}

.scard__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 24px 24px;
}

.scard__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.scard__list li i {
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
}

/* === PROCESS STEPS WITH IMAGES === */
.pstep {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 285px;
  box-shadow: 10px 10px 5px #e6e6e6;
}

.pstep:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.pstep__num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
  z-index: 2;
}

.pstep__img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.pstep__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.pstep:hover .pstep__img img {
  transform: scale(1.1);
}

.pstep__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 60, 109, .4) 100%);
}

.pstep__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: -26px auto 14px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  transition: var(--t);
  margin-top:0px;
}

.pstep:hover .pstep__icon {
  background: var(--blue);
  color: #fff;
}

.pstep h4 {
  font-size: 1rem;
  margin: 0 24px 9px;
  color: var(--text);
  text-align: center;
}

.pstep p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 24px 14px;
  text-align: center;
}

.pstep__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: center;
  margin-bottom: 20px;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .scard__img {
    height: 140px;
  }

  .pstep__img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .scard__img {
    height: 160px;
  }

  .pstep__img {
    height: 140px;
  }

  .scard h3 {
    font-size: 1rem;
    margin: 14px 20px 8px;
  }

  .scard p {
    font-size: 13.5px;
    margin: 0 20px 14px;
  }

  .scard__list {
    padding: 0 20px 20px;
  }

  .pstep h4 {
    margin: 0 20px 9px;
  }

  .pstep p {
    margin: 0 20px 14px;
  }
}

@media (max-width: 480px) {
  .scard__img {
    height: 140px;
  }

  .pstep__img {
    height: 120px;
  }

  .scard__icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin: 16px 18px 0;
  }

  .pstep__icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin: -23px auto 12px;
  }

  .scard h3 {
    font-size: .95rem;
    margin: 12px 18px 6px;
  }

  .scard p {
    font-size: 13px;
    margin: 0 18px 12px;
  }

  .scard__list {
    padding: 0 18px 18px;
    gap: 6px;
  }

  .scard__list li {
    font-size: 12.5px;
  }

  .pstep h4 {
    font-size: .95rem;
    margin: 0 18px 8px;
  }

  .pstep p {
    font-size: 12.5px;
    margin: 0 18px 12px;
  }
}



/* ============================================================
   ABOUT US PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === MISSION & VISION GRID === */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 10px 10px 5px #dadada;
  transition: var(--t);
}

.mv-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.mv-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--t);
}

.mv-card:hover .mv-card__icon {
  background: var(--blue);
  color: #fff;
}

.mv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.mv-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mv-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mv-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.mv-card__list li i {
  color: var(--success);
  font-size: 14px;
}

/* === ACHIEVEMENTS GRID === */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.achievement-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-4px);
}

.achievement-card__number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #7bb8ff;
  line-height: 1;
  margin-bottom: 8px;
}

.achievement-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.achievement-card__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 48px;
  color: rgba(255, 255, 255, .05);
}

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.team-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.team-card__img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.team-card:hover .team-card__img img {
  transform: scale(1.08);
}

.team-card__info {
  padding: 20px;
  text-align: center;
}

.team-card__info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.team-card__info span {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.team-card__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-card__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--t);
}

.team-card__social a:hover {
  background: var(--blue);
  color: #fff;
}

/* === CLIENTS GRID === */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.client-logo {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.client-logo:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.client-logo img {
  max-width: 100%;
  height: auto;
  /*filter: grayscale(100%);*/
  opacity: .6;
  transition: var(--t);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 20px 0;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
}

.timeline-item__year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 100px;
  z-index: 2;
}

.timeline-item__content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  width: calc(100% - 40px);
  margin-right: 40px;
  transition: var(--t);
}

.timeline-item:nth-child(even) .timeline-item__content {
  margin-right: 0;
  margin-left: 40px;
}

.timeline-item__content:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.timeline-item__content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.timeline-item__content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .timeline-item__year {
    left: 20px;
  }

  .timeline-item__content {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .timeline-item:nth-child(even) .timeline-item__content {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === COUNTER ANIMATION === */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-card__number {
  animation: countUp .6s var(--ease) forwards;
}



/* ============================================================
   ABOUT US PAGE — UPDATED CSS WITH IMAGES
   Add this to your existing style.css
   ============================================================ */

/* === MISSION & VISION CARD IMAGES === */
.mv-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--r);
  margin-bottom: -36px;
  position: relative;
  z-index: 1;
}

.mv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.mv-card:hover .mv-card__img img {
  transform: scale(1.1);
}

.mv-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--white) 100%);
}

.mv-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--t);
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
}

.mv-card:hover .mv-card__icon {
  background: var(--blue);
  color: #fff;
}

/* === FEATURE CARD IMAGES (Why Choose Us) === */
.fcard__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: var(--r);
  margin-bottom: -24px;
  position: relative;
  z-index: 1;
  
}

.fcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.fcard:hover .fcard__img img {
  transform: scale(1.1);
}

.fcard__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--white) 100%);
}

.fcard__ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  transition: var(--t);
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
}

.fcard:hover .fcard__ico {
  background: var(--blue);
  color: #fff;
}

.fcard h4 {
  font-size: 1rem;
  margin-bottom: 9px;
  position: relative;
  z-index: 2;
}

.fcard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .mv-card__img {
    height: 160px;
  }

  .fcard__img {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .mv-card__img {
    height: 180px;
    margin-bottom: -40px;
  }

  .fcard__img {
    height: 150px;
    margin-bottom: -28px;
  }
}

@media (max-width: 480px) {
  .mv-card__img {
    height: 160px;
  }

  .fcard__img {
    height: 130px;
  }
}





/* ============================================================
   FEATURES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === FEATURES INTRO GRID === */
.features-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.fi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--t);
  text-align: center;
  box-shadow: 10px 10px 5px #dadada;
}

.fi-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.fi-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.fi-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.fi-card:hover .fi-card__img img {
  transform: scale(1.1);
}

.fi-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--white) 100%);
}

.fi-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: -32px auto 16px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  transition: var(--t);
}

.fi-card:hover .fi-card__icon {
  background: var(--blue);
  color: #fff;
}

.fi-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding: 0 16px;
}

.fi-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 16px 20px;
}

/* === CORE FEATURES GRID === */
.core-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cf-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  box-shadow: 10px 10px 5px #dadada;
}

.cf-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.cf-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.cf-card:hover .cf-card__img img {
  transform: scale(1.1);
}

.cf-card__overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(26, 115, 232, .4);
  transition: var(--t);
}

.cf-card:hover .cf-card__overlay {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(26, 115, 232, .5);
}

.cf-card__body {
  padding: 24px;
}

.cf-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cf-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cf-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cf-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.cf-card__list li i {
  color: var(--success);
  font-size: 14px;
}

/* === ADVANCED FEATURES GRID === */
.advanced-features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.af-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.af-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.af-card--reverse {
  direction: rtl;
}

.af-card--reverse > * {
  direction: ltr;
}

.af-card__left {
  position: relative;
  overflow: hidden;
}

.af-card__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.af-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.af-card:hover .af-card__img img {
  transform: scale(1.08);
}

.af-card__right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.af-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--t);
}

.af-card:hover .af-card__icon {
  background: var(--blue);
  color: #fff;
}

.af-card__right h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.af-card__right p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.af-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.af-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.af-card__list li i {
  color: var(--success);
  font-size: 14px;
}

/* === COMPARISON TABLE === */
.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--blue);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-card);
}

.comparison-table tr:hover {
  background: var(--bg);
}

.comparison-table td i {
  margin-right: 6px;
}

.comparison-table .fa-circle-check {
  color: var(--success);
}

.comparison-table .fa-circle-xmark {
  color: var(--error);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .features-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-card {
    grid-template-columns: 1fr;
  }

  .af-card--reverse {
    direction: ltr;
  }

  .af-card__img {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .features-intro-grid {
    grid-template-columns: 1fr;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
  }

  .af-card__right {
    padding: 28px 20px;
  }

  .af-card__img {
    min-height: 200px;
  }

  .af-card__list {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .fi-card__img {
    height: 140px;
  }

  .fi-card__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin: -28px auto 14px;
  }

  .cf-card__img {
    height: 180px;
  }

  .cf-card__overlay {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ============================================================
   FEATURES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === FEATURES INTRO GRID === */
.features-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.fi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--t);
  text-align: center;
}

.fi-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.fi-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.fi-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.fi-card:hover .fi-card__img img {
  transform: scale(1.1);
}

.fi-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--white) 100%);
}

.fi-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: -32px auto 16px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  transition: var(--t);
}

.fi-card:hover .fi-card__icon {
  background: var(--blue);
  color: #fff;
}

.fi-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding: 0 16px;
}

.fi-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 16px 20px;
}

/* === CORE FEATURES GRID === */
.core-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cf-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.cf-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.cf-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.cf-card:hover .cf-card__img img {
  transform: scale(1.1);
}

.cf-card__overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(26, 115, 232, .4);
  transition: var(--t);
}

.cf-card:hover .cf-card__overlay {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(26, 115, 232, .5);
}

.cf-card__body {
  padding: 24px;
}

.cf-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cf-card__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cf-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cf-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.cf-card__list li i {
  color: var(--success);
  font-size: 14px;
}

/* === ADVANCED FEATURES GRID === */
.advanced-features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.af-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.af-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.af-card--reverse {
  direction: rtl;
}

.af-card--reverse > * {
  direction: ltr;
}

.af-card__left {
  position: relative;
  overflow: hidden;
}

.af-card__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.af-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.af-card:hover .af-card__img img {
  transform: scale(1.08);
}

.af-card__right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.af-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--t);
}

.af-card:hover .af-card__icon {
  background: var(--blue);
  color: #fff;
}

.af-card__right h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.af-card__right p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.af-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.af-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.af-card__list li i {
  color: var(--success);
  font-size: 14px;
}

/* === COMPARISON TABLE === */
.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--blue);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-card);
}

.comparison-table tr:hover {
  background: var(--bg);
}

.comparison-table td i {
  margin-right: 6px;
}

.comparison-table .fa-circle-check {
  color: var(--success);
}

.comparison-table .fa-circle-xmark {
  color: var(--error);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .features-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-card {
    grid-template-columns: 1fr;
  }

  .af-card--reverse {
    direction: ltr;
  }

  .af-card__img {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .features-intro-grid {
    grid-template-columns: 1fr;
  }

  .core-features-grid {
    grid-template-columns: 1fr;
  }

  .af-card__right {
    padding: 28px 20px;
  }

  .af-card__img {
    min-height: 200px;
  }

  .af-card__list {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .fi-card__img {
    height: 140px;
  }

  .fi-card__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin: -28px auto 14px;
  }

  .cf-card__img {
    height: 180px;
  }

  .cf-card__overlay {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ============================================================
   WHY US PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === ADVANTAGES GRID === */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.adv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  box-shadow: 10px 10px 5px #dadada;
}

.adv-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.adv-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.adv-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.adv-card:hover .adv-card__img img {
  transform: scale(1.1);
}

.adv-card__content {
  padding: 24px;
}

.adv-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--t);
}

.adv-card:hover .adv-card__icon {
  background: var(--blue);
  color: #fff;
}

.adv-card__content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.adv-card__content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.adv-card__stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.adv-stat {
  text-align: center;
}

.adv-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.adv-stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* === WHY DETAILED GRID === */
.why-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.wd-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  position: relative;
  box-shadow: 10px 10px 5px #dadada;
}

.wd-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.wd-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(26, 115, 232, .1);
  z-index: 1;
}

.wd-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.wd-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.wd-card:hover .wd-card__img img {
  transform: scale(1.08);
}

.wd-card__content {
  padding: 28px;
}

.wd-card__content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.wd-card__content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wd-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.wd-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.wd-card__list li i {
  color: var(--success);
  font-size: 15px;
}

/* === DIFFERENTIATORS GRID === */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.diff-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--t);
  box-shadow: 10px 10px 5px #dadada;
}

.diff-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.diff-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: var(--t);
}

.diff-card:hover .diff-card__icon {
  background: var(--blue);
  color: #fff;
}

.diff-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.diff-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.diff-card__metric {
  display: flex;
  justify-content: center;
}

.metric-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.metric-circle svg {
  transform: rotate(-90deg);
  width: 80px;
  height: 80px;
}

.metric-circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
}

/* === COMPARISON BOX === */
.comparison-box {
  overflow-x: auto;
  margin-top: 40px;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r-lg);
  padding: 4px;
}

.comparison-box table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.comparison-box th {
  background: var(--blue);
  color: #fff;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.comparison-box th.highlight {
  background: var(--navy);
}

.comparison-box td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.comparison-box td.highlight {
  background: var(--bg-card);
  font-weight: 600;
  color: var(--blue);
}

.comparison-box tr:last-child td {
  border-bottom: none;
}

.comparison-box tr:nth-child(even) td {
  background: var(--bg);
}

.comparison-box tr:nth-child(even) td.highlight {
  background: var(--bg-card);
}

.comparison-box td i {
  margin-right: 8px;
}

.comparison-box .fa-circle-check {
  color: var(--success);
}

.comparison-box .fa-circle-xmark {
  color: var(--error);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-detailed-grid {
    grid-template-columns: 1fr;
  }

  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .comparison-box {
    overflow-x: auto;
  }

  .comparison-box table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .adv-card__img {
    height: 160px;
  }

  .wd-card__img {
    height: 200px;
  }

  .diff-card__icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .metric-circle {
    width: 70px;
    height: 70px;
  }

  .metric-circle svg {
    width: 70px;
    height: 70px;
  }
}


/* ============================================================
   CONTACT PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === CONTACT INFO GRID === */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ci-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  position: relative;
  box-shadow: 10px 10px 5px #dadada;
}

.ci-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.ci-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.ci-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.ci-card:hover .ci-card__img img {
  transform: scale(1.1);
}

.ci-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: -32px auto 16px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  transition: var(--t);
}

.ci-card:hover .ci-card__icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(26, 115, 232, .4);
}

.ci-card h3 {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 8px;
  color: var(--text);
}

.ci-card > p {
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
  margin-bottom: 16px;
}

.ci-card__detail {
  background: var(--bg-card);
  padding: 14px 20px;
  margin: 0 20px 16px;
  border-radius: var(--r);
  text-align: center;
}

.ci-card__detail strong {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.ci-card__detail span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ci-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  margin: 0 20px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--t);
}

.ci-card__link:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* === CONTACT FORM WRAPPER === */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  box-shadow: 10px 10px 5px #dadada;
  
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h2 {
  font-size: 1.5rem;
  margin: 12px 0;
}

.contact-form-header p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form .form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form .form-field label i {
  color: var(--blue);
  font-size: 11px;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--t);
  outline: none;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: #b4c4d4;
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
}

.contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .ferr {
  font-size: 11.5px;
  color: var(--error);
  display: none;
}

.contact-form .form-field.has-error input,
.contact-form .form-field.has-error textarea {
  border-color: var(--error);
}

.contact-form .form-field.has-error .ferr {
  display: block;
}

.contact-form .form-ok {
  display: none;
  align-items: center;
  gap: 9px;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
  color: #1a6e36;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 12px;
}

.contact-form .form-ok.show {
  display: flex;
}

.contact-form .form-ok i {
  font-size: 17px;
}

/* === CONTACT DETAILS BOX === */
.contact-details-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  box-shadow: 10px 10px 5px #dadada;
}

.contact-details-header {
  margin-bottom: 32px;
}

.contact-details-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-details-header p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--t);
}

.cd-item:hover .cd-item__icon {
  background: var(--blue);
  color: #fff;
}

.cd-item__content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.cd-item__content span {
  font-size: 14px;
  color: var(--muted);
}

/* === SOCIAL LINKS === */
.social-links {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.social-links h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--t);
}

.social-icon:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

/* === MAP CONTAINER === */
.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

/* === DIRECT CONTACT GRID === */
.direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.dc-card {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--t);
  box-shadow: 10px 10px 5px #373737;
}

.dc-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-6px);
}

.dc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26, 115, 232, .2);
  color: #7bb8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: var(--t);
}

.dc-card:hover .dc-card__icon {
  background: var(--blue);
  color: #fff;
}

.dc-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}

.dc-card > p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.dc-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .7);
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  transition: var(--t);
}

.dc-card__link:hover {
  background: var(--blue);
  color: #fff;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .direct-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box,
  .contact-details-box {
    padding: 28px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .direct-contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .ci-card__img {
    height: 140px;
  }

  .ci-card__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin: -28px auto 14px;
  }

  .cd-item__icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ============================================================
   GET IN TOUCH PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === GET IN TOUCH WRAPPER === */
.get-in-touch-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* === CONTACT FORM CONTAINER === */
.contact-form-container {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-header h2 {
  font-size: 1.6rem;
  margin: 12px 0;
}

.contact-form-header p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* === FORM STYLES === */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form .form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form .form-field label i {
  color: var(--blue);
  font-size: 11px;
}

.contact-form .form-field label .required {
  color: var(--error);
  margin-left: 2px;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--t);
  outline: none;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: #b4c4d4;
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
}

.contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .ferr {
  font-size: 11.5px;
  color: var(--error);
  display: none;
}

.contact-form .form-field.has-error input,
.contact-form .form-field.has-error select,
.contact-form .form-field.has-error textarea {
  border-color: var(--error);
}

.contact-form .form-field.has-error .ferr {
  display: block;
}

/* === CHECKBOX LABEL === */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--blue);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* === SUBMIT BUTTON === */
.btn-large {
  padding: 15px 28px;
  font-size: 15.5px;
  margin-top: 8px;
}

/* === FORM SUCCESS MESSAGE === */
.form-ok {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
  border-radius: var(--r);
  padding: 16px 20px;
  margin-top: 16px;
}

.form-ok.show {
  display: flex;
}

.form-ok i {
  font-size: 22px;
  color: #1a6e36;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-ok strong {
  display: block;
  font-size: 14.5px;
  color: #1a6e36;
  margin-bottom: 4px;
}

.form-ok p {
  font-size: 13.5px;
  color: #2d7a4a;
  margin: 0;
}

/* === CONTACT INFO CONTAINER === */
.contact-info-container {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-info-header {
  margin-bottom: 32px;
}

.contact-info-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-info-header p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* === CONTACT INFO LIST === */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--r);
  transition: var(--t);
}

.ci-item:hover {
  background: var(--bg);
  transform: translateX(4px);
}

.ci-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--t);
}

.ci-item:hover .ci-item__icon {
  transform: scale(1.1);
}

.ci-item__content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.ci-item__content a,
.ci-item__content span {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: var(--t);
}

.ci-item__content a:hover {
  color: var(--blue);
}

/* === SOCIAL SECTION === */
.social-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.social-section h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
  transition: var(--t);
}

.social-icon.facebook {
  background: #1877F2;
}

.social-icon.twitter {
  background: #1DA1F2;
}

.social-icon.linkedin {
  background: #0A66C2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
  background: #FF0000;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

/* === MAP SECTION === */
.map-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.map-section h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

/* === QUICK CONTACT === */
.quick-contact h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quick-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}

.qc-btn--call {
  background: var(--blue);
  color: #fff;
}

.qc-btn--call:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.qc-btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.qc-btn--whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
}

/* === WHY CONTACT US GRID === */
.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.wc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--t);
}

.wc-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.wc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: var(--t);
}

.wc-card:hover .wc-card__icon {
  background: var(--blue);
  color: #fff;
}

.wc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.wc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .get-in-touch-wrapper {
    grid-template-columns: 1fr;
  }

  .why-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-form-container,
  .contact-info-container {
    padding: 28px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 240px;
  }

  .quick-contact-btns {
    flex-direction: row;
  }

  .qc-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .contact-form-header h2 {
    font-size: 1.4rem;
  }

  .contact-info-header h3 {
    font-size: 1.3rem;
  }

  .ci-item {
    padding: 14px;
  }

  .ci-item__icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .btn-large {
    padding: 13px 24px;
    font-size: 14.5px;
  }
}




/* =============================================
   DEEVA PAYON GLOBAL PVT LTD — footer.css
   Footer & Back-to-Top Styles
   Yeh file style.css se alag hai.
   Har page mein include karo:
   <link rel="stylesheet" href="footer.css" />
   ============================================= */

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background:#071f38;
}

.footer-top {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
color: rgb(255 255 255);
line-height: 1.7;
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-logo .logo-main { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col ul a {
  font-size: 0.85rem;
 color: rgb(255 255 255);;
  transition: var(--transition);
  text-decoration: none;
}
.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-contact-list li {
  font-size: 0.85rem;
color: rgb(255 255 255);
display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact-list li i {
  color: var(--blue-300);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list li a {
color: rgb(255 255 255); 
transition: var(--transition);
  text-decoration: none;
}
.footer-contact-list li a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
color: rgb(255 255 255);}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,82,204,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,82,204,0.6);
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand       { grid-column: span 2; }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .footer-grid          { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand         { grid-column: span 1; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }
  .back-to-top          { bottom: 20px; right: 20px; }
}



/* ============================================================
   SERVICES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === SERVICES OVERVIEW GRID === */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.so-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}

.so-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.so-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.so-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.so-card:hover .so-card__img img {
  transform: scale(1.1);
}

.so-card__content {
  padding: 24px;
}

.so-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--t);
}

.so-card:hover .so-card__icon {
  background: var(--blue);
  color: #fff;
}

.so-card__content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.so-card__content > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.so-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.so-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.so-card__list li i {
  color: var(--success);
  font-size: 14px;
}

.so-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}

.so-card__link:hover {
  gap: 12px;
}

/* === SERVICE CATEGORY === */
.service-category {
  margin-top: 48px;
}

.service-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.service-category__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.service-category__header h3 {
  font-size: 1.4rem;
  color: var(--text);
}

.service-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.asc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-decoration: none;
  transition: var(--t);
  text-align: center;
}

.asc-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.asc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  transition: var(--t);
}

.asc-card:hover .asc-card__icon {
  background: var(--blue);
  color: #fff;
}

.asc-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.asc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* === WHY SERVICES GRID === */
.why-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ws-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--t);
}

.ws-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.ws-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: var(--t);
}

.ws-card:hover .ws-card__icon {
  background: var(--blue);
  color: #fff;
}

.ws-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.ws-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-category__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-category__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-services-grid {
    grid-template-columns: 1fr;
  }

  .service-category__header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-category__grid {
    grid-template-columns: 1fr;
  }

  .so-card__img {
    height: 160px;
  }

  .so-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
/* ============================================================
   ALL SERVICES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === SERVICE CATEGORY === */
.service-category {
  margin-top: 56px;
}

.service-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--blue);
}

.service-category__icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.service-category__header h3 {
  font-size: 1.5rem;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.service-category__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === ALL SERVICES CARD === */
.asc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.asc-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.asc-card__img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.asc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.asc-card:hover .asc-card__img img {
  transform: scale(1.1);
}

.asc-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin: -25px auto 12px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  transition: var(--t);
}

.asc-card:hover .asc-card__icon {
  background: var(--blue);
  color: #fff;
}

.asc-card h4 {
  font-size: 1.05rem;
  margin: 0 16px 8px;
  color: var(--text);
  text-align: center;
}

.asc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  padding: 0 16px 18px;
  flex-grow: 1;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .service-category__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-category__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-category__header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-category__grid {
    grid-template-columns: 1fr;
  }

  .asc-card__img {
    height: 130px;
  }

  .asc-card__icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
    margin: -23px auto 10px;
  }
}

/* ============================================================
   ALL SERVICES PAGE — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === CATEGORY SECTION === */
.category-section {
  margin-bottom: 64px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--border);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.category-icon--fintech {
  background: #10b981;
}

.category-icon--b2b {
  background: #8b5cf6;
}

.category-icon--hosting {
  background: #f59e0b;
}

.category-icon--marketing {
  background: #ec4899;
}

.category-title h2 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: var(--text);
}

.category-title p {
  font-size: 14.5px;
  color: var(--muted);
}

/* === SERVICES GRID LAYOUTS === */
.services-grid-7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === SERVICE CARD === */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-decoration: none;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--t);
}

.service-card:hover .service-card__icon {
  background: var(--blue);
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--t);
}

.service-card:hover .service-card__link {
  gap: 12px;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .services-grid-7,
  .services-grid-8 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-7,
  .services-grid-8,
  .services-grid-6,
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .category-title h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid-7,
  .services-grid-8,
  .services-grid-6,
  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px 18px;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 13px;
  }
}


/* ============================================================
   ALL SERVICES PAGE WITH IMAGES — ADDITIONAL CSS
   Add this to your existing style.css
   ============================================================ */

/* === CATEGORY SECTION === */
.category-section {
  margin-bottom: 64px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--border);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.category-icon--fintech {
  background: #10b981;
}

.category-icon--b2b {
  background: #8b5cf6;
}

.category-icon--hosting {
  background: #f59e0b;
}

.category-icon--marketing {
  background: #ec4899;
}

.category-title h2 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: var(--text);
}

.category-title p {
  font-size: 14.5px;
  color: var(--muted);
}

/* === SERVICES GRID LAYOUTS === */
.services-grid-7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === SERVICE CARD WITH IMAGE === */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: none;
  transition: transform .5s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.1);
}

.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 115, 232, .1) 100%);
}

.service-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--bg-card);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--t);
}

.service-card:hover .service-card__icon {
  background: var(--blue);
  color: #fff;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.4;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  transition: var(--t);
}

.service-card:hover .service-card__link {
  gap: 12px;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1100px) {
  .services-grid-7,
  .services-grid-8 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card__img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .services-grid-7,
  .services-grid-8,
  .services-grid-6,
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .category-title h2 {
    font-size: 1.5rem;
  }

  .service-card__img {
    height: 140px;
  }

  .service-card__content {
    padding: 18px;
  }

  .service-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .services-grid-7,
  .services-grid-8,
  .services-grid-6,
  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 100%;
  }

  .service-card__img {
    height: 180px;
  }

  .service-card__content {
    padding: 20px;
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 12.5px;
  }
}