/* =====================================================
   Digital Vistech - Redesigned to match exact layout
   ===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow:wght@400;500;600;700;800;900&display=swap");

:root {
  --pink: #e91e8c;
  --pink-dark: #c0166f;
  --pink-glow: rgba(233, 30, 140, 0.3);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #181818;
  --dark-4: #222222;
  --white: #ffffff;
  --grey: #cccccc;
  --grey-2: #888888;
  --border: rgba(255, 255, 255, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.btn-pink {
  background: var(--pink);
  color: #fff;
  padding: 13px 32px;
  border: 1.5px solid var(--pink);
}
.btn-pink:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}
.btn-pink-outline {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
  padding: 12px 28px;
}
.btn-pink-outline:hover {
  background: var(--pink);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--pink);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #fff;
  display: inline-block;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6ba6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTAINER */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-top {
  font-family: "Barlow", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text-bottom {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* Center Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}
.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--pink);
}
.main-nav > li > a.has-drop::after {
  content: " ▾";
  font-size: 11px;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.main-nav > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--grey-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-dropdown a:last-child {
  border: none;
}
.nav-dropdown a:hover {
  color: var(--pink);
  background: rgba(233, 30, 140, 0.05);
}

/* Right: Social Icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.header-social a {
  color: var(--white);
  opacity: 0.8;
  font-size: 16px;
}
.header-social a:hover {
  color: var(--pink);
  opacity: 1;
}
.header-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   MOBILE SIDE DRAWER
   ===================================================== */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #0d0d0d;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer-header .site-logo img {
  width: 140px;
}
.drawer-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.drawer-close:hover {
  color: var(--pink);
}

.drawer-nav {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}
.drawer-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.drawer-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.drawer-nav > li > a:hover,
.drawer-nav > li.active > a {
  color: var(--pink);
  background: rgba(233, 30, 140, 0.05);
}
.drawer-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.drawer-has-sub.sub-open .drawer-chevron {
  transform: rotate(180deg);
}

/* Drawer sub-menu */
.drawer-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(255, 255, 255, 0.02);
}
.drawer-has-sub.sub-open .drawer-sub {
  max-height: 400px;
}
.drawer-sub li a {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 13px;
  color: var(--grey-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
}
.drawer-sub li:last-child a {
  border-bottom: none;
}
.drawer-sub li a:hover {
  color: var(--pink);
  padding-left: 40px;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}
.drawer-socials {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.drawer-socials a {
  color: var(--grey-2);
  transition: color 0.3s;
}
.drawer-socials a:hover {
  color: var(--pink);
}
.drawer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.drawer-copy {
  font-size: 11px;
  color: var(--grey-2);
  opacity: 0.6;
}

/* Hide drawer elements on desktop */
@media (min-width: 769px) {
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 75% 50%,
      rgba(0, 80, 180, 0.25) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 30%,
      rgba(0, 150, 255, 0.1) 0%,
      transparent 40%
    );
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 1) 0%,
    rgba(8, 8, 8, 0.85) 35%,
    rgba(8, 8, 8, 0.2) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
}
.hero-content h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.5px;
}
.hero-content h1 .pink {
  color: var(--pink);
}
.hero-content h3 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(16px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-top: 10px;
}
.hero-content p {
  font-family: "Barlow", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--grey-2);
  letter-spacing: -0.5px;
  margin-top: 10px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.h-stat-num {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.h-stat-num span {
  color: var(--pink);
}
.h-stat-label {
  font-size: 11px;
  color: var(--grey-2);
  letter-spacing: 1px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* =====================================================
   HERO TECH CIRCLE
   ===================================================== */
.hero-tech-circle {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 480px;
  margin: 100px auto 80px;
  flex-shrink: 0;
}

/* Outer glowing ring */
.htc-outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 150, 255, 0.25);
  box-shadow:
    0 0 40px rgba(0, 100, 255, 0.15),
    inset 0 0 40px rgba(0, 80, 200, 0.1);
  background: radial-gradient(
    circle at center,
    rgba(0, 30, 100, 0.5) 0%,
    rgba(0, 20, 80, 0.6) 35%,
    rgba(0, 10, 50, 0.7) 60%,
    rgba(0, 5, 20, 0.5) 80%,
    transparent 100%
  );
}
/* Second inner ring */
.htc-outer-ring::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 255, 0.15);
}
/* Inner dark core */
.htc-inner {
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(0, 5, 20, 0.9) 0%,
    rgba(0, 15, 60, 0.7) 60%,
    transparent 100%
  );
  border: 1px solid rgba(0, 120, 255, 0.12);
}

