/* ========================================
   MALK AGENCY - Premium Website CSS
   Theme: White/Light with Black & Gold
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@700;800&family=Syne:wght@700;800&display=swap');

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f2f2ef;
  --mid-gray: #e8e8e4;
  --text-primary: #0a0a0a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07828;
  --accent: #1a1a1a;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.15);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* UPDATED STANDARD FONTS: Modern Web Standards */
  --font-display: 'Plus Jakarta Sans', 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: var(--font-body); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ======= LOADER ======= */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 3rem;
}
.loader-m {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: white;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.loader-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  animation: loaderPulse 1.2s ease-in-out infinite alternate reverse;
}
.loader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0;
  animation: loadFill 1.8s ease-out forwards 0.3s;
}
@keyframes loadFill { to { width: 100%; } }
@keyframes loaderPulse { from { opacity: 0.4; } to { opacity: 1; } }

/* ======= CURSOR ======= */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
body.cursor-hover .cursor { width: 14px; height: 14px; background: var(--gold); }
body.cursor-hover .cursor-follower { width: 52px; height: 52px; opacity: 0.3; }

/* ======= NAV ======= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 48px; width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}
.logo-img:hover { transform: scale(1.05); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem; /* Standard readable size */
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 0.85rem; right: 0.85rem;
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--black);
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 120px 2rem 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.4) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  bottom: 100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}
.noise-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content {
  max-width: 950px; /* Thoda aur spacious kiya */
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* UPDATED SIZE: Hero Headline (Mobile par responsive, Desktop par bold aur bada) */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1; /* Best readability for Plus Jakarta Sans */
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.line-wrap { overflow: hidden; display: block; }

/* UPDATED STYLE: Descriptions */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--black);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  background: #1f1f1f;
  color: white;
}
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }
.btn-arrow { transition: transform 0.3s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--black);
  color: white;
  border-color: var(--black);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 3rem;
  display: inline-flex;
  gap: 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 0 2.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border-strong);
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 50px;
  background: var(--border-strong);
  position: relative; overflow: hidden;
}
.scroll-dot {
  width: 100%; height: 20px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(50px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ======= MARQUEE ======= */
.marquee-section {
  background: var(--black);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.marquee-inner .sep { color: var(--gold); font-size: 0.7rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======= SECTIONS ======= */
.section { padding: 7rem 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Slightly optimized for cleaner header look */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ======= ABOUT ======= */
.about { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-top: 2rem;
}
.pillar {
  display: flex; align-items: center; gap: 0.6rem;
  background: white;
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateX(4px);
}
.pillar-icon { color: var(--gold); font-size: 0.9rem; }
.about-visual {
  position: relative;
  height: 420px;
}
.about-card {
  position: absolute;
  display: flex; align-items: center; gap: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  transition: transform 0.4s ease;
}
.about-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.ac-1 { top: 20px; left: 0; animation: cardFloat 6s ease-in-out infinite; }
.ac-2 { top: 50%; right: 0; transform: translateY(-50%); animation: cardFloat 7s ease-in-out infinite 1s; }
.ac-3 { bottom: 20px; left: 20px; animation: cardFloat 8s ease-in-out infinite 2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.ac-2 { animation: cardFloat2 7s ease-in-out infinite 1s; }
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}
.ac-icon { font-size: 1.5rem; flex-shrink: 0; }
.ac-text { display: flex; flex-direction: column; gap: 0.15rem; }
.ac-text strong { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.ac-text span { font-size: 0.75rem; color: var(--text-muted); }
.about-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-logo-wrap {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.2);
  animation: logoSpin 20s linear infinite;
}
.about-logo { width: 90px; height: auto; object-fit: contain; }
@keyframes logoSpin {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 40px 10px rgba(201,168,76,0.15); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
}

/* ======================================================
   SERVICES — TRUE 3D FLIP CARDS
   ====================================================== */
.services { background: var(--off-white); position: relative; overflow: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* Outer wrapper gives 3D perspective space */
.flip-card {
  perspective: 1400px;
  height: 300px;
  animation-delay: var(--delay);
}

/* Inner element actually rotates */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Shared face styling */
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

/* FRONT FACE — full photo banner + bottom info strip */
.flip-card-front {
  background: white;
  border: 1px solid var(--border);
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 0;
  overflow: hidden;
}

.flip-card:hover .flip-card-front {
  border-color: rgba(201,168,76,0.4);
}

.sc-photo-wrap {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
  background: rgba(201,168,76,0.08);
}
.sc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.flip-card:hover .sc-photo { transform: scale(1.1); }

/* dark gradient at the bottom of the photo so the number reads clearly */
.sc-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
}

.sc-number {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sc-front-info {
  padding: 1.1rem 1.4rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sc-icon { font-size: 2rem; line-height: 1; }

.flip-card-front h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.25;
}

.flip-hint {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  padding: 0.35rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* BACK FACE */
.flip-card-back {
  background: linear-gradient(150deg, var(--black) 0%, #1a1a1a 100%);
  transform: rotateY(180deg);
  justify-content: center;
  gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.flip-card-back h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
}

.flip-card-back p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.sc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.sc-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(201,168,76,0.16);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}

/* Mobile fallback: tap instead of hover doesn't exist by default,
   so make the card flip on a JS-added .is-flipped class too */
.flip-card.is-flipped .flip-card-inner { transform: rotateY(180deg); }

@media (max-width: 640px) {
  .flip-card { height: 280px; }
}


/* ======================================================
   INDUSTRIES — GLASSMORPHISM + NEON GLOW
   ====================================================== */
.industries {
  background: radial-gradient(circle at 20% 20%, #14141c 0%, #0a0a0a 55%, #050505 100%);
  position: relative;
  overflow: hidden;
}

/* Soft animated neon orbs floating in the background */
.industries::before,
.industries::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.industries::before {
  background: radial-gradient(circle, rgba(201,168,76,0.55), transparent 70%);
  top: -120px; left: -100px;
  animation: indOrbFloat1 12s ease-in-out infinite;
}
.industries::after {
  background: radial-gradient(circle, rgba(110,140,255,0.32), transparent 70%);
  bottom: -150px; right: -120px;
  animation: indOrbFloat2 14s ease-in-out infinite;
}
@keyframes indOrbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes indOrbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-50px, -30px) scale(1.1); }
}

.industries .container { position: relative; z-index: 1; }
.industries .section-eyebrow { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.industries .section-title { color: white; }
.industries .section-sub { color: rgba(255,255,255,0.6); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
  perspective: 1000px;
}

.ind-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  cursor: default;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.45s ease,
              border-color 0.45s ease,
              box-shadow 0.45s ease;
}

/* Neon glow ring on hover */
.ind-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.ind-card:hover::before { opacity: 1; }

/* Shimmer sweep across card on hover */
.ind-card::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 1;
}
.ind-card:hover::after { left: 140%; }

.ind-card:hover {
  background: rgba(201,168,76,0.10);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15),
              0 22px 46px rgba(201,168,76,0.24),
              0 0 34px rgba(201,168,76,0.20);
}

/* Continuous gentle float so the grid feels alive even without hover */
.ind-card { animation: indCardFloat 5s ease-in-out infinite; animation-delay: var(--delay); }
@keyframes indCardFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}
.ind-card:hover { animation-play-state: paused; }

.ind-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 0 transparent);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.5s ease;
}
.ind-card:hover .ind-icon {
  transform: scale(1.4) rotate(-10deg);
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.7));
}

