/* ============================================================
       CSS VARIABLES & RESET
    ============================================================ */
:root {
  --bg-base: #f8fafc;
  --bg-white: #ffffff;
  --primary-blue: #0a66c2;
  --primary-orange: #ff6a00;
  --accent-blue: #4facfe;
  --accent-orange: #ffa500;
  --text-dark: #0d1117;
  --text-mid: #374151;
  --text-light: #6b7280;
  --gradient-primary: linear-gradient(135deg, #16a4ea 0%, #004890 100%);
  --gradient-soft: linear-gradient(135deg, #4facfe 0%, #ffa500 100%);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-soft: 0 8px 40px rgba(10, 102, 194, 0.1);
  --shadow-glow-blue: 0 0 30px rgba(79, 172, 254, 0.25);
  --shadow-glow-orange: 0 0 30px rgba(255, 106, 0, 0.2);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-card: 20px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

:root {
  --theme-list-indent: 2.5em;
  --theme-content-spacing: 1.5em;
}

p {
  margin-block-end: var(--theme-content-spacing);
}
.is-layout-flow ul,
.is-layout-flow ol {
  padding-inline-start: var(--theme-list-indent);
  margin-block-end: var(--theme-content-spacing);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-end: calc(var(--has-theme-content-spacing, 1) * (0.3em + 10px));
}
h1:where(:last-child),
h2:where(:last-child),
h3:where(:last-child),
h4:where(:last-child),
h5:where(:last-child),
h6:where(:last-child) {
  margin-block-end: 0;
}
:is(.is-layout-flow, .is-layout-constrained)
  > *:where(:not(h1, h2, h3, h4, h5, h6)) {
  margin-block-start: 0;
  margin-block-end: var(--theme-content-spacing);
}
:is(.is-layout-flow, .is-layout-constrained) :where(h1, h2, h3, h4, h5, h6) {
  margin-block-end: calc(var(--has-theme-content-spacing, 1) * (0.3em + 10px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}
a {
  cursor: none;
}

/* ============================================================
       CUSTOM CURSOR
    ============================================================ */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-primary);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  mix-blend-mode: multiply;
}

#cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 102, 194, 0.35);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease,
    width 0.3s,
    height 0.3s;
}

body:hover #cursor {
  opacity: 1;
}

/* ============================================================
       SCROLLBAR
    ============================================================ */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 99px;
}

/* ============================================================
       UTILITY
    ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 102, 194, 0.08);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(10, 102, 194, 0.15);
  margin-bottom: 20px;
}

.tag-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75;
}

.btn-primary {
  font-family: var(--font-head) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 102, 194, 0.22);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(10, 102, 194, 0.32);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  color: var(--text-dark);
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(12px);
  cursor: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
}

/* ============================================================
       NAVBAR
    ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}

#navbar.scrolled {
  position: sticky !important;
  box-shadow: 0 4px 32px rgba(10, 102, 194, 0.08);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  cursor: none;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 99px;
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: #0b0f14;
  z-index: 9999;
  transition: 0.4s;
  padding: 20px;
  border-radius: 0 20px 20px 0;
}

.mobile-menu.active {
  left: 0;
}

/* TOP BAR */
.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-logo {
  padding: 15px 8px;
  background-color: #fff;
  border-radius: 12px;
}

.mobile-logo img {
  height: 40px;
}

.mobile-close {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  padding: 0;
}

.mobile-links li {
  margin-bottom: 18px;
}

.mobile-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.has-dropdown .menu-head {
  display: flex;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
}

.arrow {
  transition: 0.3s;
}

