*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

ul {
  list-style: none;
}

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg: #f6f6f6;
  --bg1: #111114;
  --bg2: #161618;
  --bg3: #1c1c20;
  --card: #2B2B31;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.05);
  --accent-d: #ff7a45;
  --accent: #ff2d7a;
  --violet: #7b61ff;
  --cyan-blue: #32c5ff;
  --sunset-gold: #ffc93a;
  --accent-lt: rgba(249, 115, 22, 0.12);
  --accent-md: rgba(249, 115, 22, 0.22);
  --text: #1c1c1c;
  --text2: #ffffff;
  --text3: #9a9a9a;
  --white: #ffffff;
  --black: #000000;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:
    0 4px 6px rgba(0, 0, 0, 0.5), 0 20px 60px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s;
}

/* ─── BASE ───────────────────────────────────────────── */
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.f-display {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.f-heading {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.f-sub {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── PAGES ──────────────────────────────────────────── */
/* .page {
        display: none;
      }
      .page.active {
        display: block;
      } */

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 32px;
  /* height: 68px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: background var(--t) var(--ease);
}

.nav.scrolled {
  background: rgba(12, 12, 14, 0.97);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 100%;
  max-width: 110px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 0.25px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  /* color: var(--text); */
  background: rgba(255, 255, 255, 0.07);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  padding: 9px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
}

.btn-nav:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  color: var(--white);
  transition: var(--t);
  -webkit-transition: var(--t);
  -moz-transition: var(--t);
  -ms-transition: var(--t);
  -o-transition: var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  /* width: 100%; */
  text-align: center;
  padding: 10px;
  border-radius: 14px;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  transition:
    color var(--t),
    background var(--t);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-d);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .btn-nav {
  /* width: 100%; */
  text-align: center;
  font-size: 18px;
  padding: 16px;
  margin-top: 16px;
  border-radius: 14px;
  color: var(--white);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
}

.btn-ghost {
  background: #000000;
  color: var(--text2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--accent-d);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* ─── BADGE / TAG ────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-lt);
  color: var(--accent);
  border: 1px solid var(--accent-md);
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ─── SECTION LABELS ─────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-desc {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 14px;
}

/* ─── DIVIDER ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── FADE IN ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

/* ══════════════════════════════════════════════════════ */
/*  HOME PAGE                                            */
/* ══════════════════════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background-color: #dac4c466;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  height: min(500px, 60vw);
  background: radial-gradient(ellipse at center,
      rgba(249, 115, 22, 0.15) 0%,
      transparent 68%);
  pointer-events: none;
  filter: blur(1px);
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-badge {
  margin-bottom: 22px;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: .25px;
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.hero-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-lt);
  border: 1px solid var(--accent-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* hero right: image collage */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  min-width :150px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform 0.5s var(--ease);
}

.hero-img-wrap img:first-child {
  grid-column: span 2;
  height: 170px;
}

.hero-img-wrap img:hover {
  transform: scale(1.03);
}

.hero-stat-float {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.stat-pill {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.stat-pill-num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}

.stat-pill-lbl {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
}

/* MARQUEE */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
  overflow: hidden;
  /* margin-top: 80px; */
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll 28s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--accent);
  font-size: 8px;
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.about-img-block {
  position: relative;
}

.about-img-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
}

.about-stat-card .nums {
  display: flex;
  gap: 24px;
}

.about-stat-card .num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--accent);
}

.about-stat-card .lbl {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
  margin-top: 2px;
}

.about-text .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 8px 0 16px;
}

.about-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-badge {
  padding: 8px 16px;
  border-radius: 100px;
  background: #000000;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

/* SERVICES SECTION */
.services-section {
  padding: 0 24px 100px;
}

.services-head {
  max-width: 1160px;
  margin: 0 auto 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.services-head .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}

.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
  cursor: default;
}

.svc-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.svc-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05);
}

.svc-card-body {
  padding: 26px;
}

.svc-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  /* background: var(--accent-lt); */
  color: var(--accent);
  margin-bottom: 12px;
}

.svc-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text2);
}