/* =====================================================
   TECH LOGOS — positioned around the circle
   ===================================================== */
.tech-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: default;
}
.tech-logo:hover {
  transform: scale(1) translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(255, 0, 234, 0.3);
  border-color: rgba(0, 150, 255, 0.4);
  z-index: 10;
}
.tech-logo svg {
  display: block;
}

/* WordPress — top left */
.tl-wordpress {
  width: 58px;
  height: 58px;
  top: 52px;
  left: 62px;
  animation: floatA 4s ease-in-out infinite;
}
.tl-wordpress svg {
  width: 32px;
  height: 32px;
}

/* React — top right */
.tl-react {
  width: 68px;
  height: 68px;
  padding: 10px;
  top: 48px;
  right: 60px;
  animation: floatB 4.5s ease-in-out infinite;
}
.tl-react svg {
  width: 34px;
  height: 34px;
}

/* WooCommerce — right */
.tl-woo {
  width: auto;
  height: auto;
  padding: 10px 14px;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  /* background: rgba(150, 88, 138, 0.9); */
  /* border-color: rgba(150, 88, 138, 0.5); */
  animation: floatC 5s ease-in-out infinite;
}
.tl-woo span {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.tl-vistech {
  width: auto;
  height: 128px;
  padding: 0 18px;
  top: 50%;
  left: 55%;
  transform: translate(-40%, -50%);
  background: rgba(20, 25, 60, 0.7);
  border-color: rgba(100, 120, 255, 0.2);
  animation: floatD 3.8s ease-in-out infinite;
}

/* PHP — center of circle */
.tl-php {
  width: auto;
  height: 48px;
  padding: 0 18px;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%);
  background: rgba(20, 25, 60, 0.7);
  border-color: rgba(100, 120, 255, 0.2);
  animation: floatD 3.8s ease-in-out infinite;
}
.tl-php span {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #aabbff;
  font-style: italic;
  letter-spacing: 1px;
}

/* Node.js — right bottom area */
.tl-node {
  width: 56px;
  height: 56px;
  bottom: 110px;
  left: 60px;
  animation: floatB 5s ease-in-out infinite;
}
.tl-node svg {
  width: 30px;
  height: 30px;
}

/* MongoDB — bottom */
.tl-mongo {
  width: 50px;
  height: 50px;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatA 4.2s ease-in-out infinite;
}
.tl-mongo svg {
  width: 26px;
  height: 26px;
}

/* AI — bottom right */
.tl-ai {
  width: 70px;
  height: 60px;
  bottom: 90px;
  right: 14px;
  background: rgba(15, 15, 15, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  animation: floatC 4.8s ease-in-out infinite;
}
.tl-ai span {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* HTML5 — left */
.tl-html {
  width: 54px;
  height: 54px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  animation: floatD 5.2s ease-in-out infinite;
}
.tl-html svg {
  width: 28px;
  height: 28px;
}

/* Shopify — left */
.tl-shopify {
  width: 78px;
  height: 78px;
  padding: 10px;
  top: 2px;
  left: 222px;
  animation: floatA 4s ease-in-out infinite;
}

/* Wix */
.tl-wix {
  width: 58px;
  height: 58px;
  bottom: 2px;
  left: 122px;
  animation: floatA 4s ease-in-out infinite;
}

/* Float keyframes — subtle up/down movement */
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}
@keyframes floatD {
  0%,
  100% {
    transform: translate(-80%, -50%);
  }
  50% {
    transform: translate(-80%, calc(-50% - 8px));
  }
}
/* Fix WOO float since it has a static transform */
.tl-woo {
  animation: floatWoo 5.2s ease-in-out infinite;
}
@keyframes floatWoo {
  0%,
  100% {
    transform: translate(-40%, -70%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px));
  }
}
/* Fix HTML left float */
.tl-html {
  animation: floatHTML 5s ease-in-out infinite;
}
@keyframes floatHTML {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
  padding: 90px 0;
}
.section-bg2 {
  background: var(--dark-2);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pink);
}
.section-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  max-width: 660px;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title span {
  color: var(--pink);
}