.has-dropdown.active .arrow {
  transform: rotate(180deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-left: 10px;
}

.has-dropdown.active .submenu {
  max-height: 300px;
}

.submenu li {
  margin: 10px 0;
}

.submenu a {
  font-size: 14px;
  color: #aaa;
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.nav-hamburger {
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.nav-hamburger:hover svg {
  transform: scale(1.1);
}
.mobile-close {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: 0.3s;
}

.mobile-close:hover svg {
  transform: rotate(90deg) scale(1.1);
}
.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links .dropdown-menu a::after {
  content: none;
}

.dropdown-menu li a:hover {
  background: #f5f7fa;
  color: #fff;
  padding-left: 25px;
  background-color: #ef6910;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  stroke-width: 5;
  fill: none;
  transition: 0.3s;
}

.icon-up {
  display: none;
}

.mobile-dropdown.active .icon-down {
  display: none;
}

.mobile-dropdown.active .icon-up {
  display: block;
}
.nav-hamburger {
  display: none;
}
.mobile-socials {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: left;
  gap: 12px;
}
@media (max-width: 991px) {
  .nav-hamburger {
    display: flex;
  }
}
/* ============================================================
       HERO SECTION
    ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7ff 0%, #fff8f0 50%, #f8fafc 100%);
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  background: radial-gradient(
    circle,
    #4facfe 0%,
    rgba(10, 102, 194, 0.3) 60%,
    transparent 100%
  );
  animation: floatBlob 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(
    circle,
    #ffa500 0%,
    rgba(255, 106, 0, 0.2) 60%,
    transparent 100%
  );
  animation: floatBlob 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(
    circle,
    rgba(79, 172, 254, 0.4) 0%,
    transparent 70%
  );
  animation: floatBlob 6s ease-in-out infinite 2s;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 999;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.1),
    rgba(255, 106, 0, 0.08)
  );
  border: 1px solid rgba(10, 102, 194, 0.18);
  padding: 6px 14px 6px 8px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

.hero-badge .badge-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge .badge-dot svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(10, 102, 194, 0.15);
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: -2;
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.hc-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.hc-sublabel {
  font-size: 0.78rem;
  color: var(--text-light);
}

.hc-graph {
  margin-bottom: 20px;
}

.hc-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 70px;
}

.hc-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, #0a66c2, #4facfe);
  opacity: 0.85;
}

.hc-bar:nth-child(even) {
  background: linear-gradient(to top, #ff6a00, #ffa500);
}

.hc-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
}

.hc-stat-num span {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
}

.hc-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hfc-1 {
  top: 50px;
  right: -40px;
  animation: heroFloat 4s ease-in-out infinite 1s;
}

.hfc-2 {
  bottom: 150px;
  left: -90px;
  animation: heroFloat 6s ease-in-out infinite 2s;
}

.hfc-dot {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hfc-dot svg {
  width: 16px;
  height: 16px;
}

.hfc-dot.blue {
  background: rgba(79, 172, 254, 0.15);
}

.hfc-dot.orange {
  background: rgba(255, 106, 0, 0.12);
}

.hfc-dot.blue svg {
  fill: var(--primary-blue);
}

.hfc-dot.orange svg {
  fill: var(--primary-orange);
}

.hfc-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hfc-sub {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ============================================================
       MARQUEE / TRUSTED BY
    ============================================================ */
.marquee-section {
  padding: 32px 0;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
       SERVICES SECTION
    ============================================================ */
#services {
  background: white;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--bg-base);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-primary);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background: var(--bg-base);
  z-index: 1;
  transition: background 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-blue);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.1),
    rgba(255, 106, 0, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.service-card:hover .svc-icon {
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.18),
    rgba(255, 106, 0, 0.14)
  );
}

.svc-icon svg {
  width: 26px;
  height: 26px;
}

.svc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.svc-text {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
}

.svc-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-blue);
  transition: transform 0.3s;
}

.service-card:hover .svc-arrow svg {
  transform: translateX(4px);
}

/* ============================================================
       WHY CHOOSE US
    ============================================================ */
#why {
  background: linear-gradient(160deg, #f0f7ff 0%, #fff8f0 100%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.why-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 102, 194, 0.12);
}

.why-card:nth-child(2) {
  margin-top: 24px;
}

.why-card:nth-child(4) {
  margin-top: 24px;
}

.wc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.wc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.wc-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-content {
}

.why-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wp-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-check svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.wp-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.wp-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
       PROCESS SECTION
    ============================================================ */
#process {
  background: white;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header .section-sub {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-line {
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(10, 102, 194, 0.2) 0%,
    rgba(255, 106, 0, 0.2) 100%
  );
  z-index: 0;
}

