/* ===================== ROOT & RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0008;
  --bg-2: #0f0010;
  --bg-card: #1a0010;
  --red: #FC0820;
  --red-dark: #54020A;
  --red-dim: rgba(255, 0, 25, 0.15);
  --text: #e4e0e0;
  --muted: #9a8a8a;
  --border: rgba(255, 0, 25, 0.22);
  --grad-red: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  --font-head: 'Rowdies', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-bar: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container2 {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== FONT FACE ===================== */
@font-face {
  font-family: 'Bruce Forever';
  src: url('../assets/fonts/BruceForever.woff2') format('woff2'),
    url('../assets/fonts/BruceForever.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

/* ===================== HELPERS ===================== */
.section-title-red {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw + 8px, 78px);
  line-height: 1.05;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
}

.section-title-white {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .section-title-white {
    font-size: 26px;
  }
}



.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.field-error {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-bar);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

@media (min-width: 1240px) {

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    padding: 1rem 2.4rem;
    font-size: 3rem;
    border-radius: 8px;
    height: auto;
    width: auto;
  }
}

@media (min-width: 1440px) {

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    padding: 1.1rem 2.8rem;
    font-size: 2.05rem;
    gap: 0.6rem;
  }
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-bar);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s;
}

.btn-secondary:hover {
  background: var(--red-dim);
}

.btn-book-call {
  padding: 0.55rem 1.3rem;
  background: transparent;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}

.btn-book-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  padding: 1px;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}



.btn-red-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s;
}

.btn-red-outline:hover {
  background: var(--red-dim);
}

.btn-red-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  width: 100%;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-red-full:hover {
  opacity: 0.88;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 40px;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 0, 8, 0.97);
}

/* ── Logo ── */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ── Nav links — centered between logo and button ── */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.2s;
  white-space: nowrap;
  display: inline-block;
}

@media (min-width: 1371px) {
  .nav-link {
    font-size: 16px;
  }
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* ── Book A Call button ── */
.btn-book-call {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #C80A18 90%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.2s;
}





.btn-book-call::before {
  content: none;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 1280px) {
  .navbar {
    padding: 0 120px;
    height: 88px;
  }

  .brand-logo img {
    height: 44px;
  }

  .nav-menu {
    gap: 4px;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60vh;
    background: rgba(10, 0, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    display: none;
    transform: none;
    left: unset;
    white-space: normal;
    z-index: 998;
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
  }


  .nav-menu.open li {
    animation: menuItemIn 0.4s ease forwards;
  }

  .nav-menu.open li:nth-child(1) {
    animation-delay: 0.05s;
  }

  .nav-menu.open li:nth-child(2) {
    animation-delay: 0.10s;
  }

  .nav-menu.open li:nth-child(3) {
    animation-delay: 0.15s;
  }

  .nav-menu.open li:nth-child(4) {
    animation-delay: 0.20s;
  }

  .nav-menu.open li:nth-child(5) {
    animation-delay: 0.25s;
  }

  .nav-menu.open li:nth-child(6) {
    animation-delay: 0.30s;
  }

  .nav-menu.open li:nth-child(7) {
    animation-delay: 0.35s;
  }

  @keyframes menuItemIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 16px;
    font-family: 'Rowdies', sans-serif;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: none;
    letter-spacing: 1px;
    transition: color 0.2s;
  }

  .nav-menu li a:hover,
  .nav-menu li a.active {
    color: #FF0019;
  }

  /* Book A Call button inside fullscreen menu */
  .nav-menu::after {
    content: '';
  }

  .btn-book-call {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 0 1.5rem;
  }
}




@media (max-width: 480px) {
  .navbar {
    padding: 0 1rem;
    height: 60px;
  }

  .brand-logo img {
    height: 28px;
  }

  .nav-menu {
    top: 60px;
  }
}

/* ===================== HERO ===================== */
/* ============================================================
   HERO SECTION — COMPLETE CSS
   ============================================================ */

/* ── Section wrapper ── */
header#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(1.18) brightness(1.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 0, 8, 0.04) 0%, rgba(10, 0, 8, 0.18) 100%),
    linear-gradient(to bottom, rgba(10, 0, 8, 0.08) 0%, rgba(10, 0, 8, 0.06) 50%, rgba(10, 0, 8, 0.22) 100%);
}

/* ── Content wrapper ── */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 144px;
  
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1240px;
  height: 680px;
  flex-shrink: 0;
  position: relative;
}

/* ── Both circles base ── */
.hero-circle,
.hero-text-circle {
  flex-shrink: 0;
  width: 680px;
  height: 680px;
  border-radius: 50%;
}

/* ── Left: Character circle ── */
.hero-circle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.hero-char-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Right: Red text circle ── */
.hero-text-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-left: -160px;
  background: none;
  overflow: hidden;
}

