/* ===================== BASIC RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #070707;
  color: #eaeaea;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto
}

/* ===================== THEME ===================== */
:root {
  --gold: #c9aa5b;
  --gold2: #f0d98a;
  --muted: #b9b9b9;
  --card: #0d0d0d;
  --card2: #111;
  --line: rgba(255, 255, 255, .08);
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* LOGO IMAGE */
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(201, 170, 91, .45);
  display: grid;
  place-items: center;
  background: #0b0b0b;
  flex-shrink: 0;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.logo-text {
  letter-spacing: 2px;
  font-weight: 800;
  font-size: .95rem;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  font-size: .95rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: .2s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.btn-outline {
  border: 1px solid var(--line);
  color: #fff;
}

.btn-outline:hover {
  border-color: rgba(201, 170, 91, .6);
  background: rgba(201, 170, 91, .08);
}

/* Topbar */
.topbar {
  border-top: 1px solid var(--line);
}

.topbar-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--muted);
}

.topbar-left {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.topbar-right {
  display: flex;
  gap: 12px
}

.topbar-right a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: .2s;
}

.topbar-right a:hover {
  border-color: rgba(201, 170, 91, .6);
  background: rgba(201, 170, 91, .08);
  color: var(--gold2);
}

.topbar-right a:hover {
  transform: translateY(-2px);
}

/* Topbar clickable links */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfcfcf;
  font-size: .92rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 12px;
  transition: .2s ease;
  border: 1px solid transparent;
}

.topbar-link:hover {
  color: #fff;
  background: rgba(201, 170, 91, .12);
  border: 1px solid rgba(201, 170, 91, .35);
  transform: translateY(-1px);
}


/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  background: #fff;
  margin: 5px auto;
}


/* ===================== PREMIUM HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* TOPBAR */
.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .50);
}

.topbar-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .92rem;
  color: #bfbfbf;
}

.topbar-left {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left a {
  color: #cfcfcf
}

.topbar-left a:hover {
  color: #fff
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 170, 91, .9);
  display: inline-block;
}

/* social icons */
.topbar-right {
  display: flex;
  gap: 10px;
}

.social {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  transition: .2s;
}

.social:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 170, 91, .45);
  background: rgba(201, 170, 91, .10);
  color: #f0d98a;
}

/* NAV CONTAINER */
.nav-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(201, 170, 91, .45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .55);
  flex-shrink: 0;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-tag {
  margin-top: 4px;
  font-size: .85rem;
  color: rgba(240, 217, 138, .85);
  letter-spacing: .6px;
}

/* NAV LINKS */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  color: #c7c7c7;
  font-size: .95rem;
  padding: 8px 0;
  transition: .2s;
}

.nav-link:hover {
  color: #fff
}

/* underline glow effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(201, 170, 91, 1), rgba(255, 255, 255, .1));
  transition: .25s;
}

.nav-link:hover::after {
  width: 100%
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid rgba(201, 170, 91, .40);
  background: rgba(201, 170, 91, .10);
  transition: .2s;
}

.btn-contact:hover {
  transform: translateY(-1px);
  background: rgba(201, 170, 91, .20);
  box-shadow: 0 12px 40px rgba(201, 170, 91, .12);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .10);
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 20px;
  background: #fff;
  margin: 5px auto;
}

/* RESPONSIVE */
@media (max-width: 780px) {
  .topbar {
    display: none;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    background: #050505;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



/* ===================== SECTIONS ===================== */
.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line)
}

.section-label {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: .86rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--muted);
  max-width: 820px
}

.gold {
  color: var(--gold2)
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .7s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 170, 91, .12), transparent 40%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .08), transparent 38%),
    linear-gradient(to bottom, rgba(0, 0, 0, .25), rgba(0, 0, 0, .9));
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 12px
}

.hero-subtitle {
  color: #dcdcdc;
  font-size: 1.05rem;
  margin-bottom: 12px
}

.hero-text {
  color: var(--muted);
  line-height: 1.7
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin: 18px 0 10px;
  flex-wrap: wrap
}

.btn-primary,
.btn-secondary {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  transition: .2s;
}

.btn-primary {
  background: rgba(201, 170, 91, .12);
  border-color: rgba(201, 170, 91, .35);
}

.btn-primary:hover {
  background: rgba(201, 170, 91, .20);
  transform: translateY(-1px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* PREMIUM PILL */
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;

  background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  color: #e5e5e5;

  transition: all .25s ease;
  cursor: default;
}

/* ICON */
.pill-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .85rem;

  background: rgba(201, 170, 91, .15);
  color: #f0d98a;
}

/* HOVER EFFECT */
.pill:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 170, 91, .5);
  background: rgba(201, 170, 91, .08);
  box-shadow: 0 10px 30px rgba(201, 170, 91, .15);
}

