/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1DB954;
  --primary-dark: #15a74a;
  --dark: #0a0a0a;
  --dark-light: #141414;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --light: #ffffff;
  --light-bg: #f8f8f8;
  --light-pink: #fce6f0;
  --gray: #666666;
  --gray-light: #999999;
  --text-dark: #0a0a0a;
  --text-light: #ffffff;
  --pink-accent: #ff1c7d;
  --blue-accent: #00a8e8;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== THEME RESET ===== */
* {
  background-color: transparent !important;
}

body,
section,
.hero-section,
.brand-scroll-section,
.section-padding,
.section-padding-sm,
.page-header {
  background-color: var(--light) !important;
}

.footer,
.cta-marquee-section {
  background-color: var(--dark) !important;
}

section.solutions-section,
.bg-dark-light,
.about-highlight-box {
  background-color: var(--light-pink) !important;
}

.solution-pill,
.service-card,
.case-study-card,
.work-card,
.blog-card,
.job-card {
  background-color: var(--light) !important;
  border-color: #e0e0e0 !important;
}

h1, h2, h3, h4, h5, h6, 
.hero-title,
.section-heading,
.page-header-title,
.brand-name,
.blog-card h5 {
  color: var(--text-dark) !important;
}

p, 
.section-subheading,
.page-header-sub,
.service-card p,
.hero-subtitle {
  color: var(--gray) !important;
}

span {
  color: inherit;
}

li {
  color: var(--text-dark);
}

/* Reset specific elements that should be transparent */
.container-fluid, .container, .row, [class*="col-"] {
  background-color: transparent !important;
  color: var(--text-dark) !important;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--light) !important;
  color: var(--text-dark) !important;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.container, .container-fluid {
  background: transparent !important;
}

.row {
  background: transparent !important;
}

.col, [class*="col-"] {
  background: transparent !important;
}

/* ===== GLOBAL HEADING STYLES ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark) !important;
  font-weight: 600;
}

p {
  color: var(--gray) !important;
}

span {
  color: inherit;
}

li {
  color: var(--text-dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===== UTILITY ===== */
.section-padding {
  padding: 100px 0;
  background: var(--light) !important;
}

.section-padding-sm {
  padding: 60px 0;
  background: var(--light) !important;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.bg-dark-custom {
  background: var(--light-bg) !important;
}

.bg-dark-light {
  background: var(--light-pink) !important;
}

.bg-dark-card {
  background: var(--light) !important;
}

/* ===== SECTIONS ===== */
section {
  background: var(--light) !important;
}

section.solutions-section {
  background: var(--light-pink) !important;
}

section.stats-section {
  background: var(--light) !important;
}

/* ===== TOPBAR / ALERT ===== */
.top-alert-bar {
  background: var(--light-bg);
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e0e0e0;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 1000;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-dark) !important;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-dark) !important;
  background: rgba(29, 185, 84, 0.08);
}

.navbar-toggler {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
}

.navbar-toggler-icon {
  filter: none;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: #1db954!important;
  color: white !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 185, 84, 0.25);
  color: var(--text-light) !important;
}

.btn-primary-custom:hover::after {
  transform: translateX(4px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(29, 185, 84, 0.05);
}

.btn-dark-custom {
  background: var(--light-bg);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-dark-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: #ffffff !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 14px;
  font-weight: 600;
  display: inline-block;
}

/* Hero video thumbnails marquee */
.hero-marquee-wrap {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.hero-marquee-wrap::before,
.hero-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light), transparent);
}

.hero-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light), transparent);
}

.hero-marquee {
  display: flex;
  gap: 16px;
  animation: marquee 30s linear infinite;
}

.hero-marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-marquee-item:hover img {
  transform: scale(1.08);
}

.hero-marquee-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.hero-marquee-item:hover .play-icon {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO IMAGES GRID ===== */
.hero-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hero-image-item {
  border-radius: var(--radius-lg);
  height: 210px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.hero-image-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: var(--transition);
}

.hero-image-item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
  }
  
  .hero-image-item {
    height: 160px;
  }
}

/* ===== SOCIAL MEDIA LINKS ===== */
.social-media-links {
  margin-top: 45px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: #ff1c7d;
  font-size: 1.2rem;
  border: 2px solid #ff1c7d;
  transition: var(--transition);
}