.hero-ellipse-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.hero-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px 0 144px;
  width: 100%;
}

.hero-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 50px;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 400px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  align-items: center;
}

.hero-content .btn-primary,
.hero-content .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 44px;
  border-radius: 8px;
  padding: 12px 18px;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  border: none;
  background: #1B060A;
  color: white;
  flex-shrink: 0;
}

@media (min-width: 1240px) {

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    width: 180px;
    height: 52px;
    font-size: 16px;
    padding: 14px 22px;
  }
}

@media (min-width: 1440px) {

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    width: 200px;
    height: 56px;
    font-size: 17px;
    padding: 15px 26px;
  }
}

.hero-content .btn-primary:hover,
.hero-content .btn-secondary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Show/hide helpers ── */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* ── Mobile card layout (hidden by default) ── */
.hero-mobile-layout {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-mobile-img-wrap {
  width: 380px;
  height: 496px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-mobile-text-wrap {
  width: 380px;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  border-radius: 0 0 16px 16px;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.hero-mobile-text-wrap .hero-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.hero-mobile-text-wrap .hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 100%;
  margin-bottom: 1.8rem;
}

.hero-mobile-text-wrap .hero-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-mobile-text-wrap .btn-primary {
  width: 155px;
  height: 46px;
  font-size: 12px;
  padding: 10px 16px;
  background: #1B060A;
  color: white;
  border: none;
}

.hero-mobile-text-wrap .btn-secondary {
  width: 155px;
  height: 46px;
  font-size: 12px;
  padding: 10px 16px;
  background: transparent;
  background: #1B060A;
  color: white;
}


/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Large Desktop: 1100px – 1400px */
@media (max-width: 1400px) {
  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-inner {
    width: 100%;
    height: auto;
  }

  .hero-circle,
  .hero-text-circle {
    width: 560px;
    height: 560px;
  }

  .hero-text-circle {
    margin-left: -140px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 44px;
  }

  .hero-text {
    padding: 0 40px 0 120px;
  }
}

/* Desktop → Tablet boundary */
@media (max-width: 1023px) {

  .hero-circle,
  .hero-text-circle {
    width: 500px !important;
    height: 500px;
  }

  .hero-text-circle {
    margin-left: -100px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 38px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .hero-text {
    padding: 0 30px 0 100px;
  }

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    width: 160px;
    height: 46px;
    font-size: 15px;
  }
}

/* ── TABLET: 768px – 1100px (both circles) ── */
@media (min-width: 768px) and (max-width: 1022px) {

  /* Force desktop (circle) layout */
  .desktop-only {
    display: flex !important;
  }

  .mobile-only {
    display: none !important;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 24px;
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    justify-content: center;
  }

  .hero-inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

  }

  /* Circle sizes — fluid from 310px (768px screen) to 420px (1100px screen) */
  .hero-circle,
  .hero-text-circle {
    width: clamp(410px, 38vw, 420px);
    height: clamp(410px, 38vw, 420px);
  }

  /* Keep proportional overlap (~17% of circle width) */
  .hero-text-circle {
    margin-left: clamp(-55px, -5.5vw, -72px);
  }

  /* ── Text padding inside red circle ──
     Left padding must clear the overlap zone
     Right padding keeps text from hitting circle edge */
  .hero-text {
    padding: 0 clamp(16px, 2vw, 30px) 0 clamp(68px, 9vw, 105px);
    text-align: left;
  }

  /* ── Title: "Blockchain Game Development Services" ──
     Scales from 20px (768px) to 32px (1100px) */
  .hero-title {
    font-size: clamp(20px, 2.8vw, 32px);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  /* ── Description ── */
  .hero-desc {
    font-size: clamp(11px, 1.3vw, 14px);
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.4rem);
  }

  /* ── Buttons: always side by side in one row ── */
  .hero-btns {
    display: flex;
    flex-direction: row;
    /* side by side */
    flex-wrap: nowrap;
    /* never stack */
    gap: clamp(6px, 1vw, 12px);
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  /* Fluid button width — shrinks gracefully on smaller tablets */
  .hero-content .btn-primary,
  .hero-content .btn-secondary,
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 110px;
    height: 42px;
    font-size: 11px;
    padding: 0 clamp(8px, 1.2vw, 16px);
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Smaller tablet: 768px – 900px */
@media (min-width: 768px) and (max-width: 900px) {
  .hero-content {
    padding-top: 100px;
  }

  .hero-circle,
  .hero-text-circle {
    width: 320px;
    height: 320px;
  }

  .hero-text-circle {
    margin-left: -55px;
  }

  .hero-text {
    padding: 0 16px 0 72px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 28px;
  }

  .hero-desc {
    font-size: 12px;
    line-height: 18px;
    max-width: 185px;
    margin-bottom: 1.2rem;
  }

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    width: 130px;
    height: 40px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  header#hero {
    min-height: 100vh;
    overflow: hidden;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 24px;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 0 16px;
  }

  .hero-mobile-img-wrap {
    width: 550px;
    height: 496px;
  }

  .hero-mobile-text-wrap {
    width: 550px;
  }
}

@media (min-width: 477px) and (max-width: 599px) {
  .hero-mobile-img-wrap {
    width: 400px;
  }

  .hero-mobile-text-wrap {
    width: 400px;
  }
}



@media (min-width: 600px) and (max-width: 700px) {
  .hero-mobile-img-wrap {
    width: 450px;
  }

  .hero-mobile-text-wrap {
    width: 450px;
  }
}

@media (min-width: 700px) and (max-width: 768px) {
  .hero-mobile-img-wrap {
    width: 550px;
  }

  .hero-mobile-text-wrap {
    width: 550px;
  }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
  .hero-mobile-img-wrap {
    width: 100%;
    height: 380px;
  }

  .hero-mobile-text-wrap {
    width: 100%;
  }

  .hero-mobile-text-wrap .hero-title {
    font-size: 26px;
    line-height: 36px;
  }

  .hero-mobile-text-wrap .hero-desc {
    font-size: 13px;
  }
}

/* ===================== STATS ===================== */
.stats-section {
  background: linear-gradient(180deg, rgba(27, 6, 10, 0) 0%, #0C0305 100%);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1564px;
  margin: 0 auto;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
}

.stat-item h3 {
  font-family: 'Rowdies', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0;
}

.stat-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.8vw, 18px);
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-section {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    padding: 1.5rem 1rem;
  }
}

/* ===================== ABOUT ===================== */
.container4 {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container4 {
    padding: 0 0.2rem;
  }
}

@media (max-width: 480px) {
  .container4 {
    padding: 0 0rem;
  }
}

.about-section {
  padding: 0rem 0 ;
  background: var(--bg);
  position: relative;
  /* ← add this */
  overflow: hidden;
}

.about-section .container4 {
  position: relative;
  z-index: 100;
  /* sits above the ::before gradient */
}



.about-layout {
  width: 70%;
  grid-template-columns: 2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #100407 0%, rgba(16, 4, 7, 0) 60.35%, #0C0305 96.32%);
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-label {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 60px;
  letter-spacing: 0;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .about-label {
    font-family: 'Rowdies', sans-serif !important;
    font-size: clamp(24px, 6vw, 36px) !important;
    line-height: 1.2;
  }
}


.about-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-char-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.about-char-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;

  width: 500%;
  height: 60%;
  /* how tall the fade is — adjust to taste */
  background: linear-gradient(to top,
      #0C0305 0%,
      /* ← match your section's bg color */
      rgba(12, 3, 5, 0) 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}



.about-char-img {
  width: 790%;
  max-width: 420px;
 
  padding-top: 80px;
  scale: calc(1.23);
  margin: 0 auto;
  border-radius: 16px;
  display: block;
}

@media (min-width: 1300px) {
  .about-char-img {
    transform: translateX(50px);
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .about-char-img {
    padding-top: 10px;
    display: none;
  }
}

@media (min-width: 1100px) and (max-width: 1200px) {
  .about-char-img {
    padding-top: 10px;
    width: 400%;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-char-img {
    max-width: 320px;
  }
}

/* ===================== ABOUT MOBILE ===================== */
.about-mobile-wrap {
  display: none;
}

@media (max-width: 768px) {

  /* Remove about section padding on mobile */
  .about-section {
    padding: 0;
  }

  .about-section .container {
    padding: 0;
    max-width: 100%;
  }

  /* Show mobile layout */
  .about-mobile-wrap.mobile-only {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: 100%;

    min-height: 284px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
  }

  /* Background image fills the box */
  .about-mobile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    min-height: 100%;
  }

  /* Dark overlay */
  .about-mobile-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 0, 8, 0.0) 0%,
        rgba(10, 0, 8, 0.3) 40%,
        rgba(10, 0, 8, 0.6) 100%);
    z-index: 1;
  }

  /* Text sits on top */
    .about-mobile-overlay {
      position: relative;
      z-index: 2;
      padding: 32px 24px 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

  /* Hide red ABOUT US label */
  .about-mobile-overlay .about-label {
    display: none;
  }

  /* About Us heading */
  .about-mobile-overlay .about-heading {
    font-family: 'Rowdies', sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 1.2rem;
  }

  /* Description text */
  .about-mobile-overlay .about-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    color: rgba(192, 189, 189, 0.85);
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .about-mobile-wrap.mobile-only {
    max-width: 100%;
    min-height: 584px;
    height: auto;
  }

  .about-mobile-overlay .about-heading {
    font-size: 26px;
    line-height: 36px;
  }

  .about-mobile-overlay .about-desc {
    font-size: 18px;
    line-height: 24px;
  }
}

/* ===================== SERVICES ===================== */
/* ===================== SERVICES SECTION — FIGMA MATCH ===================== */

/* Section background */
.bservices-section {
  background: #0a0008;
  padding: 80px 0;
}

@media (max-width: 500px) {
  .bservices-section {
    padding: 24px 0;
  }
}

/* Label "WHAT WE DO" */
.services-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: #FC0820;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

/* Main heading — bold heavy like Figma */
.services-main-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 3.5rem;
}