.svc-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

/* STATS BAND */
.stats-band {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.stats-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-block {
  text-align: center;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
}

.stat-block .num {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}

.stat-block .lbl {
  font-size: 14px;
  color: var(--text2);
  font-weight: 600;
  margin-top: 8px;
}

/* PROJECTS SECTION */
.projects-section {
  padding: 100px 24px;
}

.projects-head {
  max-width: 1160px;
  margin: 0 auto 44px;
}

.projects-head .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}

.projects-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    border-color var(--t),
    transform var(--t);
}

.proj-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.proj-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.proj-card:hover .proj-card-img img {
  transform: scale(1.04);
}

.proj-card-body {
  padding: 24px;
}

.proj-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text2);
}

.proj-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

.proj-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--t);
}

.proj-card:hover .proj-arrow {
  gap: 10px;
}

/* TESTIMONIALS */
.testi-section {
  padding: 0 24px 100px;
  background: var(--bg);
}

.testi-head {
  max-width: 1160px;
  margin: 0 auto 44px;
}

.testi-head .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}

.testi-wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testi-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  min-width: calc(50% - 10px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  flex-shrink: 0;
}

.testi-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testi-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-lt);
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text3);
}

.testi-role {
  font-size: 13px;
  color: var(--text3);
}

.testi-controls {
  display: flex;
  gap: 10px;
  margin: 24px auto 0;
  justify-content: center;
}

.testi-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 16px;
  transition:
    background var(--t),
    border-color var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* EMAIL CTA */
.email-cta-section {
  background: #7b61ff5e;
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.email-cta-inner {
  max-width: 1160px;
  margin: 0 auto;
      display: flex;
    flex-direction: column;
  align-items: self-start;
  gap: 20px;
}

.email-cta-text .section-title {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--text);
}

.email-cta-text p {
  color: var(--text2);
  font-size: 16px;
  margin-top: 12px;
}

.email-cta-words {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.cta-word {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form input {
  padding: 14px 18px;
  border-radius: 12px;
  /*background: var(--bg2);*/
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-transition: border-color var(--t), box-shadow var(--t);
  -moz-transition: border-color var(--t), box-shadow var(--t);
  -ms-transition: border-color var(--t), box-shadow var(--t);
  -o-transition: border-color var(--t), box-shadow var(--t);
}

.email-form input:focus {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.email-form input::placeholder {
  color: var(--text3);
}

.email-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ══════════════════════════════════════════════════════ */
/*  SERVICES PAGE                                        */
/* ══════════════════════════════════════════════════════ */
.page-hero {
  padding: 120px 24px 40px;
  background: #dac4c466;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at top,
      rgba(249, 115, 22, 0.14),
      transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.page-hero-inner .badge {
  margin-bottom: 20px;
}

.page-hero-inner h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  margin-bottom: 16px;
  color: var(--black);
  text-transform: capitalize;
}

.page-hero-inner p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* services full grid */
.svc-full-section {
  padding: 60px 24px 100px;
}

.svc-full-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-full-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
}

.svc-full-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.svc-full-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc-full-card:hover .svc-full-card-img img {
  transform: scale(1.04);
}

.svc-full-card-body {
  padding: 32px;
}

.svc-full-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #fff5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #ffffff05;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-full-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text2);
}

.svc-full-card p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.75;
}

.svc-full-card ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-full-card ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text2);
}

.svc-full-card ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* affiliate + digital solutions */
.svc-extra-section {
  padding: 0 24px 80px;
  background: var(--bg);
}

.svc-extra-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.svc-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.svc-extra-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    border-color var(--t),
    transform var(--t);
}

.svc-extra-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-4px);
}

.svc-extra-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-extra-card-body h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}

.svc-extra-card-body p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.svc-extra-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

/* ══════════════════════════════════════════════════════ */
/*  PARTNERS PAGE                                        */
/* ══════════════════════════════════════════════════════ */
.partners-intro {
  padding: 60px 24px 0;
}