.process-line-fill {
  position: absolute;
  top: 42px;
  left: 12.5%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 1;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: white;
  border: 2px solid rgba(10, 102, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.process-step.active .step-num,
.process-step:hover .step-num {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.3);
}

.step-icon {
  margin-top: 10px !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
       PORTFOLIO
    ============================================================ */
#portfolio {
  background: var(--bg-base);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
}

.port-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: none;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.port-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-info {
  color: #fff;
}

.port-cat {
  font-size: 12px;
  opacity: 0.8;
}

.port-title {
  font-size: 18px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.port-item:first-child {
  grid-row: span 2;
}

.port-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-item:hover .port-bg {
  transform: scale(1.06);
}

.port-bg-1 {
  background: linear-gradient(135deg, #0a66c2 0%, #4facfe 50%, #0a66c2 100%);
}

.port-bg-2 {
  background: linear-gradient(135deg, #ff6a00 0%, #ffa500 100%);
}

.port-bg-3 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.port-bg-4 {
  background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
}

.port-bg-5 {
  background: linear-gradient(135deg, #6a0572 0%, #ab17df 100%);
}

.port-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-info {
  color: white;
}

.port-cat {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.port-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}

.port-mock {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 200px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
}

.port-mock-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  width: 80%;
}

.port-mock-bar.sm {
  width: 50%;
  margin-bottom: 14px;
}

.port-mock-blocks {
  display: flex;
  gap: 6px;
}

.port-mock-block {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================================
       TESTIMONIALS
    ============================================================ */
#testimonials {
  background: #f7f8f9;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-sub {
  margin: 0 auto;
}

.swiper-testimonials {
  padding-bottom: 50px !important;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffc107;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.swiper-pagination-bullet {
  background: var(--primary-blue);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--gradient-primary);
  opacity: 1;
  width: 20px;
  border-radius: 99px;
}

/* ============================================================
       CTA SECTION
    ============================================================ */
#cta {
  background: linear-gradient(135deg, #16a4ea 0%, #004890 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 110px 0;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, #4facfe, transparent);
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, #ffa500, transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-blue);
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  cursor: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ============================================================
       CONTACT SECTION
    ============================================================ */
#contact {
  background: var(--bg-base);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
}

.contact-info-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.ci-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.87rem;
  color: var(--text-light);
}
.ci-val a {
  font-size: 0.87rem;
  color: var(--text-light);
  text-decoration: none;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(10, 102, 194, 0.07);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  position: relative;
  margin-bottom: 22px;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 0.87rem;
  color: var(--text-light);
  transition: 0.3s;
  pointer-events: none;
  padding: 0 4px;
}
.input-group:focus-within label {
  background-color: #fff;
}

.input-group textarea ~ label {
  top: 20px;
  transform: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.75rem;
  color: var(--primary-blue);
  transform: none;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--bg-base);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  appearance: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.12);
}

.input-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============================================================
       FOOTER
    ============================================================ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}

.social-icon:hover svg {
  fill: white;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.3s;
  cursor: none;
}

.footer-col ul li a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
       MOBILE NAV
    ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(248, 250, 252, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-dark);
  cursor: none;
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* ============================================================
       SCROLL PROGRESS BAR
    ============================================================ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 2000;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.1s;
}

/* ============================================================
       GSAP INITIAL STATES
    ============================================================ */
