
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@600;700;800&display=swap');


:root {
  --color-brand:        #8B3DFF;
  --color-brand-strong: #2A0A55;
  --color-brand-soft:   #F4ECFF;
  --color-brand-accent: #C13BD6;
  --color-brand-hover:  #7A2BEE;
  --color-brand-deep:   #5B1BB8;
  --color-brand-light:  #B57BFF;

  --color-text:        #0F1115;
  --color-text-strong: #1F2330;
  --color-text-muted:  #4B5260;
  --color-text-subtle: #6B7280;
  --color-text-faint:  #9AA1AD;


  --color-surface:        #FFFFFF;
  --color-surface-muted:  #F7F7F8;
  --color-surface-subtle: #F2F3F5;
  --color-border:         #E5E7EB;
  --color-border-soft:    #EFF1F4;

  --color-success: #22C55E;
  --color-danger:  #E94B3C;
  --color-instagram: #E1306C;
  --color-facebook:  #1877F2;
  --color-x:         #000000;
  --color-youtube:   #FF0000;
  --color-linkedin:  #0A66C2;

  /*  gradients  */
  --gradient-brand:   linear-gradient(135deg, var(--color-brand), var(--color-brand-accent));
  --gradient-heading: linear-gradient(90deg, var(--color-brand-strong), var(--color-brand) 60%, var(--color-brand-accent));
  --gradient-soft:    linear-gradient(135deg, var(--color-brand-soft), #fff);

  /* fonnt family based on element  */
  --font-body:    'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-button:  'Nunito', system-ui, sans-serif;

  --font-size-display: 4rem;
  --font-size-h1:      3rem;
  --font-size-h2:      2.25rem;
  --font-size-h3:      1.5rem;
  --font-size-h4:      1.25rem;
  --font-size-lg:      1.125rem;
  --font-size-base:    1rem;
  --font-size-sm:      0.875rem;
  --font-size-xs:      0.75rem;

  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  --lh-tight:   1.1;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.6;

  /* spacing & gaps  */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 20px;  --space-6: 24px;  --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px;

  /* main container*/
  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 32px);

  /* border redius */
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* button and box shadows */
  --shadow-sm:    0 1px 2px rgba(15, 17, 21, 0.06);
  --shadow-md:    0 8px 24px rgba(15, 17, 21, 0.08);
  --shadow-lg:    0 20px 60px rgba(15, 17, 21, 0.10);
  --shadow-brand: 0 12px 30px rgba(139, 61, 255, 0.30);
  --focus-ring: rgba(139, 61, 255, 0.35);
  --ease:       cubic-bezier(.2, .7, .2, 1);
  --dur:        250ms;
  --dur-slow:   400ms;
  --transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}


/*  reset default styleing  + base styleing  */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-strong);
  background: var(--color-surface-muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }

a {
  color: var(--color-text-strong);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--color-brand-hover); }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}


/* all texts configrations  */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--font-size-h1); font-weight: var(--fw-black); line-height: var(--lh-tight); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); font-weight: var(--fw-semibold); }
p  { color: var(--color-text-muted); }
strong { font-weight: var(--fw-semibold); color: var(--color-text-strong); }


/*  main layout   */

.container,
.page-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0;
}


.section           
 { padding-block: var(--space-16); }
.section--surface,
.section--muted     { background: var(--color-surface-muted); }


.stack          {display: flex;flex-direction: column;gap: var(--space-4);height: 100%;}
.stack--lg,
.stack--large   { gap: var(--space-8); }