/* ICON HOVER */
.pill:hover .pill-icon {
  background: rgba(201, 170, 91, .3);
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  opacity: 0;
  transition: .3s;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
}

.pill:hover::after {
  opacity: 1;
}

.hero-img-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
}

.scroll-hint {
  margin-top: 12px;
  color: var(--muted);
  font-size: .95rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* navbar height */
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.96);
}

/* ================= HERO VIDEO CARD ================= */

.hero-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
}

/* Thumbnail */
.hero-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

/* Video */
.hero-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s;
}

/* Hover pe video */
.hero-video-card:hover .hero-preview {
  opacity: 1;
}

.hero-video-card:hover .hero-thumb {
  opacity: 0;
}

/* Overlay Play Button */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.3s;
}

.hero-video-card:hover .hero-overlay {
  opacity: 1;
}

/* Hover Glow */
.hero-video-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201, 170, 91, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(201, 170, 91, 0.3);
}

/* ===================== FEATURED ===================== */
.section-head {
  margin-bottom: 30px
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .5));
  border-radius: 22px;
  overflow: hidden;
  transition: all .3s ease;
}

/* Hover */
.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201, 170, 91, .5);
  box-shadow: 0 25px 60px rgba(201, 170, 91, .15);
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  z-index: 2;
}

.card-body h3 {
  color: #fff;
}

.card-body p {
  color: #ddd;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  opacity: .6;
  transition: .3s;
}

.card:hover::after {
  opacity: .9;
}

.card-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 170, 91, .2);
  color: #f0d98a;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ===================== SKILLS ===================== */
.skill-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(145deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .4));
  border-radius: 18px;
  padding: 18px;
  transition: all .3s ease;
  overflow: hidden;
}

/* Hover Glow Effect */
.skill-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201, 170, 91, .5);
  box-shadow: 0 20px 50px rgba(201, 170, 91, .15);
}

/* Top Glow Line */
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9aa5b, transparent);
  opacity: 0;
  transition: .3s;
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(201, 170, 91, .15);
  color: #f0d98a;
  font-size: .9rem;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  font-size: .85rem;
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #ddd;

  transition: .3s;
}

.skill-card:hover .tag {
  background: rgba(201, 170, 91, .15);
  border-color: rgba(201, 170, 91, .4);
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.split-left {
  position: relative;
}

/* subtle glow */
.split-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 170, 91, .15), transparent);
  filter: blur(40px);
}

.quote {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 170, 91, .3);
  background: linear-gradient(145deg, rgba(201, 170, 91, .12), rgba(0, 0, 0, .4));
  box-shadow: 0 10px 40px rgba(201, 170, 91, .08);
}

/* ===================== PROCESS STEPS ===================== */
.steps {
  display: grid;
  gap: 12px;
  margin-top: 26px
}

.step {
  transition: 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 170, 91, 0.4);
  background: rgba(201, 170, 91, 0.05);
  cursor: pointer;
}

.step:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.step-no {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(201, 170, 91, .35);
  color: var(--gold2);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 6px
}

.step p {
  color: var(--muted);
  line-height: 1.7
}

.center-quote {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  background: linear-gradient(120deg, rgba(201, 170, 91, .12), rgba(255, 255, 255, .03));
}

.center-quote h3 {
  font-size: 1.5rem
}

/* ===================== TOOLS ===================== */
.tool-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tool-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(0, 0, 0, .32);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.tool-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 170, 91, 0.4);
  background: rgba(201, 170, 91, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* 🔥 GLOW LINE EFFECT */
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(201, 170, 91, 0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* 🔥 LIST STYLE IMPROVE */
.tool-card ul {
  list-style: none;
}

.tool-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: 0.2s;
}

/* 🔥 LIST HOVER */
.tool-card li:hover {
  color: #fff;
  transform: translateX(6px);
}

.tool-card li:last-child {
  border-bottom: none;
}

/* ===================== RESULTS ===================== */
/* ===================== RESULTS ===================== */

.case-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* 🔥 CARD DESIGN */
.case {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .15));
  transition: all 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.case:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 170, 91, 0.4);
  background: linear-gradient(180deg, rgba(201, 170, 91, .08), rgba(0, 0, 0, .25));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* 🔥 GLOW OVERLAY */
.case::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, transparent, rgba(201, 170, 91, 0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

.case:hover::before {
  opacity: 1;
}

.case h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.case p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* 🔥 OUTPUT HIGHLIGHT */
.case-result {
  color: #fff;
  font-weight: 800;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(201, 170, 91, 0.12);
  border: 1px solid rgba(201, 170, 91, 0.25);
}

/* ===================== TESTIMONIALS ===================== */

.testimonials {
  margin-top: 40px;
}

.testimonials h3 {
  margin-bottom: 10px;
}

.test-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 🔥 TEST CARD */
.test-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(201, 170, 91, 0.08);
  font-weight: 700;
  transition: all 0.3s ease;
}