/* Grid */
.bservices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-bottom: 3rem;
}

/* BASE CARD — no border, no background, transparent */
.bservice-card {
  background: transparent;
  border: none !important;
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: none;
  cursor: pointer;
}

.bservice-card:hover {
  background: transparent;
  border: none !important;
  transform: none;
}

/* FEATURED card — red gradient with rounded corners */
.bservice-card.featured {
  background: linear-gradient(160deg, #FF0019 0%, #54020A 100%);
  border: none !important;
  border-radius: 20px;
  padding: 2rem 1.6rem;
  cursor: pointer;
}

.bservice-card.featured:hover {
  background: linear-gradient(160deg, #FF0019 0%, #54020A 100%);
  transform: translateY(-4px);
}

/* ICON — no circle, just raw icon */
.bservice-icon-box {
  width: 44px;
  height: 44px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bservice-icon-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(1);
}

/* Card title */
.bservice-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}

/* Card description */
.bservice-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  transition: none;
}

/* Featured card text colors */
.bservice-card.featured h4,
.bservice-card.featured p {
  color: #ffffff;
}

.bservice-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

/* Non-featured hover — no color change */
.bservice-card:not(.featured):hover h4,
.bservice-card:not(.featured):hover p {
  color: inherit;
}

/* CTA Button */
.services-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  width: auto;
  height: 52px;
  background: #FC0820;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-services-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .services-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.15;
  }

  .bservices-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .bservice-card {
    max-width: 100%;
    min-height: auto;
    padding: 1.4rem 1rem;
    border: none !important;
    background: transparent !important;
  }

  .bservice-card.featured {
    background: linear-gradient(160deg, #FF0019 0%, #54020A 100%) !important;
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
  }

  .bservice-icon-box {
    width: 36px;
    height: 36px;
    border: none !important;
    background: transparent !important;
  }

  .bservice-icon-box img {
    width: 36px;
    height: 36px;
  }

  .btn-services-cta {
    width: 100%;
    max-width: 340px;
  }
}