.partners-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.partners-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.partners-hero-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.partners-hero-text .section-title {
  font-size: clamp(26px, 3vw, 40px);
  margin: 8px 0 16px;
}

.partners-hero-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.partners-opp-section {
  padding: 0 24px 80px;
}

.partners-opp-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition:
    border-color var(--t),
    transform var(--t);
}

.partner-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-5px);
}

.partner-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.partner-card:hover img {
  transform: scale(1.04);
}

.partner-card-body {
  padding: 26px;
}

.partner-card-body h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--text2);
}

.partner-card-body p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

.partner-testi-section {
  padding: 0 24px 100px;
}

.partner-testi-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.partner-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.partner-testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color var(--t);
}

.partner-testi-card:hover {
  border-color: rgba(249, 115, 22, 0.2);
}

.partner-testi-card .stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.partner-testi-card .quote {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.partner-testi-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-testi-card .author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.partner-testi-card .author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text3);
}

.partner-testi-card .author-loc {
  font-size: 12px;
  color: var(--text3);
}

/* ══════════════════════════════════════════════════════ */
/*  CONTACT PAGE                                         */
/* ══════════════════════════════════════════════════════ */
.contact-section {
  padding: 40px 24px 100px;
}

.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-left h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.contact-left p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child {
  border-top: 1px solid var(--border);
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: var(--accent-lt);
  border: 1px solid var(--accent-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cinfo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}

.cinfo-val {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.cinfo-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* form */
.contact-form-card {
  background: var(--violet);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.contact-form-card h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  outline: none;
  transition:
    border-color var(--t),
    box-shadow var(--t);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text3);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--bg2);
}

.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.3);
}

.form-submit:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.form-success .check-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text2);
}




/* ══════════════════════════════════════════════════════ */
/*  PRIVACY POLICY  /terms and condition                                          */
/* ══════════════════════════════════════════════════════ */

/* MAIN SECTION */
.policy-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.privacy-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.policy-section .card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border-color: #32C5FF;
  display: flex;
  flex-direction: column;
  gap: 10px;
;
}

/* HEADINGS */
.policy-section .card h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--text);
  text-transform: capitalize;
}

.policy-section .card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* SPECIAL CONTACT CARD */
.policy-section .highlight {
  background: linear-gradient(135deg, #FF7A45, #FF2D7A);
  color: #fff;
  text-align: center;
}
.policy-section .highlight h2{
    color: var(--white);
}


/* ══════════════════════════════════════════════════════ */
/*  FOOTER                                               */
/* ══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand .logo-img {
  height: 50px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand ul li {
  color: var(--text3);
  font-size: 14px;
  line-height: 1.75;
  max-width: 350px;
  font-weight: 500;
}


.footer-brand .operated-by{
  margin-bottom: 10px;
}
.footer-brand li span{
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-col h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text3);
  transition: color var(--t);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text3);
}

.social-media {
  display: flex;
  gap: 20px;
  align-items: center;
  text-transform: capitalize;
  font-family: 18px;
  color: var(--white);
}

.social-media a {
  font-size: 28px;
  transition: color var(--t);
  -webkit-transition: color var(--t);
  -moz-transition: color var(--t);
  -ms-transition: color var(--t);
  -o-transition: color var(--t);
}

.social-media a:hover {
  color: var(--cyan-blue);

}



/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    align-items: normal;
  }

  .hero-visual {
    order: -1;
  }

  .hero-stat-float {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .email-cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .svc-full-grid {
    grid-template-columns: 1fr;
  }

  .svc-extra-grid {
    grid-template-columns: 1fr;
  }

  .partners-hero-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-testi-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* @media (max-width: 768px) { */
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-extra-card {
    grid-template-columns: 1fr;
  }

  .svc-extra-card-img img {
    height: 180px;
    width: 100%;
  }

  .testi-card {
    min-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-img-wrap img:first-child {
    height: 180px;
  }

  .hero-img-wrap img {
    height: 150px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-p {
    line-height: 1.5;
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-band-inner {
    grid-template-columns: 1fr;
  }

  .about-stat-card .nums {
    gap: 16px;
  }

}