/* 🔥 TEST HOVER */
.test-card:hover {
  transform: translateY(-6px);
  background: rgba(201, 170, 91, 0.15);
  border-color: rgba(201, 170, 91, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ===================== CLIENTS ===================== */

.client-row {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 🔥 CLIENT TAG */
.client {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .35);
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 🔥 HOVER EFFECT */
.client:hover {
  transform: translateY(-5px) scale(1.05);
  color: #fff;
  border-color: rgba(201, 170, 91, 0.5);
  background: rgba(201, 170, 91, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* 🔥 GLOW ANIMATION */
.client::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent, rgba(201, 170, 91, 0.3), transparent);
  opacity: 0;
  transition: 0.3s;
}

.client:hover::before {
  opacity: 1;
}

/* 🔥 ICON STYLE (optional emoji spacing) */
.client::after {
  content: " ✨";
  opacity: 0;
  transition: 0.3s;
}

.client:hover::after {
  opacity: 1;
}

/* ===================== EXTRA CREATIVE TOUCH ===================== */

/* 🔥 AUTO FLOAT ANIMATION */
@keyframes floatTag {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

.client:nth-child(1) {
  animation: floatTag 4s ease-in-out infinite;
}

.client:nth-child(2) {
  animation: floatTag 5s ease-in-out infinite;
}

.client:nth-child(3) {
  animation: floatTag 6s ease-in-out infinite;
}

.client:nth-child(4) {
  animation: floatTag 5.5s ease-in-out infinite;
}

.client:nth-child(5) {
  animation: floatTag 4.5s ease-in-out infinite;
}

/* ===================== PORTFOLIO ===================== */

.portfolio-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* 🔥 CARD */
.work {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 🔥 IMAGE */
.work img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.work:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201, 170, 91, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.work:hover img {
  transform: scale(1.1);
}

/* 🔥 OVERLAY */
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0;
  transition: 0.3s;
}

.work:hover::before {
  opacity: 1;
}

/* 🔥 TEXT OVERLAY */
.work figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  color: #fff;
  font-weight: 700;
  transform: translateY(100%);
  transition: 0.3s;
}

.work:hover figcaption {
  transform: translateY(0);
}

/* 🔥 PLAY ICON (video feel 🎬) */
.work::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 14px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.work:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* VIDEO PREVIEW */

.work {
  position: relative;
}

/* Thumbnail */
.work .thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Video */
.preview-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

/* Hover pe video show */
.work:hover .preview-video {
  opacity: 1;
}

/* Hover pe thumbnail hide */
.work:hover .thumb {
  opacity: 0;
}

/* ===================== VIDEO MODAL ===================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.video-modal video {
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ===================== PREMIUM HOVER ===================== */
.work:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(201, 170, 91, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(201, 170, 91, 0.3);
}

/* Caption Glass Effect */
.work figcaption {
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.4);
}

/* ===================== LEARN ===================== */
.learn-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.learn-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .02);
}

.learn-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7
}

/* ===================== LEARN (UPGRADED) ===================== */

.learn-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.learn-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* ICON */
.learn-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* TEXT */
.learn-card h3 {
  margin-bottom: 8px;
}

.learn-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* TAG */
.learn-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 170, 91, 0.15);
  color: #f0d98a;
  font-weight: 600;
}

/* HOVER EFFECT 🔥 */
.learn-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201, 170, 91, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* GLOW EFFECT */
.learn-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(201, 170, 91, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.learn-card:hover::before {
  opacity: 1;
}

/* CTA BUTTON */
.learn-cta {
  margin-top: 30px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .learn-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== BLOG ===================== */
.blog-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(0, 0, 0, .28);
}

.blog-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7
}

.readmore {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold2)
}

/* ===================== BLOG UPGRADE ===================== */

.blog-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.blog-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

/* ICON */
.blog-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