/* ===================== SERVICES MOBILE ===================== */
@media (max-width: 768px) {

 

  /* Heading */
  .services-main-title {
    font-family: 'Rowdies', sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  /* Single column grid */
  .bservices-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* Card */
  .bservice-card {
    width: 100%;
    max-width: 380px;
    min-height: 260px;
    margin: 0 auto;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-radius: 12px;
    background: transparent;
  }

  .bservice-card.featured {
    background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
    border-color: transparent;
  }

  /* Icon box */
  .bservice-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }

  .bservice-icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  /* Card title */
  .bservice-card h4 {
    font-family: 'Radley', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
  }

  /* Card description */
  .bservice-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #B3B3B3;
    margin: 0;
  }

  .bservice-card.featured p {
    color: rgba(255, 255, 255, 0.85);
  }

  /* CTA button */
  .services-cta-wrap {
    text-align: center;
    margin-top: 1.5rem;
    white-space: nowrap;
  }

  .btn-services-cta {
    width: 100%;
    max-width: 380px;
    height: 32px;
    font-size: 12px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .bservices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .bservice-card {
    min-height: 240px;
    padding: 1.6rem 1.4rem;
    border-radius: 14px;
    background: transparent;
    border: none !important;
  }

  .bservice-card.active-card {
    background: linear-gradient(160deg, #FF0019 0%, #54020A 100%) !important;
    border: none !important;
    border-radius: 16px;
  }

  .services-main-title {
    font-size: 38px;
    line-height: 1.15;
  }
}

@media (max-width: 480px) {
  .services-main-title {
    font-size: 26px;
    line-height: 36px;
  }

  .bservice-card {
    max-width: 100%;
    min-height: auto;
  }
}

/* ===================== TECH STACK ===================== */
.tech-section {
  padding: 0rem 0 5rem;
  background: var(--bg);
}

@media (max-width: 500px) {
  .tech-section {
    padding: 24px 0;
  }
}

.tech-main-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Tabs wrapper with scroll ── */
.tech-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.tech-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.tech-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  min-width: max-content;
}

.tech-tab {
  padding: 0.75rem 1.4rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
  white-space: nowrap;
}

.tech-tab.active {
  color: #ffffff;
  border-bottom: 2px solid #FC0820;
}

.tech-tab:hover {
  color: #ffffff;
}