.reveal-up {
  /* opacity: 0; */
  transform: translateY(50px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-right {
  /* opacity: 0; */
  transform: translateX(50px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-visual {
    margin-bottom: 40px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-line,
  .process-line-fill {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .port-item:first-child {
    grid-row: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links,
  .nav-cta .btn-primary {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-cards-wrap {
    grid-template-columns: 1fr;
  }

  .why-card:nth-child(2),
  .why-card:nth-child(4) {
    margin-top: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Loading overlay */
#loader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  margin: 16px auto 0;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: 99px;
  animation: loaderAnim 1.2s ease-out forwards;
}

@keyframes loaderAnim {
  to {
    width: 100%;
  }
}

/* Case Studies - Normal + Hover Style */
.case-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease;
}

.case-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.case-card:hover img {
  transform: scale(1.08);
}

.hover-content {
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  overflow: hidden;
}
.hover-content a {
  cursor: none;
}

.case-card:hover .hover-content {
  opacity: 1;
}
.bottom-bar {
  background: #fff;
  color: #000;
  padding: 28px 32px;
  transition: transform 0.5s ease;
}

.bottom-bar h3 {
  font-size: 1.28rem;
  margin-bottom: 6px;
  font-weight: 700;
}

/* Section */
.trusted-clients-section {
  padding: 100px 0;
  background: #fff;
}

/* Header */
.clients-header {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  align-items: center;
}

/* Client Card */
.client-item {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.client-item img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.portfolio-content-section {
  width: 50%;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-content-section {
    width: 100% !important;
  }
}
.service-btn {
  display: inline-block;
  padding: 10px 22px;
  margin-top: 6px;
  background: linear-gradient(135deg, #16a4ea 0%, #004890 100%);
  color: #fff;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
}
.bottom-bar a {
  cursor: none;
}

.service-btn:hover {
  background: #f96910;
  transform: scale(1.05);
}

/* About Page Specific Styles */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(10, 102, 194, 0.15);
}

.team-img {
  height: 320px;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 40px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s;
}

.value-card:hover {
  border-color: #0a66c2;
  transform: translateY(-8px);
}

.mission-section {
  background: #fff;
}

.about-hero {
  height: 350px;
  background: #1973cd;
  background-image: url(/img/download.svg);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  justify-content: center;
}

.breadcrumb {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.image-wrapper {
  position: relative;
  width: 550px;
}

.main-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -25px;
  left: -30px;
  width: 350px;
  border-radius: 12px;
}

.floating-card img {
  width: 95%;
  border-radius: 15px;
}
.mission-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mission-image,
.mission-content {
  flex: 1;
}

.mission-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 102, 194, 0.08);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-content h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 15px 0;
}

@media (max-width: 992px) {
  .mission-flex {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mission-flex {
    flex-direction: column;
  }

  .mission-image {
    order: -1; /* 👈 Image upar aa jayegi */
    width: 100%;
  }
}
/* Default (Desktop) - No Change */
.business-goal-section .container > div {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* Tablet View */
@media (max-width: 992px) {
  .business-goal-section .container > div {
    grid-template-columns: 1fr;
  }

  /* Image first */
  .business-goal-section .image-wrapper {
    order: -1;
    margin-bottom: 40px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .business-goal-section {
    padding: 70px 0 !important;
  }
  .image-wrapper {
    width: 100%;
  }
  .floating-card {
    display: none;
  }
  .business-goal-section .container > div {
    grid-template-columns: 1fr;
    gap: 40px !important;
  }

  /* Image on top */
  .business-goal-section .image-wrapper {
    order: -1;
  }

  /* Text spacing improve */
  .business-goal-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .business-goal-section .section-sub {
    font-size: 0.95rem;
  }

  /* Feature spacing */
  .business-goal-section div[style*="display: flex"] {
    gap: 14px !important;
  }
}
#technologies {
  background-color: #f9f8f4;
}
.technologies-header {
  text-align: center;
  margin-bottom: 70px;
}

.technologies-header .section-sub {
  margin: 0 auto;
  max-width: 700px;
}
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.technologies-card {
  padding: 20px 20px;
  text-align: center;
  background: white;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s;
}

.icon-point {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.icon-point .icon {
  width: 40px;
  height: 40px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

.number-box {
  width: 46px;
  height: 46px;
  border-radius: 25px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.number {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.service-alt {
  padding: 100px 0;
  background-color: #fff;
}

.alt-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.alt-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.alt-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.alt-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.tools {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tools img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: 0.3s;
}

.tools img:hover {
  transform: scale(1.15);
}

.alt-content ul {
  color: #6b7280;
  margin-bottom: 20px;
  padding-left: 18px;
}

.alt-content ul li {
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .alt-flex {
    grid-template-columns: 1fr;
  }

  .alt-img {
    order: 1;
  }

  .alt-content {
    order: 2;
  }

  .service-alt.reverse .alt-img {
    order: 1;
  }

  .service-alt.reverse .alt-content {
    order: 2;
  }
}
.industry-highlight {
  background: #f7f8fa;
}

.industry-highlight-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.industry-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* CONTENT */
.industry-content ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.industry-content ul li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .industry-highlight-wrap {
    grid-template-columns: 1fr;
  }
}
.trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.trust-points {
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-light);
}

.trust-item span {
  color: hsl(24, 100%, 50%);
  margin-right: 10px;
  font-weight: bold;
}

/* RIGHT GRID */
.trust-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* BOX */
.trust-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.trust-box h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.trust-box p {
  font-size: 14px;
  color: var(--text-light);
}

/* HOVER */
.trust-box:hover {
  transform: translateY(-6px);
}

/* MOBILE */
@media (max-width: 991px) {
  .trust-wrapper {
    grid-template-columns: 1fr;
  }
}