/* responsive grid (1 → 2 → 3) */
.grid     { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.grid--3  { grid-template-columns: 1fr; }
@media (min-width: 768px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }


/* small re-usedble classes to reduce time --- */
.text-center,
.t-center   { text-align: center; }
.text-muted,
.t-muted    { color: var(--color-text-subtle); }
.text-danger,
.accent-red { color: var(--color-danger); }

/* gradient text helpers */
.text-gradient,
.grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.text-gradient--heading,
.grad-purple {
  background: var(--gradient-heading);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}


.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.hide-md { display: initial; }
.show-md { display: none; }
@media (min-width: 768px) {
  .hide-md { display: none; }
  .show-md { display: initial; }
}


.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 42px;
  height: 42px;
  padding: 0 28px;
  font-family: var(--font-button);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--color-text-strong);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  transition: var(--transition);
  /* max-width: 160px; */
  /* width: 160px; */
}
.btn:hover,  .button:hover  { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active, .button:active { transform: translateY(0); }

.btn--lg, .button--large { min-height: 56px; height: 56px; padding-inline: 36px; font-size: var(--font-size-lg); }

/* btn colors */

.btn--primary,
.button--primary {
  color: #fff;
  background: linear-gradient(
22deg, rgba(106, 47, 155, 1) 0%, rgba(181, 100, 247, 1) 55%);
}
.btn--primary:hover,
.button--primary:hover {
  box-shadow: var(--shadow-brand);
  filter: brightness(1.05);
background: #6A2F9B;
background: radial-gradient(circle, rgba(106, 47, 155, 1) 0%, rgba(100, 44, 145, 1) 77%);
color: white;
}


.btn--outline,
.button--outline {
  color: var(--color-brand-hover);
  background: transparent;
  border: 1.5px solid var(--color-brand);
}
.btn--outline:hover,
.button--outline:hover {
  background: linear-gradient(
22deg, rgba(106, 47, 155, 1) 0%, rgba(181, 100, 247, 1) 55%);
  color: var(--color-brand-soft);
}

.btn--ghost,
.button--ghost {
  color: var(--color-text-strong);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover,
.button--ghost:hover { border-color: var(--color-text-faint);  background: linear-gradient(
22deg, rgba(106, 47, 155, 1) 0%, rgba(181, 100, 247, 1) 55%);
  color: var(--color-brand-soft); }



.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-strong);
  background: var(--color-surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}


.icon-chip,
.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: var(--transition);
}
.icon-chip:hover, .social-chip:hover { transform: scale(1.06); box-shadow: var(--shadow-sm); }

/* cards (global design) ---------- */

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }


.card--feature { padding: var(--space-6); box-shadow: var(--shadow-sm); }

.card__media {
  margin-bottom: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-surface-subtle);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }


.card--mini,
.card--compact {
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: none;
  transition: var(--transition);
}
.card--mini:hover,
.card--compact:hover {
  border-color: var(--color-brand-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* shared section title with gradent text */
.section-title {
  font-size: var(--font-size-h1);
  font-weight: var(--fw-black);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: var(--lh-snug);
}
.section-lead,
.section-subtitle {
  max-width: 720px;
  margin: var(--space-4) auto 0;
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}


.feature,
.feature-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--space-3) var(--space-4);
  align-items: start;
}
.feature__check,
.feature-item__icon {
  width: 22px; height: 22px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  font-size: 13px;
}
.feature__title, .feature-item__title { font-weight: var(--fw-semibold); color: var(--color-text); }
.feature__body,  .feature-item__text  { grid-column: 2; color: var(--color-text-muted); font-size: var(--font-size-sm); }

.feature-list { display: grid; gap: var(--space-4); }



/*  other sections design  */


/* navbar design */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-surface);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--color-border-soft);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { height: 56px; width: auto; }


.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav--primary { gap: var(--space-10); }
.nav__link {
  position: relative;
  padding: var(--space-2) 0;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-text-strong);
}
.nav__link:hover { color: var(--color-brand-hover); }
.nav__link--with-icon { display: inline-flex; align-items: center; gap: 6px; }
.nav__caret { transition: transform var(--dur) var(--ease); }
.nav__link:hover .nav__caret { transform: rotate(180deg); }

.nav-actions { display: inline-flex; align-items: center; gap: var(--space-3); }

/* hamburger button */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: var(--transition);
}
.hamburger:hover {
  border-color: var(--color-brand-light);
  color: var(--color-brand-hover);
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(15, 17, 21, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.mobile-menu.is-open { display: block; opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--color-surface);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-text);
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--space-2); }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--font-size-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}
.mobile-menu__link:hover {
  background: var(--color-brand-soft);
  color: var(--color-brand-deep);
}
.mobile-menu__actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.mobile-menu__actions .btn,
.mobile-menu__actions .button { width: 100%; }





/* hero banner */

.hero {
  background: var(--color-surface-muted);
  padding-block: clamp(3rem, 6vw, 6rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.hero__lead {
  font-size: clamp(1rem, 1.2vw, var(--fs-lg));
  color: var(--color-text-muted);
  max-width: 60ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-54);
}


.hero__media {
  position: relative;
  width: 100%;
}

.hero__posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1rem);
}
.poster {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #2A0A1A;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster__play {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: clamp(50px, 5vw, 64px);
  height: clamp(50px, 5vw, 64px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
}

.poster__play svg {
    width: 45px;
}

.hero__social {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
  width: 70%;
  max-width: 100%;
}

.hero__social-title {
  font-size: var(--font-size-h4);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.hero__social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* gap: 40px; */
  width: 100%;
  /* background: aqua; */
  justify-content: space-between;
}

.badge--star {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  padding: 0.4rem 0.8rem;
  width: max-content;
}

.badge__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__posters .poster {
    width: 293px;
    height: 387px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #2A0A1A;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}



/* our clients  */

.clients {
  background: #ffffff;
  padding: 50px 0;
}

.clients .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}



.clients__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}