/* ── Logo panels ── */
.tech-logos-wrap {
  display: none;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  padding: 1rem 0;
}

.tech-logos-wrap.active {
  display: flex;
}

/* ── Individual logo card ── */
.tech-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - (4 * 1.2rem)) / 5);
  height: 100px;
  transition: transform 0.2s;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.tech-logo-card:hover {
  transform: translateY(-2px);
}


.tech-logo-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
}

.tech-logo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1);
  display: block
}

.tech-logo-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-transform: uppercase;
  display: none;
}

@media (max-width: 1024px) {
  .tech-main-title {
    font-size: 38px;
    line-height: 1.1;
  }
}

/* ===================== TECH STACK MOBILE ===================== */
@media (max-width: 768px) {

  .tech-main-title {
    font-family: 'Rowdies', sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0;
    color: #fff;
    text-align: left;
    margin-bottom: 2rem;
  }

  /* Tabs scroll horizontally */
  .tech-tabs-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tech-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .tech-tabs {
    display: flex;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .tech-tab {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0.75rem 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }

  .tech-tab.active {
    color: #ffffff;
    border-bottom: 2px solid #FC0820;
  }

  /* 2 cards per row on mobile */
  .tech-logos-wrap {
    display: none;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
    padding: 0.5rem 0;
  }

  .tech-logos-wrap.active {
    display: flex;
  }

  /* Card size on mobile */
  .tech-logo-card {
    width: calc((100% - 0.8rem) / 2);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
  }

  .tech-logo-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.8rem;
  }

  .tech-logo-img-box img {
    width: 100%;
    display: flex;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .tech-logos-wrap {
    gap: 1rem;
    justify-content: flex-start;
  }

  .tech-logo-card {
    width: calc((100% - (2 * 1rem)) / 3);
    height: 110px;
    background: transparent;
    border: none;
  }
}

@media (max-width: 480px) {
  .tech-main-title {
    font-size: 26px;
    line-height: 36px;
  }

  .tech-logo-card {
    height: 90px;
  }
}

/* ===================== WHY CHOOSE US ===================== */
.why-section {
  padding: 1rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

@media (max-width: 500px) {
  .why-section {
    padding: 24px 0;
  }
}

/* Background image */
.why-bg-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-bg-overlay {
  .why-bg-overlay {
    background: linear-gradient(to bottom,
        rgba(10, 0, 8, 0.1) 0%,
        rgba(10, 0, 8, 0.15) 50%,
        rgba(10, 0, 8, 0.2) 100%);
  }
}

/* Heading */
.why-main-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid — desktop 3 columns */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* Card */
.why-card {
  width: 100%;
  height: 220px;
  background: #0C030599;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

/* Icon + title on same line */
.why-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.why-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.why-card h4 {
  font-family: 'Radley', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}

/* Description indented to align under title not icon */
.why-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #B3B3B3;
  margin: 0;
  padding-left: calc(48px + 0.8rem);
}

@media (max-width: 1150px) {
  .why-card p {
    font-size: 12px;
    line-height: 18px;
    /* scale line-height proportionally */
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-main-title {
    font-size: 38px;
    line-height: 1.1;
  }
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {

  /* Switch background images */
  .why-bg-img-wrap.desktop-only {
    display: none !important;
  }

  .why-bg-img-wrap.mobile-only {
    display: block !important;
  }

  .why-main-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  /* Single column on mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Card mobile style */
  .why-card {
    background: #0C030599;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    min-height: auto;
    padding: 1.4rem 1.2rem;
    gap: 0.6rem;
  }

  /* Icon inline with title */
  .why-card-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .why-icon-box {
    width: 36px;
    height: 36px;
  }

  .why-icon-box img {
    width: 36px;
    height: 36px;
  }

  .why-card h4 {
    font-size: 18px;
    line-height: 24px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 22px;
    color: #B3B3B3;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .why-main-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .why-card {
    padding: 1.2rem 1rem;
  }
}

/* ===================== PORTFOLIO ===================== */
.bportfolio-section {
  padding: 1rem 0 5rem;
  background: var(--bg);
}

@media (max-width: 500px) {
  .bportfolio-section {
    padding: 24px 0;
  }
}

.bportfolio-section .container {
  overflow: visible;
}

/* DESKTOP */
.bportfolio-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.9rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  padding-bottom: 1rem;
  padding-top: 2rem;
  /* ← space for scale hover on top */
  margin-top: -2rem;
  /* ← compensate so layout doesn't shift */
}

.bportfolio-grid::-webkit-scrollbar {
  display: none;
}

.bportfolio-grid .bportfolio-item {
  flex: 0 0 220px;
  min-width: 220px;
}

/* MOBILE */
.bportfolio-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 3rem;
  overflow-x: auto;
  overflow-y: visible;

  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;

  scrollbar-width: none;
}



.bportfolio-scroll::-webkit-scrollbar {
  display: none;
}

.bportfolio-scroll .bportfolio-item {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

/* CARD */
.bportfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

/* Desktop hover */
@media (min-width: 901px) {
  .bportfolio-card:hover {
    transform: scale(1.16);
  }
}

/* Mobile no hover */
@media (max-width: 900px) {
  .bportfolio-card:hover {
    transform: none;
  }
}

.bportfolio-card img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.bportfolio-scroll .bportfolio-card img {
  height: 480px;
}

/* INFO OVERLAY */
.bportfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 0, 8, 0.92));
  padding: 1.5rem 0.5rem 0.8rem;
}