.full-section-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  max-width: 100%;
  color: var(--white);
  margin-bottom: 14px;
}
.full-section-title span {
  color: var(--pink);
}
.section-desc {
  color: var(--grey-2);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.85;
}
.full-section-desc {
  color: var(--grey-2);
  font-size: 15px;
  max-width: 70%;
  margin: auto;
  line-height: 1.85;
}
.section-header {
  margin-bottom: 52px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-label {
  justify-content: center;
}
.section-header.center .section-desc {
  margin: 0 auto;
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  /* background-image: url("assets/images/footer-main-back-copyright-min.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; */
}
.service-card {
  background: var(--dark-2);
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--pink);
  transition: width 0.4s;
}
.service-card:hover::after {
  width: 100%;
}
.service-card:hover {
  background: #161616;
}
.service-num {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card:hover .service-num {
  color: rgba(233, 30, 140, 0.08);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-wrap {
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.1);
}
.service-card h3 {
  font-family: "Barlow", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover {
  gap: 10px;
}

/* =====================================================
   ABOUT GRID
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}
.about-img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 30, 140, 0.08) 0%,
    transparent 60%
  );
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--pink);
  padding: 22px 26px;
  text-align: center;
}
.about-badge .num {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.about-badge p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-text p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--grey);
}
.about-check::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================================================
   PROCESS
   ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.process-item {
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}
.process-item:last-child {
  border-right: none;
}
.process-item:hover {
  background: #141414;
}
.how-section-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  max-width: 100%;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}
.how-section-title span {
  color: var(--pink);
}
.process-step {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 16px;
}
.process-ico {
  font-size: 26px;
  margin-bottom: 14px;
}
.process-item h3 {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-item p {
  color: var(--grey-2);
  font-size: 13px;
  line-height: 1.8;
}

/* =====================================================
   PORTFOLIO
   ===================================================== */
.ptabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ptab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 22px;
  color: var(--grey-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}
.ptab-btn:hover {
  color: var(--white);
}
.ptab-btn.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.p-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.p-item:hover .p-item-bg {
  transform: scale(1.05);
}
.p-item-icon {
  font-size: 48px;
  opacity: 0.2;
  position: relative;
  z-index: 1;
}
.p-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(233, 30, 140, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.p-item:hover .p-item-overlay {
  opacity: 1;
}
.p-item-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.p-item-overlay small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-top: 4px;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.why-card {
  background: var(--dark);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s;
}
.why-card:hover {
  background: #121212;
}
.why-ico {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-section-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  max-width: 820px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  margin-right: auto;
  margin-left: auto;
}
.why-section-title span {
  color: var(--pink);
}
.why-card h3 {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  color: var(--grey-2);
  font-size: 13px;
  line-height: 1.8;
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  padding: 56px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:last-child {
  border: none;
}
.stat-num {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: var(--pink);
}
.stat-label {
  font-size: 11px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-card {
  background: var(--dark-2);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}
.pricing-card.featured {
  background: var(--pink);
}
.pricing-card:not(.featured):hover {
  background: #161616;
}

.pricing-section-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  max-width: 820px;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  margin-right: auto;
  margin-left: auto;
}
.pricing-section-title span {
  color: var(--pink);
}
.p-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}
.pricing-card.featured .p-badge {
  color: rgba(255, 255, 255, 0.75);
}
.p-name {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.p-price {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.p-price sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 10px;
}
.p-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 26px;
}
.p-features {
  margin-bottom: 28px;
}
.p-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.pricing-card.featured .p-features li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.p-features li .ck {
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.featured .p-features li .ck {
  color: #fff;
}

.btn-primary {
  background-color: var(--white);
  padding: 14px 30px;
  color: var(--dark);
}
.btn-primary:hover {
  background-color: var(--dark);
  padding: 14px 30px;
  color: var(--white);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.testi-card {
  background: var(--dark-2);
  padding: 40px 34px;
  transition: background 0.3s;
}
.testi-card:hover {
  background: #161616;
}
.testi-stars {
  color: var(--pink);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 36px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
.testi-text {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testi-av {
  width: 44px;
  height: 44px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.testi-role {
  font-size: 12px;
  color: var(--grey-2);
  margin-top: 2px;
}

/* tesimonial slider */
.testimonial-swiper {
  padding-bottom: 3rem !important; /* space for pagination */
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--pink, #ff4d7e); /* use your theme color */
}
.swiper-pagination-bullet-active {
  background: var(--pink, #ff4d7e);
}
/* keep your existing testi-card styles */
.testi-card {
  background: var(--dark-2, #1e1e2f);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--pink, #ff4d7e);
  opacity: 0.3;
  margin-bottom: -1rem;
}
.testi-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pink, #ff4d7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}
.testi-name {
  font-weight: 600;
}
.testi-role {
  font-size: 0.85rem;
  opacity: 0.7;
}

.testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testi-footer img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--pink);
  padding: 60px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-inner > div {
  width: 70%;
}
.cta-title {
  font-family: "Barlow", sans-serif;
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 900;
  max-width: 100%;
  color: #fff;
  line-height: 1.2;
  /* font-size:clamp(26px,3vw,42px); */
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-size: 15px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(233, 30, 140, 0.03) 100%);
  border-top: 1px solid rgba(233, 30, 140, 0.15);
  border-bottom: 1px solid rgba(233, 30, 140, 0.15);
  padding: 80px 0 !important;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.cta-section h2 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.cta-section h2 .gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #ff6ba6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-section p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-section .btn-primary {
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.cta-section .btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(233, 30, 140, 0.25);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-left p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.c-detail-ico {
  width: 44px;
  height: 44px;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-detail-info h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.c-detail-info a,
.c-detail-info p {
  color: var(--grey-2);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.c-detail-info a:hover {
  color: var(--pink);
}
.c-form-box {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 40px;
}
.c-form-box h3 {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.c-form-box > p {
  color: var(--grey-2);
  font-size: 14px;
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: #1c1212;
}
.form-group select option {
  background: #1a1a1a;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-status {
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  border-left: 3px solid;
}
.form-status.success {
  background: rgba(0, 200, 100, 0.07);
  border-color: #00c864;
  color: #00c864;
  display: block;
}
.form-status.error {
  background: rgba(255, 50, 50, 0.07);
  border-color: #ff4444;
  color: #ff4444;
  display: block;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 140, 0.08) 0%,
    transparent 70%
  );
}
.page-hero h1 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.page-hero h1 span {
  color: var(--pink);
}
.page-hero h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 820px;
  padding: 4px 0px 0px 0px;
}
.page-hero p {
  color: var(--grey-2);
  font-size: 16px;
  max-width: 600px;
  line-height: 1.85;
  padding-top: 6px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-2);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--pink);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb .sep {
  opacity: 0.4;
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-strip {
  background: var(--pink);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.m-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  gap: 8px;
  flex-shrink: 0;
}
.m-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand p {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.9;
  margin: 14px 0 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-soc-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-2);
  transition: all 0.3s;
}
.footer-soc-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.footer-soc-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}
.footer-col h4 {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--grey-2);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--pink);
}
.footer-col ul li a::before {
  content: "→";
  font-size: 11px;
  opacity: 0.4;
}
.footer-c-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--grey-2);
  font-size: 13px;
  align-items: flex-start;
}
.footer-c-list li .ico {
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-c-list li a {
  color: var(--grey-2);
}
.footer-c-list li a:hover {
  color: var(--pink);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: var(--grey-2);
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  color: var(--grey-2);
  font-size: 13px;
}
.footer-bottom-links a:hover {
  color: var(--pink);
}

/* =====================================================
   CONTENT GRID (inner pages)
   ===================================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.content-grid.reverse {
  direction: rtl;
}
.content-grid.reverse > * {
  direction: ltr;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pink);
}
.content-text h2 {
  font-family: "Barlow", sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.content-text h2 span {
  color: var(--pink);
}
.content-text p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}
.tech-tag {
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.2);
  color: var(--pink);
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.img-box {
  aspect-ratio: 1;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 30, 140, 0.05) 0%,
    transparent 60%
  );
}

/* =====================================================
   ACCORDION
   ===================================================== */
.accordion {
  margin-bottom: 2px;
}
.accordion-header {
  width: 100%;
  background: var(--dark-2);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  font-family: "Barlow", sans-serif;
  text-align: left;
}
.accordion-header:hover,
.accordion-header.open {
  background: #161616;
  color: var(--pink);
}
.accordion-icon {
  transition: transform 0.3s;
  font-size: 20px;
}
.accordion-header.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 18px 22px;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.9;
}
.accordion-body.open {
  display: block;
}

/* =====================================================
   POLICY / LEGAL PAGES
   ===================================================== */
.policy-content {
  /* max-width: 820px; */
  margin: 0 auto;
}
.policy-content .policy-intro {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 16px;
}
.policy-content > p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.policy-content h2 {
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 36px 0 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.policy-content h2 + p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.policy-content a {
  color: var(--pink);
}
.policy-content a:hover {
  color: #ff6ba6;
}
.policy-content h3 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 10px;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.policy-content ul li {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 6px;
  list-style: disc;
}
.policy-contact {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.policy-contact h3 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.policy-contact p {
  color: var(--grey-2);
  font-size: 15px;
  margin: 0;
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

.gif-img {
  display: flex;
  justify-content: center;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 42px;
  height: 42px;
  background: var(--pink);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-tech-circle {
    width: 360px;
    height: 360px;
    margin: 0 auto 40px;
  }
  .tl-wordpress {
    width: 46px;
    height: 46px;
    top: 36px;
    left: 44px;
  }
  .tl-wordpress svg {
    width: 26px;
    height: 26px;
  }
  .tl-react {
    width: 46px;
    height: 46px;
    top: 34px;
    right: 44px;
  }
  .tl-react svg {
    width: 26px;
    height: 26px;
  }
  .tl-node {
    width: 44px;
    height: 44px;
    bottom: 80px;
    right: 44px;
  }
  .tl-node svg {
    width: 24px;
    height: 24px;
  }
  .tl-mongo {
    width: 40px;
    height: 40px;
    bottom: 34px;
  }
  .tl-mongo svg {
    width: 22px;
    height: 22px;
  }
  .tl-ai {
    width: 58px;
    height: 50px;
    bottom: 64px;
    right: 6px;
  }
  .tl-vistech {
    width: 58px;
    height: 50px;
    bottom: 64px;
    right: 6px;
  }
  .tl-html {
    width: 44px;
    height: 44px;
    left: -8px;
  }
  .tl-html svg {
    width: 22px;
    height: 22px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-item:nth-child(2) {
    border-right: none;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-grid.reverse {
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }
  .site-header {
    background: #0a0a0a;
    padding: 15px 0;
  }
  .site-logo img {
    width: 150px;
    max-width: 100%;
  }
  .main-nav {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
  }
  .header-social {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    padding: 110px 0 20px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 24px;
  }
  .h-stat-num {
    font-size: 32px;
  }
  .hero-tech-circle {
    display: none;
    width: 300px;
    height: 300px;
    margin: 0 auto 60px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ptabs-nav {
    border-bottom: none;
    gap: 10px;
  }
  .ptab-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    margin-bottom: 0;
  }
  .ptab-btn.active {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
  }
}
@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }
  .hero-tech-circle {
    width: 260px;
    height: 260px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .c-form-box {
    padding: 28px 18px;
  }
  .container {
    padding: 0 18px;
  }
}

/* Remove default swiper arrow styles */
.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: auto;
  background: none;
  color: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
  display: none !important;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 24px;
  height: 24px;
  display: block;
}