/* TEXT */
.blog-card h3 {
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* READ MORE */
.readmore {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold2);
  font-weight: 600;
  transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201, 170, 91, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* GLOW */
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(201, 170, 91, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-card:hover::before {
  opacity: 1;
}

/* READ MORE ANIMATION */
.blog-card:hover .readmore {
  transform: translateX(6px);
}

/* CTA */
.blog-cta {
  margin-top: 30px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== YOUTUBE ===================== */
.yt-box {
  border: 1px solid rgba(201, 170, 91, .35);
  border-radius: 26px;
  padding: 26px;
  text-align: center;
  background: linear-gradient(120deg, rgba(201, 170, 91, .18), rgba(255, 255, 255, .02));
}

.yt-box p {
  color: #e6e6e6;
  margin: 12px auto 18px;
  max-width: 760px
}

/* ===== 3D LINKEDIN BUTTON ===== */

.btn-linkedin {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #fff;
  text-decoration: none;

  border-radius: 12px;
  border: 1px solid rgba(0, 119, 181, 0.5);

  /* 3D LOOK */
  background: linear-gradient(145deg, #0077b5, #005582);
  box-shadow:
    0 6px 0 #004466,
    /* bottom depth */
    0 10px 25px rgba(0, 0, 0, 0.4);
  /* shadow */

  transition: all 0.2s ease;
}

/* HOVER */
.btn-linkedin:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #004466,
    0 14px 30px rgba(0, 0, 0, 0.5);
}

/* CLICK EFFECT (PRESS) */
.btn-linkedin:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 #004466,
    0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-linkedin {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}


/* ===================== CONTACT ===================== */
/* ===== CONTACT GRID ===== */
.contact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}

/* ===== FORM ===== */
.contact-form {
  border-radius: 24px;
  padding: 22px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.contact-form:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* INPUT ROW */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* IMPORTANT FIX */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
  color: #fff;

  margin-bottom: 14px;
  /* 🔥 spacing fix */

  box-sizing: border-box;
  /* 🔥 most important */
  transition: 0.2s;
}

/* INPUT ROW FIX */
.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  /* 🔥 gap increase */
}

/* REMOVE DOUBLE BORDER EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid var(--gold2);
  /* replace instead of stacking */
  box-shadow: 0 0 8px rgba(201, 170, 91, .4);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 1px var(--gold2);
}

/* TEXTAREA */
.contact-form textarea {
  resize: vertical;
}

/* BUTTON */
.btn-contact {
  margin-top: 10px;
  padding: 12px 20px;

  border-radius: 12px;
  border: none;

  font-weight: 600;
  cursor: pointer;

  color: #000;
  background: linear-gradient(135deg, #c9aa5b, #ffd700);

  transition: 0.25s;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 170, 91, .4);
}

/* NOTE */
.form-note {
  margin-top: 10px;
  color: var(--gold2);
  font-weight: 600;
}

/* ===== INFO BOX ===== */
.contact-info {
  border-radius: 24px;
  padding: 22px;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;
}

.contact-info:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* INFO TEXT */
.contact-info p {
  margin-top: 6px;
  color: #dcdcdc;
}

/* ===== FAQ ===== */
.faq {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  margin-top: 12px;
}

.faq-item .q {
  font-weight: 600;
  color: #fff;
}

.faq-item .a {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FOOTER ================= */

.footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at top, rgba(201, 170, 91, .08), transparent 60%);
}

/* GRID */
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 30px;
  padding-bottom: 30px;
}

/* BRAND */
.footer-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* HEADINGS */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #fff;
}

/* LINKS */
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* LINK STYLE */
.footer-links a,
.footer-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.25s;
  position: relative;
}

/* HOVER ANIMATION 🔥 */
.footer-links a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--gold2);
  transition: 0.3s;
}

.footer-links a:hover::after,
.footer-social a:hover::after {
  width: 100%;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    align-items: center;
  }

  .footer-links a:hover,
  .footer-social a:hover {
    transform: none;
  }
}

/* ===================== SCROLL TOP ===================== */
.scrolltop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .5);
  color: #fff;
  cursor: pointer;
  display: none;
}

.scrolltop.show {
  display: block
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .featured-grid {
    grid-template-columns: 1fr
  }

  .tool-grid {
    grid-template-columns: 1fr
  }

  .case-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }

  .learn-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 780px) {
  .nav {
    position: fixed;
    left: 0;
    top: 70px;
    right: 0;
    background: #050505;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    padding: 18px;
    gap: 14px;
  }

  .nav.show {
    display: flex
  }

  .hamburger {
    display: block
  }

  .topbar {
    display: none
  }

  .hero-title {
    font-size: 2.2rem
  }

  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .input-row {
    grid-template-columns: 1fr
  }
}

/* HERO VIDEO CARD */
.hero-video-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #000;
  padding: 10px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .6);
}

.hero-video-card iframe {
  width: 100%;
  height: 300px;
  /* pehle 260 tha */
  border-radius: 12px;
}

/* YouTube Button */
.yt-btn {
  display: block;
  margin-top: 10px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  background: rgba(255, 0, 0, .15);
  border: 1px solid rgba(255, 0, 0, .4);
  color: #fff;
  transition: .2s;
}

.yt-btn:hover {
  background: rgba(255, 0, 0, .3);
  transform: translateY(-2px);
}