.ind-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 2;
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}
.ind-card:hover .ind-label {
  color: #fff;
  text-shadow: 0 0 14px rgba(201,168,76,0.6);
  transform: translateX(3px);
}

@media (max-width: 580px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ======= PORTFOLIO ======= */
.portfolio { background: var(--off-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.port-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.port-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.port-img-1 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.port-img-2 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.port-img-3 { background: linear-gradient(135deg, #2d1b69, #11998e, #38ef7d); }
.port-img-4 { background: linear-gradient(135deg, #373b44, #4286f4); }
.port-img-5 { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.port-img-6 { background: linear-gradient(135deg, #1d2671, #c33764); }

.port-img::after {
  content: 'M';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
}
.port-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-tag {
  font-size: 0.7rem; font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.port-view {
  font-size: 0.875rem; font-weight: 600;
  color: white;
}
.port-info { padding: 1.5rem; }
.port-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.port-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.port-results {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.port-results span {
  font-size: 0.72rem; font-weight: 600;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.port-cta {
  text-align: center;
}
.port-cta p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* ======= WHY US ======= */
.why-us { background: white; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.why-left p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.why-right {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.why-item {
  display: flex; gap: 1.25rem;
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  animation-delay: var(--delay);
}
.why-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.why-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ======= TESTIMONIALS ======= */
.testimonials { background: var(--black); overflow: hidden; }
.testimonials .section-eyebrow { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
.testimonials .section-title { color: white; }
.testimonials-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; }
.testi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: none;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ======= PROCESS ======= */
.process { background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.ps-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step:hover .ps-num { color: var(--gold); }
.ps-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.ps-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ps-connector {
  position: absolute;
  top: 1.25rem; right: -1px;
  width: 50%; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  z-index: 0;
}

/* ======= CONTACT ======= */
.contact { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
  align-items: start;
}
.contact-left > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  font-size: 1.25rem;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-text {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.ci-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.ci-text a, .ci-text span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.2s;
}
.ci-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.25rem; }
.social-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: var(--transition);
}
.social-link:hover { background: var(--black); color: white; border-color: var(--black); }

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.gold { color: var(--gold); }
.form-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; }
.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  margin-top: 0.25rem;
}
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.checkbox-label:hover { background: rgba(201,168,76,0.08); }
.checkbox-label input { width: 15px; height: 15px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-label span { font-size: 0.825rem; font-weight: 500; color: var(--text-secondary); }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 1.1rem; font-size: 1rem; }
.form-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ======= FOOTER ======= */
.footer {
  background: var(--black);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin: 1rem 0 1.5rem;
}
.footer-logo { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.footer-contact li span:first-child { font-size: 0.85rem; flex-shrink: 0; }
.footer-contact li a,
.footer-contact li span:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ======= ANIMATIONS ======= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Hero line animation */
.line {
  display: inline-block;
  animation: lineReveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.8s;
  opacity: 0;
  transform: translateY(100%);
}
.line-wrap:nth-child(2) .line { animation-delay: 2s; }
.line-wrap:nth-child(3) .line { animation-delay: 2.2s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeInUp 0.7s ease forwards; animation-delay: 1.4s; opacity: 0; }
.hero-sub { animation: fadeInUp 0.7s ease forwards; animation-delay: 2.5s; opacity: 0; }
.hero-actions { animation: fadeInUp 0.7s ease forwards; animation-delay: 2.7s; opacity: 0; }
.hero-stats { animation: fadeInUp 0.7s ease forwards; animation-delay: 2.9s; opacity: 0; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======= MEDIA QUERIES ======= */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-step:nth-child(3) .ps-connector { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 70px;
    background: white;
    padding: 2rem;
    gap: 0.5rem;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.open + .nav-cta { display: flex; position: fixed; bottom: 2rem; left: 2rem; right: 2rem; justify-content: center; z-index: 1000; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { order: -1; }
  .about-visual { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testi-card { flex: 0 0 calc(100% - 1rem); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) .ps-connector { display: none; }
  .process-step:nth-child(4) .ps-connector { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero-stats { flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .ps-connector { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ======= FULL SCREEN HERO BACKGROUND IMAGE ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px 2rem !important;
  overflow: hidden;
  text-align: center;
}

/* Background Image Box Setup */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('m.jpeg'); /* Aapki photo ka path */
  background-size: cover; /* Photo stretch bina screen par fit hogi */
  background-position: center; /* Photo center me lock rahegi */
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark Overlay taaki image ke upar text crisp aur bright dikhe */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.5)); 
  z-index: 2; /* Image ke upar par text ke niche */
}

/* Baki moving orbs aur grid ko image ke upar soft layer dene ke liye */
.hero-grid, .orb, .noise-overlay {
  z-index: 3 !important;
}

/* Content wrapper centered layout */
.hero-content-center {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  z-index: 10; /* Sabse upar taaki text click aur copy ho sake */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  text-align: center !important;
  color: #ffffff; /* Text pure white ho jayega background par */
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85) !important; /* Halka soft white readable subtext */
  margin: 1.5rem auto 2.5rem auto !important;
  max-width: 700px;
}

.hero-actions {
  justify-content: center !important;
  width: 100%;
}

.hero-stats {
  margin-top: 4.5rem !important;
  justify-content: center !important;
  width: 100%;
}

.stat-num, .stat-suffix {
  color: #ffffff !important;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.stat-divider {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* ======= HEADER READABILITY FIX ======= */
.header {
  background: rgba(26, 26, 26, 0.85) !important; /* Dark modern background color */
  backdrop-filter: blur(12px) !important; /* Premium glass-blur effect */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 1rem 4% !important;
}

/* Nav Links Color to White */
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important; /* Hover karne par fully bright white */
}

/* Logo container transparency fix */
.logo img {
  filter: brightness(0) invert(1); /* Agar logo black hai toh use white karne ke liye */
}

/* ======= HERO STATS CARD TEXT FIX ======= */
.hero-stats {
  background: #ffffff !important; /* White container card */
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Stats ke andar ke numbers aur letters ko dark charcoal black karein */
.hero-stats .stat-num, 
.hero-stats .stat-suffix {
  color: #1a1a1a !important; 
  font-weight: 700 !important;
}

/* Stats ke labels (Brands Scaled, etc.) ko soft dark gray karein */
.hero-stats .stat-label {
  color: #555555 !important;
  font-weight: 500 !important;
}

/* Bars/Dividers jo numbers ke beech me hain unka color */
.hero-stats .stat-divider {
  background: rgba(0, 0, 0, 0.1) !important;
}

/* ======= THE ULTIMATE HOVER GOLDEN COLOR REMOVER ======= */

/* 1. Main Button (Start Your Growth Journey) */
#home .hero-actions .btn-primary,
.hero-actions a.btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  border: 2px solid #ffffff !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: all 0.2s ease-in-out !important;
}

/* Touch/Hover karne par SAME WHITE RAHEGA, Golden ka naam-o- निशान khatam */
#home .hero-actions .btn-primary:hover,
.hero-actions a.btn-primary:hover {
  background: #ffffff !important; /* Pure white hi rahega touch par bhi */
  color: #111111 !important;      /* Text black hi rahega */
  border-color: #ffffff !important;
  transform: translateY(-2px) !important; /* Halka sa upar uthega bas look ke liye */
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25) !important; /* Halka premium glow */
}

/* 2. Ghost Button (View Our Work) */
#home .hero-actions .btn-ghost,
.hero-actions a.btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-weight: 500 !important;
  transition: all 0.2s ease-in-out !important;
}

/* View our work touch karne par halka white transparent layer banega */
#home .hero-actions .btn-ghost:hover,
.hero-actions a.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
}

/* ======= ULTRA CLEAN BUTTON HOVER OVERRIDE (NO GOLDEN) ======= */

/* 1. Primary Button Fix (Left Button) */
.hero-actions .btn-primary {
  background: #ffffff !important;
  color: #111111 !important;
  border: 2px solid #ffffff !important;
  font-weight: 600 !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Yeh step sabse important hai - isse purana golden layer block ho jayega */
.hero-actions .btn-primary::before {
  display: none !important;
  content: none !important;
  background: transparent !important;
  opacity: 0 !important;
}

/* Hover state par pure white maintain rakhne ke liye */
.hero-actions .btn-primary:hover {
  background: #ffffff !important;
  color: #111111 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25) !important;
}

/* 2. Ghost Button Fix (View Our Work) */
.hero-actions .btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
}
/* ======= HEADER LOGO OPTIMIZATION ======= */
/* Logo ka size thoda bada aur hover par smooth transition upar ki taraf */
.navbar-brand img, 
.logo img,
.nav-logo img {
    height: 50px !important; /* Default se thoda bada kiya */
    width: auto !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
}

/* Logo ko attractive banane ke liye halka sa hover effect */
.navbar-brand img:hover, 
.logo img:hover,
.nav-logo img:hover {
    transform: scale(1.05) !important; /* Hover karne par thoda sa zoom hoga */
    filter: drop-shadow(0px 4px 8px rgba(255, 255, 255, 0.2)) !important;
}


/* ======= FOOTER LOGO REMOVAL ======= */
/* Footer ke logo container ko poori tarah se hide karne ke liye */
.footer-logo, 
.footer .logo, 
.footer-brand,
.footer img[src*="logo"] {
    display: none !important;
}

/* Logo hatne ke baad brand text ka top alignment maintain rakhne ke liye */
.footer-brand-text {
  margin-top: 0;
  line-height: 1.6;
  color: #a0a0a0; /* Aapke base layout ke hisab se soft white/grey text color */
}

/* Social icons ko text se proper gap dene ke liye */
.footer-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 15px;
}

/* ================= PREMIUM FOOTER SHYLING ================= */
.footer {
  background-color: #111111 !important;
  color: #ffffff !important;
  padding: 80px 0 30px 0 !important;
  position: relative;
  overflow: visible;
  font-family: 'Poppins', sans-serif;
}

/* Grid layout with correct spacing */
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* --- Left Side Brand Card (Like Reference Image) --- */
.footer-brand-card {
  background: #ffffff !important;
  color: #111111 !important;
  padding: 35px 30px !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
  position: relative;
  margin-top: -120px; /* Overlaps background section smoothly */
  z-index: 5;
  border-top: 4px solid #d4af37; /* Royal gold hint border top */
}

.footer-brand-card .card-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  color: #111111 !important;
}

.footer-brand-card .card-desc {
  font-size: 0.9rem !important;
  color: #555555 !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
}

/* Internal Contact styling inside card */
.card-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 25px 0 !important;
}

.card-contact-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  font-size: 0.88rem !important;
}

.card-contact-list a {
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
}

.card-contact-list a:hover {
  color: #d4af37 !important;
}

.card-contact-list .address-text {
  color: #444444 !important;
  line-height: 1.4 !important;
}

/* Social icons layout inside card */
.card-social-section h5 {
  font-size: 0.95rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px !important;
  color: #222;
}

.footer-social-links {
  display: flex !important;
  gap: 12px !important;
}

.social-btn {
  width: 36px !important;
  height: 36px !important;
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.social-btn:hover {
  transform: translateY(-3px) !important;
  background: #d4af37 !important; /* Gold on hover */
}

/* --- Center Columns (Headings & Links) --- */
.column-title {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  position: relative;
  padding-bottom: 8px !important;
}

/* Yellow/Gold underline under headers like reference image */
.column-title::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 35px !important;
  height: 2px !important;
  background-color: #d4af37 !important;
}

.arrow-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.arrow-links li {
  margin-bottom: 12px !important;
}

/* Arrow pointer additions before texts on hover */
.arrow-links a {
  color: #b0b0b0 !important;
  text-decoration: none !important;
  font-size: 0.92rem !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}

.arrow-links a:hover {
  color: #ffffff !important;
  transform: translateX(5px) !important;
}

.arrow-links a::before {
  content: '➔' !important;
  font-size: 0.75rem !important;
  margin-right: 8px !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}

.arrow-links a:hover::before {
  opacity: 1 !important;
  color: #d4af37 !important;
}

/* --- Right Column Action Zone & Badges --- */
.action-zone {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
  align-items: flex-start !important;
}

/* Ribbon badge look styling */
.trust-badge {
  border: 2px dashed #d4af37 !important;
  padding: 15px 25px !important;
  border-radius: 8px !important;
  text-align: center !important;
  display: inline-flex !important;
  flex-direction: column !important;
  background: rgba(212, 175, 55, 0.05) !important;
}

.badge-star {
  color: #d4af37 !important;
  font-size: 1.2rem !important;
}

.badge-text {
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 1px !important;
}

.badge-sub {
  font-size: 0.75rem !important;
  color: #a0a0a0 !important;
}

/* Premium Yellow Button Like Reference */
.footer-cta-btn {
  background: #e5b842 !important; /* Premium Warm Golden Yellow */
  color: #111111 !important;
  padding: 15px 25px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px !important;
  width: 100% !important;
  box-shadow: 0 8px 20px rgba(229, 184, 66, 0.2) !important;
  transition: all 0.3s ease !important;
}

.footer-cta-btn:hover {
  background: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 25px rgba(255,255,255,0.15) !important;
}

.btn-arrow {
  transition: transform 0.3s ease !important;
}

.footer-cta-btn:hover .btn-arrow {
  transform: translateX(4px) !important;
}

/* --- Footer Bottom Elements --- */
.footer-bottom {
  margin-top: 60px !important;
  padding-top: 25px !important;
  border-top: 1px solid #222222 !important;
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
}

.footer-bottom p {
  font-size: 0.82rem !important;
  color: #777777 !important;
  margin: 0 !important;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 50px 30px !important;
  }
  .footer-brand-card {
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* --- ENHANCED LOGO SIZE & UNLOCKING STYLES --- */
.navbar-brand img, 
header img,
.logo img,
[class*="logo"] img {
  height: 85px !important;       /* Isko 55px se badha kar 85px kar diya hai */
  width: auto !important;        /* Logo stretch na ho */
  max-height: none !important;   /* Kisi bhi purani limit ko hatane ke liye */
  max-width: none !important;    /* Kisi bhi purani width limit ko todne ke liye */
  padding: 0 !important;         /* Extra inner space clear karne ke liye */
  display: inline-block !important;
}

/* Logo ke container (parent div) ko bhi thoda space dene ke liye */
.navbar-brand,
.logo,
[class*="logo"] {
  max-height: none !important;
  display: flex !important;
  align-items: center !important;
}

/* 1. Website load hote hi top par header ko transparent aur premium rakhne ke liye */
header, 
nav, 
.navbar {
  background-color: transparent !important;
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out !important;
}

/* 2. Jab load ho toh default links ka color white rahega (taki banner par dikhe) */
header .nav-link,
nav a,
.navbar a {
  color: #ffffff !important;
}

/* 3. JAB SCROLL KAREIN (Jab background white ho jaye): tab text automatically black ho jaye */
header.scrolled .nav-link,
header.sticky .nav-link,
nav.scrolled a,
.navbar.scrolled a,
.fixed-header a,
[class*="scrolled"] a,
[class*="sticky"] a {
  color: #111111 !important; /* White background par text black ho jayega */
}

/* 4. Scroll hone par bhi logo container agar white background kha raha ho toh use normal karne ke liye */
header.scrolled .logo, 
header.sticky .logo {
  background: transparent !important;
}

/* --- ONLY FIX FOR "GET STARTED" BUTTON TEXT ON SCROLL --- */

/* Jab header scroll hone par white ho jaye, tab button ke andar ka text forcefully white hi rakhein */
header.scrolled a.btn,
header.sticky a.btn,
.navbar.scrolled .btn,
.scrolled a[href*="contact"],
header.scrolled [class*="btn"] {
  color: #ffffff !important;           /* Button ke andar ka text hamesha white rahega */
  background-color: #111111 !important; /* Button ka background black hi rahega */
  opacity: 1 !important;
}


/* ================================================
   HERO BACKGROUND VIDEO — added, nothing else changed
   ================================================ */
.hero-bg-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* keep all existing hero-bg children above video */
.hero-bg > *:not(.hero-bg-video) { position: relative; z-index: 2; }

/* ================================================
   PORTFOLIO VIDEO CARDS — single row, natural aspect ratio
   ================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Wrapper no longer forces 16:9 — video keeps its own original ratio */
.port-video-wrap {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.port-video {
  display: block;
  width: 100%;
  height: auto;   /* keeps the video's real/original aspect ratio */
}
/* play/pause button */
.port-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(0,0,0,0.50);
  border: 2px solid rgba(255,255,255,0.80);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity .25s, background .2s, transform .2s;
}
.port-play-btn:hover {
  background: rgba(201,168,76,.90);
  border-color: #c9a84c;
  transform: translate(-50%,-50%) scale(1.1);
}
/* hide button while playing; re-show on hover */
.port-card.vp .port-play-btn          { opacity: 0; }
.port-card:hover .port-play-btn       { opacity: 1 !important; }
/* category tag */
.pv-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(201,168,76,.92);
  color: #111;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 10px; border-radius: 100px;
  z-index: 6;
}
/* responsive: single row on desktop, wraps to fewer columns on smaller screens */
@media (max-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .portfolio-grid { grid-template-columns: 1fr; } }