.bportfolio-info h4 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.bportfolio-info p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .bportfolio-info h4 {
    font-size: 12px;
  }

  .bportfolio-info p {
    font-size: 12px;
  }
}

/* ITEM WRAPPER */
.bportfolio-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* LABEL */
.bportfolio-label {
  text-align: center;
  font-family: 'Radley', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 18px;
  display: block;
}

@media (max-width: 768px) {
  .bportfolio-label {
    font-size: 20px;
  }
}

/* ============================================
   PORTFOLIO DOTS
   ============================================ */
.bportfolio-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .bportfolio-dots {
    display: none;
  }
}

.bportfolio-dot {
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.bportfolio-dot.active {
  width: 28px;
  background: #FF0019;
}

.bportfolio-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

/* SHOW/HIDE */
.desktop-only {
  display: flex !important;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }
}

/* ===================== PRICING ===================== */
/* ===================== PRICING ===================== */
.pricing-section {
  padding: 1rem 0 5rem;
  background: #0C0305;
}

@media (max-width: 500px) {
  .pricing-section {
    padding: 24px 0;
  }
}

.container3 {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 3rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  align-items: center;
  justify-content: center;
}

/* BASE CARD */
.pricing-card {
  background: #0C0305;
  /* slightly lighter/more visible */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}

.pricing-card {
  background: #0C0305;
  /* slightly lighter/more visible */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}


.pricing-card:hover {
  border-color: rgba(255, 0, 25, 0.5);
  transform: translateY(-4px);
}

/* POPULAR CARD — selected/active effect */
.pricing-card.popular {
  background: #1B060A;
  border: 2.6px solid var(--red);
  border-radius: 16px;
  transform: scale(1.04);
  z-index: 2;
  padding: 2.4rem 1.8rem;
}

.pricing-card.popular:hover {
  transform: scale(1.06);
}

/* POPULAR BADGE */
.popular-badge {
  position: absolute;
  top: -1px;
  right: -2px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.28rem 1.1rem;
  border-radius: 0 16px 0 10px;
  /* top-right matches card corner */
  white-space: nowrap;
  text-transform: uppercase;
}

/* PRICE ROW */
.pricing-top {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-family: 'Inter', sans-serif;
  font-size: 25.98px;
  font-weight: 700;
  color: #fff;
  line-height: 36.37px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--muted);
  padding-bottom: 2px;
}

.pricing-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

/* FEATURES */
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-features li {
  font-size: 0.84rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li i {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

/* BUTTONS */
.btn-pricing-outline {
  width: 100%;
  padding: 0.82rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  letter-spacing: 0.3px;
}

.btn-pricing-outline:hover {
  border-color: var(--red);
  background: rgba(255, 0, 25, 0.08);
}

.btn-pricing-red {
  width: 100%;
  padding: 0.85rem;
  background: var(--red);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: 0.5px;
}

.btn-pricing-red:hover {
  opacity: 0.88;
}

/* CTA BUTTON */
.pricing-cta {
  text-align: center;
  margin-top: 1rem;
}

.btn-pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 2.4rem;
  background: var(--red);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-pricing-cta:hover {
  opacity: 0.88;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-card {
    flex: 1 1 calc(50% - 0.6rem);
    max-width: calc(50% - 0.6rem);
  }

  .pricing-card.popular {
    transform: scale(1);
  }
}

/* 2 cards → 1 card */
@media (max-width: 560px) {
  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===================== CTA + CONTACT ===================== */
/* ===================== CTA + CONTACT ===================== */
/* ===================== CTA + CONTACT ===================== */




.bcta-section {
  padding: 1rem 0;
  position: relative;
}

.bcta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      #0C0305 0%,
      transparent 30%,
      transparent 70%,
      #0C0305 100%);
  z-index: 0;
  pointer-events: none;
}

.bcta-section .container {
  position: relative;
  z-index: 1;
}

.bcta-layout {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
  padding: 1rem 0 ;
}

@media (max-width: 1000px) {
  .bcta-layout {
    padding: 24px 0;
  }
}

@media (max-width: 500px) {
  .bcta-layout {
    padding: 24px 0;
  }
}

/* LEFT = form side */
.bcta-left {
  order: 1;
}

/* RIGHT = contact info side */
.bcta-right {
  order: 2;
}

.bcta-heading {
  font-family: 'Rowdies', sans-serif;
  font-weight: 700;
  font-size:38px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .bcta-heading {
    font-size: 26px;
  }
}

.bcta-desc {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 440px;
}

/* FORM — 2 col grid */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.82rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 0.84rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(97, 94, 94, 0.3);
}

/* Phone full width */


/* Textarea full width */
.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 110px;
}