.social-icon:nth-child(1) { color: #ff1c7d; border-color: #ff1c7d; }
.social-icon:nth-child(2) { color: #ff5757; border-color: #ff5757; }
.social-icon:nth-child(3) { color: #1DB954; border-color: #1DB954; }
.social-icon:nth-child(4) { color: #00d4ff; border-color: #00d4ff; }
.social-icon:nth-child(5) { color: #0066ff; border-color: #0066ff; }
.social-icon:nth-child(6) { color: #ffb800; border-color: #ffb800; }

.social-icon:hover {
  background-color: currentColor;
  color: white;
  transform: translateY(-3px);
}

/* ===== LOGOS / BRAND SCROLL ===== */
.brand-scroll-section {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 30px 0;
  overflow: hidden;
  background: var(--light) !important;
}

.brand-scroll-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray) !important;
  font-weight: 500;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: brandScroll 20s linear infinite;
}

.brand-logos span {
  color: var(--gray) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  opacity: 0.5 !important;
}

.brand-logos img {
  height: 28px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition);
}

.brand-logos img:hover {
  opacity: 0.8;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-dark) !important;
}

section.solutions-section .section-heading {
  color: #3d3d3d !important;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--gray) !important;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 12px;
}

section.solutions-section .section-subheading {
  color: #666 !important;
  margin-bottom: 20px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff1c7d !important;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

section.solutions-section .section-label {
  color: #0a0a0a !important;
  background: #c8ff00;
  padding: 6px 12px;
  border-radius: 50px;
}

/* ===== SERVICE CARDS (Creative, Media, Commerce) ===== */
.service-card {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: #e0e0e0;
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(1) .service-card-icon {
  background: rgba(255, 28, 125, 0.12);
  color: #ff1c7d;
}

.service-card:nth-child(2) .service-card-icon {
  background: rgba(29, 185, 84, 0.12);
  color: var(--primary);
}

.service-card:nth-child(3) .service-card-icon {
  background: rgba(0, 168, 232, 0.12);
  color: var(--blue-accent);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-dark) !important;
}

.service-card p {
  color: var(--gray) !important;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.service-card .stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-top: 16px;
}

.service-card:nth-child(1) .stat {
  color: #ff1c7d !important;
}

.service-card:nth-child(2) .stat {
  color: var(--primary) !important;
}

.service-card:nth-child(3) .stat {
  color: var(--blue-accent) !important;
}

/* ===== SOLUTIONS / FEATURES SECTION ===== */
.solutions-section {
  position: relative;
}

.solution-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffb3d9;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #000;
  transition: var(--transition);
  margin: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.solution-pill:nth-child(even) {
  background: #c8ff00;
}

.solution-pill:nth-child(3n) {
  background: #00d4ff;
}

.solution-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.solution-pill .pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ===== STATS / METRICS ===== */
.stats-section {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-dark) !important;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #1DB954 !important;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.88rem;
  color: #666 !important;
  font-weight: 500;
}

/* ===== CASE STUDY CARDS ===== */
.case-study-card {
  background: var(--light);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.case-study-card:hover {
  border-color: #e0e0e0;
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.case-study-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.case-study-card .card-body {
  padding: 32px;
}

.case-study-card .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #0a0a0a !important;
}

.case-study-card .metric {
  margin-bottom: 16px;
}

.case-study-card .metric-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary) !important;
}

.case-study-card .metric-label {
  font-size: 0.82rem;
  color: var(--gray) !important;
}

/* ===== ABOUT SECTION ===== */
.about-highlight-box {
  background: #fce6f0;
  border: 1px solid #f5d5e6;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

.about-highlight-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== CTA MARQUEE (Let's work together) ===== */
.cta-marquee-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background: var(--dark) !important;
}

.cta-marquee {
  display: flex;
  gap: 40px;
  animation: ctaMarquee 20s linear infinite;
  white-space: nowrap;
}

.cta-marquee-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-light);
  opacity: 0.15;
  flex-shrink: 0;
  transition: var(--transition);
}

.cta-marquee-text:hover {
  opacity: 1;
  color: var(--primary);
}

.cta-marquee-text .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
}

@keyframes ctaMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark) !important;
  border-top: 1px solid #333;
  padding: 80px 0 40px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--text-light) !important;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-light) !important;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary) !important;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 50px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-light) !important;
}

/* ===== TEAM GRID ===== */
.team-card {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.1);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: var(--transition);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card .card-body {
  padding: 20px;
}

.team-card h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.team-card p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===== TECHNOLOGY PAGE ===== */
.tech-feature-card {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tech-feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.1);
}

.tech-feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.icon-wrap.green-bg { background: rgba(29, 185, 84, 0.1); color: var(--primary); }
.icon-wrap.blue-bg { background: rgba(0, 168, 232, 0.1); color: var(--blue-accent); }

/* ===== WORK / PORTFOLIO ===== */
.work-card {
  background: var(--light);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.work-card:hover {
  border-color: #e0e0e0;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.work-card .card-img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover .card-img {
  transform: scale(1.05);
}

.work-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.work-card .tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(29, 185, 84, 0.1);
  color: var(--primary);
  margin-bottom: 10px;
}

/* ===== RESOURCES / BLOG ===== */
.blog-card {
  background: var(--light);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  border-color: #e0e0e0;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 24px;
}

.blog-card .category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
}

.blog-card h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 8px;
  line-height: 1.4;
  color: var(--text-dark);
}

.blog-card .meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.form-control-custom {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control-custom:focus {
  background: var(--light);
  border-color: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--gray-light);
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 8px;
}

/* ===== CAREERS ===== */
.job-card {
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
  border-color: var(--primary);
  background: rgba(29, 185, 84, 0.03);
}

.job-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--light-bg);
  border: 1px solid #e0e0e0;
  color: var(--gray);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--light) !important;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.page-header-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin-top: 16px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .about-highlight-box {
    padding: 30px;
  }

  .navbar-collapse {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 12px;
    border: 1px solid #e0e0e0;
  }
}

@media (max-width: 767px) {
  .hero-marquee-item {
    width: 150px;
    height: 210px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer {
    padding: 50px 0 30px;
  }
}

/* ===== COLOR ENFORCEMENT ===== */
/* Ensure all text on light backgrounds is visible */
.service-card,
.case-study-card,
.blog-card,
.work-card,
.about-highlight-box,
.solution-pill,
.stat-item {
  color: var(--text-dark) !important;
}

.service-card h3,
.service-card h4,
.case-study-card h4,
.blog-card h5,
.work-card h5,
.page-header-title {
  color: var(--text-dark) !important;
}

.service-card p,
.blog-card .meta,
.stat-label,
.section-subheading,
.page-header-sub {
  color: var(--gray) !important;
}

/* Ensure subtitle/label text is gray */
.hero-label,
.section-label,
.brand-scroll-label {
  color: var(--gray) !important;
}

/* Ensure form elements are styled correctly */
.form-label-custom {
  color: var(--gray) !important;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
}