.clients__left {
  min-width: 220px;
}

.clients__stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.clients__stat-label {
  margin-top: 8px;
  font-size: 16px;
  color: #6b7280;
}


.clients_divider {
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff 0%, #626262 20%, #000000 20%, #000000 80%, #55555f 80%, #ffffff 100%);
}

.clients__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.clients__logo {
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
  transition: 0.25s ease;
}

.clients__logo img {

  width: 160px;
  object-fit: contain;
}
.clients__logo .global img {
  height: 50px;
  width: 160px;
  object-fit: contain;
}

.clients__logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

a.clients__logo.global img {
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
  .clients__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .clients_divider {
    display: none;
  }

  .clients__logos {
    flex-wrap: wrap;
    gap: 24px;
  }
}


/* services  */


.services-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.services-card__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: var(--space-12);
    align-items: start;
}
.services-card__head { display: flex; align-items: center; gap: var(--space-3); }
.services-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
.services-card__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-10);
}


.plan {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  height: 140px;
}
.plan:hover { border-color: var(--color-brand-light); }
.plan.is-selected {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px var(--color-brand-soft);
}

.plan__pop {
 
  display: inline-flex;
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: #fff;
  background: var(--color-text-strong);
  border-radius: var(--radius-pill);
}
.plan__body  { display: flex; flex-direction: column; gap: var(--space-2); }
.plan__title { font-weight: var(--fw-semibold); color: var(--color-text); font-size: var(--fs-lg); }
.plan__desc  { color: var(--color-text-subtle); font-size: var(--fs-sm); }
.plan__radio {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.plan.is-selected .plan__radio {
  background: var(--gradient-brand);
  border-color: transparent;
}

.services-divider {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #626262 20%, #000000 20%, #000000 80%, #55555f 80%, #ffffff 100%);
}



.plan.is-selected {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.plan_item {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


/* process section */

.step {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: var(--transition);
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step__head {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.step__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 4px;
}
.step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-text);
}
.step__body { color: var(--color-text-muted); font-size: var(--fs-sm); }
.step .card__media { aspect-ratio: 16 / 10; margin: 0; }


.platform {
  padding: var(--space-5) var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.platform__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--color-text); }
.platform__body  { color: var(--color-text-muted); font-size: var(--fs-sm); }

#portfolio .stack--lg, .stack--large {
    gap: var(--space-20);
}


/*  gallery */
.gallery { display: flex; flex-direction: column; gap: var(--space-8); }
.gallery__head { display: flex; align-items: center; }
.gallery__title {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-text);
  letter-spacing: -0.02em;
  flex-wrap: wrap;
}

.gallery__pill {
  display: inline-block;
  width: 160px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 4px solid var(--color-brand);
  background-image: url(../media/people.jpg);
  background-size: cover;
  background-position-y: -27px;
}

.gallery__viewport { position: relative; }
.gallery__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}


.vcard { display: flex; flex-direction: column; gap: var(--space-3); margin: 0; }
.vcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-text);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.vcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.vcard__media:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.vcard__media:hover img { transform: scale(1.04); }
.vcard__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.vcard__media:hover .vcard__play {
  background: var(--gradient-brand);
  transform: translate(-50%, -50%) scale(1.06);
}
.vcard__label {
  text-align: center;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}


.gallery__next {
  position: absolute;
  top: 50%; right: -8px;

  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: var(--transition);
}
.gallery__next:hover,
.gallery__prev:hover

{
  background: var(--color-brand-hover);
}