/* Button left aligned, auto width */
.contact-form button[type="submit"],
.contact-form .fcf-submit-btn {
  grid-column: 1 / -1;
  justify-self: start;
  width: auto;
  padding: 0.82rem 2rem;
  background: var(--red);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}

.contact-form button[type="submit"]:hover,
.contact-form .fcf-submit-btn:hover {
  opacity: 0.88;
}

.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form .contact-field.full-width {
  grid-column: 1 / -1;
}

.contact-form .contact-field label {
  font-size: 0.82rem;
  color: #ffffff;
  font-family: var(--font-body);
}

/* RIGHT side */
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-title {
  font-family: 'Rowdies', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 26px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item>i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
  color: #fff;
}

.contact-item p {
  font-size: 0.83rem;
  color: #fff;
  line-height: 1.75;
  padding-top: 0.5rem;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 32px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bcta-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bcta-desc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form input[type="tel"],
  .contact-form textarea,
  .contact-form .fcf-submit-btn {
    grid-column: 1;
  }
}

/* ===================== FOOTER ===================== */
.footer {

  border-top: 0.1px solid #494848;
  padding: 0.8rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 0.5rem;
}

.footer-links a {
  color: #fff;
  font-size: 0.78rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--red);
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 0, 8, 0.88);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #13000e;
  border: 1px solid rgba(255, 0, 25, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  scrollbar-width: none;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box::-webkit-scrollbar {
  display: none;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 0, 25, 0.12);
  border: 1px solid rgba(255, 0, 25, 0.25);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--grad-red);
  border-color: transparent;
}

.modal-title {
  font-family: 'Rowdies', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
}

.gradient-text {
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 25, 0.22);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select option {
  background: #13000e;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255, 0, 25, 0.06);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.3s, transform 0.2s;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .modal-box {
    padding: 1.8rem 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-title {
    font-size: 1.6rem;
  }
}

.consult-box {
  background: #13000e;
  border: 1px solid rgba(255, 0, 25, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  scrollbar-width: none;
}

.modal-overlay.active .consult-box {
  transform: translateY(0);
}

.consult-box::-webkit-scrollbar {
  display: none;
}

.consult-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 0, 25, 0.12);
  border: 1px solid rgba(255, 0, 25, 0.25);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.consult-close:hover {
  background: var(--grad-red);
  border-color: transparent;
}

.consult-title {
  font-family: 'Rowdies', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 0.4rem;
}

.consult-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.consult-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.consult-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.consult-group input,
.consult-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #111;
  outline: none;
  font-family: inherit;
  resize: none;
  transition: border-color 0.2s;
}

.consult-group input:focus,
.consult-group textarea:focus {
  border-color: var(--red);
}

.consult-group input::placeholder,
.consult-group textarea::placeholder {
  color: #aaa;
}

.consult-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, #54020A 91.07%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-bar);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.15s;
}

.consult-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .consult-box {
    padding: 1.8rem 1.2rem;
  }

  .consult-title {
    font-size: 1.3rem;
  }
}

/* ===================== TABLET GAP FIX ===================== */
@media (min-width: 768px) and (max-width: 1100px) {
  header#hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 1.5rem;
  }

  .stats-section {
    padding: 4rem 0;
  }

  /* ── Uniform section padding for all sections on tablet ── */
  .about-section,
  .bservices-section,
  .tech-section,
  .why-section,
  .bportfolio-section,
  .pricing-section,
  .bcta-section {
    padding: 2rem 0;
  }

  /* ── Uniform container side padding ── */
  .about-section .container,
  .bservices-section .container,
  .tech-section .container,
  .why-section .container,
  .bportfolio-section .container,
  .pricing-section .container,
  .bcta-section .container,
  .container,
  .container2,
  .container3 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .hero-content {
    padding-top: px;
    padding-bottom: 1rem;
  }

  /* Slightly less padding on smaller tablets */
  .about-section,
  .bservices-section,
  .tech-section,
  .why-section,
  .bportfolio-section,
  .pricing-section,
  .bcta-section {
    padding: 2rem 0;
  }

  .container,
  .container2,
  .container3 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===================== ABOUT SECTION — IPAD AIR FIX (820px) ===================== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Force hide mobile image overlay */
  .about-mobile-wrap.mobile-only {
    display: none !important;
  }

  /* Show desktop layout as clean text block */
  .about-section {
    padding: 4rem 0;
    background: var(--bg);
    position: relative;
  }

  /* Remove pseudo background bleed */
  .about-section::before {
    display: none !important;
  }

  /* Single column — text only, no image */
  .about-layout {
    display: block !important;
    width: 100%;
  }

  /* Hide character girl image completely */
  .about-char-wrap,
  .about-char-img {
    display: none !important;
  }

  /* Clean text styling */
  .about-label {
    font-size: 38px;
    letter-spacing: 2px;
    color: var(--red);
    font-family: 'Rowdies', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    display: block;
  }

  .about-heading,
  .about-section h2 {
    font-family: 'Rowdies', sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.4rem;
  }

  .about-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    max-width: 680px;
  }
}

/* ===================== PRICING — 1024px ONE LINE FIX ===================== */
@media (min-width: 960px) and (max-width: 1100px) {
  .pricing-grid {
    flex-wrap: nowrap !important;
    gap: 0.8rem !important;
    align-items: center !important;
  }

  .pricing-card {
    flex: 1 1 0 !important;
    max-width: unset !important;
    min-width: 0 !important;
    padding: 1.4rem 1rem !important;
  }

  .pricing-card.popular {
    transform: scale(1) !important;
    padding: 1.6rem 1rem !important;
  }

  .pricing-price {
    font-size: 20px !important;
  }

  .pricing-subtitle {
    font-size: 0.75rem !important;
  }

  .pricing-features li {
    font-size: 0.76rem !important;
  }

  .btn-pricing-outline,
  .btn-pricing-red {
    font-size: 0.75rem !important;
    padding: 0.65rem !important;
  }
}

/* ===================== WHY CARDS — 1024px PADDING FIX ===================== */
@media (min-width: 960px) and (max-width: 1100px) {
  .why-card {
    height: auto !important;
    min-height: unset !important;
    padding: 1rem 1.2rem !important;
    gap: 0.5rem !important;
  }

  .why-icon-box,
  .why-icon-box img {
    width: 36px !important;
    height: 36px !important;
  }

  .why-card h4 {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .why-card p {
    font-size: 12px !important;
    line-height: 18px !important;
    padding-left: calc(36px + 0.8rem) !important;
  }
}

/* ===================== WHY CARDS — 600px–768px PADDING FIX ===================== */
@media (min-width: 600px) and (max-width: 768px) {
  .why-card {
    height: auto !important;
    min-height: unset !important;
    padding: 1rem 1rem !important;
    gap: 0.5rem !important;
  }
}

/* ===================== WHY CARDS — MOBILE < 600px HEIGHT FIX ===================== */
@media (max-width: 599px) {
  .why-card {
    height: auto !important;
    min-height: unset !important;
  }
}


/* ===================== SPECIFIC CTA BUTTONS ===================== */

/* Request A Free Consultation */
.btn-services-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  width: auto !important;
  min-width: 220px !important;
  border-radius: 8px !important;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, ) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

/* Hire Dedicated Game Developers */
.btn-pricing-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  width: auto !important;
  min-width: 220px !important;
  border-radius: 8px !important;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, ) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

/* Book A Free Consultation (contact form submit) */
.fcf-submit-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  width: auto !important;
  min-width: 220px !important;
  border-radius: 8px !important;
  background: linear-gradient(183.91deg, #FF0019 -28.01%,) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

/* Send Message (Book A Call modal) */
.btn-submit {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  width: 100% !important;
  border-radius: 8px !important;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, ) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

/* Submit (Consultation modal) */
.consult-submit {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  height: 52px !important;
  padding: 0 2rem !important;
  width: 100% !important;
  border-radius: 8px !important;
  background: linear-gradient(183.91deg, #FF0019 -28.01%, ) !important;
  color: #fff !important;
  border: none !important;
  letter-spacing: 0.3px !important;
}

/* Mobile */
@media (max-width: 480px) {

  .btn-services-cta,
  .btn-pricing-cta,
  .fcf-submit-btn {
    font-size: 14px !important;
    height: 46px !important;
    min-width: unset !important;
    width: 100% !important;
  }
}

@media (min-width: 900px) and (max-width: 1020px) {
  .hero-circle,
  .hero-text-circle {
    width: 340px !important;
    height: 340px !important;
  }

  .hero-text-circle {
    margin-left: -70px !important;
  }

  .hero-text {
    padding: 0 12px 0 80px !important;
  }

  .hero-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 0.4rem !important;
  }

  .hero-desc {
    font-size: 11px !important;
    line-height: 1.5 !important;
    margin-bottom: 0.6rem !important;
  }

  .hero-btns {
    gap: 6px !important;
  }

  .hero-content .btn-primary,
  .hero-content .btn-secondary,
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100px !important;
    height: 36px !important;
    font-size: 10px !important;
    padding: 0 8px !important;
  }
}