#portfolio-gallery{
  padding-top: 80px;
}
.gallery__viewport {
  position: relative;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: var(--space-5);
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.vcard {
  flex: 0 0 calc((100% - (3 * var(--space-5))) / 4);
}

/* buttons */
.gallery__prev,
.gallery__next {
  position: absolute;
  top: 50%;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

.gallery__prev { left: -10px; }
.gallery__next { right: -10px; }

/* why choose me */


.why {
    background: var(--color-surface);
    padding: 140px 0px;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.why__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
  background: var(--color-surface-subtle);
}
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: var(--fw-black);
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.why__body { display: flex; flex-direction: column; gap: var(--space-4); }
.why__body p { font-size: var(--fs-base); color: var(--color-text-muted); }
.why__cta { margin-top: var(--space-4); }


/*  testimonials  */
.tm { background: var(--color-surface-muted); }
.tm__title {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: var(--fw-black);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: var(--space-3);
}
.tm__pill {
    display: inline-block;
    width: 160px;
    height: 36px;
    border-radius: var(--radius-pill);
    border: 4px solid var(--color-brand);
    background-image: url(../media/people.jpg);
    background-size: cover;
    background-position-y: -25px;
}
.tm__videos {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.tm-video {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}
.tm-video:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tm-video img { width: 100%; height: 100%; object-fit: cover; }
.tm-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.tm-video__cap {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 12px;
  background: #28282838;
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  color: #fff;
}
.tm-video__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-light);
  object-fit: cover;
  flex-shrink: 0;
}
.tm-video__name { font-weight: var(--fw-semibold); font-size: var(--fs-sm); line-height: 1.2; }
.tm-video__role { font-size: var(--fs-xs); opacity: .85; line-height: 1.2; }

.tm__quotes {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}


.tm-quote {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: var(--transition);
}



.tm-quote:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tm-quote__head { display: flex; align-items: center; gap: var(--space-4); }
.tm-quote__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed #DF5929;
  padding: 2px;
  flex-shrink: 0;
}

.tm-video__cap img {
    width: auto;
}
.tm-quote__avatar img {width: 100%;height: 100%;object-fit: cover;border-radius: 50%;transform: translate(3px, 4px);}
.tm-quote__id { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.tm-quote__name { font-weight: var(--fw-bold); color: var(--color-text); }
.tm-quote__role { font-size: var(--fs-sm); color: var(--color-text-subtle); }
.tm-quote__rate { display: inline-flex; align-items: center; gap: 4px; color: var(--color-text-strong); font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.tm-quote__rate svg { color: var(--color-text); }
.tm-quote__body {
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
  padding-inline: 22px;
}

.tm-quote__body .quotations-2 {
    margin-left: auto;
}
.tm-quote__qmark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--color-brand);
  line-height: 1;
}
.tm-quote__qmark--l { top: -6px; left: 0; }
.tm-quote__qmark--r { bottom: -10px; right: 0; }


/* faqs  */
.faq { background: var(--color-surface-muted); }
.faq__head { text-align: center; max-width: 760px; margin: 0 auto; }
.faq__lead { margin-top: var(--space-3); color: var(--color-text-muted); }
.faq__list {
  margin-top: var(--space-10);
  display: flex; flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--color-brand-light); }
.faq-item__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
}
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-text);
  transition: var(--transition);
}
.faq-item.is-open .faq-item__icon {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel > div { overflow: hidden; }
.faq-item__body {
  padding-top: var(--space-3);
  color: var(--color-text-subtle);
  font-size: var(--fs-sm);
  line-height: 1.7;
}


/* footer  */
.footer {
  background: var(--color-surface);
  padding-block: var(--space-16) var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-4); max-width: 360px; }
.footer__logo { font-size: 2rem; font-weight: var(--fw-black); color: var(--color-text); letter-spacing: -0.02em; }
.footer__h4 { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--color-text); }
.footer__about-h { font-size: var(--fs-h4); font-weight: var(--fw-bold); color: var(--color-text); }
.footer__about-p { color: var(--color-text-muted); font-size: var(--fs-sm); line-height: 1.7; }
.footer__actions { display: flex; gap: var(--space-3); margin-top: var(--space-2); }
.footer__col { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col a { color: var(--color-text-muted); font-size: var(--fs-sm); }
.footer__col a:hover { color: var(--color-brand-hover); }

.footer-form { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-form__input,
.footer-form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-text);
  font-family: inherit;
  transition: var(--transition);
}
.footer-form__textarea { resize: vertical; min-height: 96px; }
.footer-form__input:focus,
.footer-form__textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px var(--color-brand-soft);
}
.footer-form__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  width: 100%;
  height: 52px;
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-bold);
  font-family: var(--font-button);
  transition: var(--transition);
}
.footer-form__submit:hover { background: var(--color-brand-hover); transform: translateY(-1px); }

.footer__divider {
  margin-top: var(--space-12);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-text-subtle);
  font-size: var(--fs-sm);
}

