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

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: hsl(18, 100%, 50%);         /* Vibrant Orange #ff5700 */
  --primary-hover: hsl(18, 100%, 45%);
  --primary-rgb: 255, 87, 0;
  --secondary: hsl(225, 60%, 12%);       /* Deep Dark Navy */
  --secondary-rgb: 10, 17, 40;
  --text: hsl(225, 20%, 35%);            /* Dark Slate Gray */
  --text-light: hsl(225, 15%, 55%);
  --bg: hsl(0, 0%, 100%);
  --bg-secondary: hsl(225, 30%, 98%);    /* Soft Gray-Blue */
  --card-bg: hsl(0, 0%, 100%);
  --border: hsl(225, 20%, 92%);
  --border-focus: hsl(18, 100%, 80%);
  --shadow-sm: 0 4px 10px rgba(10, 17, 40, 0.03);
  --shadow-md: 0 12px 24px -6px rgba(10, 17, 40, 0.06);
  --shadow-lg: 0 20px 40px -10px rgba(10, 17, 40, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  touch-action: manipulation;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 55px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.text-center {
  text-align: center;
}

.tagline {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn svg {
  transition: var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* --- HEADER / NAVBAR --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.header.scrolled .nav-container {
  height: 70px;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 42px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

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

.logo-text span.brand-name {
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo-text span.brand-sub {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-link.active {
  color: var(--primary);
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, hsl(18, 100%, 97%) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, hsl(225, 30%, 97%) 0%, transparent 50%);
}

.hero-grid {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 36px;
  padding-left: max(24px, calc((100% - var(--max-width)) / 2 + 24px));
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title span.accent {
  color: var(--primary);
}

/* Staggered fadeInUp entrance animation for Hero text content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title span.block {
  display: block;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-title span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-title span:nth-child(3) {
  animation-delay: 0.55s;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.75s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.95s;
}

/* Hero Stats / Trust Keypoints */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.1s;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-item .stat-icon {
  font-size: 1.2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: hsl(18, 100%, 96%);
  border: 1px solid hsl(18, 100%, 90%);
  flex-shrink: 0;
  transition: var(--transition);
}

.hero-stat-item:hover .stat-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

.hero-stat-item .stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}

/* Hero Media Display */
.hero-media-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-media-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Hero Background Graphics */
.hero-bg-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
}

.shape-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(18, 100%, 93%) 0%, hsl(225, 40%, 93%) 100%);
  opacity: 0.6;
}

.shape-dots {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--text-light) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.25;
}

/* Hero Boy Image */
.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  transition: var(--transition-slow);
}

/* Floating Info Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.floating-card .card-info {
  display: flex;
  flex-direction: column;
}

.floating-card .card-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.floating-card .card-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Top Floating Card */
.card-raw {
  top: 10%;
  right: -5%;
  animation: float-up 6s ease-in-out infinite alternate;
}

/* Bottom Floating Card */
.card-edited {
  bottom: 12%;
  right: -15%;
  animation: float-down 6s ease-in-out infinite alternate;
}

/* Connecting dashed arrows */
.hero-connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-connector-svg path {
  stroke: var(--text-light);
  stroke-dasharray: 6 6;
  opacity: 0.4;
  fill: none;
}

/* Floating Animations */
@keyframes float-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes float-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(12px); }
}


/* --- POPULAR CATEGORIES SECTION --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 20px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-focus);
}

.category-icon-wrapper {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  height: 48px;
  width: 48px;
}

.category-card:hover .category-icon-wrapper {
  transform: scale(1.12);
}

.category-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.categories-footer {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.category-btn {
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 10px;
}

.category-btn i {
  font-size: 0.85rem;
  transition: var(--transition);
}

.category-btn:hover i {
  transform: translateX(4px);
}


/* --- WHY CHOOSE HAVFLY SECTION --- */
.why-choose-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
  overflow: hidden;
}

.why-choose-col {
  padding: 38px 20px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.why-choose-col:last-child {
  border-right: none;
}

.why-choose-col:hover {
  background-color: rgba(var(--primary-rgb), 0.025);
}

.why-choose-icon {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  transition: var(--transition);
}

.why-choose-col:hover .why-choose-icon {
  transform: translateY(-4px) scale(1.1);
}

.why-choose-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.why-choose-col p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 195px;
  margin: 0 auto;
}


/* --- PORTFOLIO (TABS SECTION) --- */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 17, 40, 0.05);
}

.tab-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
  transform: translateY(-1px);
}

/* Portfolio Slider Wrapper & Track styling */
.showcase-container {
  width: 100%;
  max-width: 1380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.cards-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.cards-row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-wrapper .nav-btn,
.showcase-container .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #111;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 40;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.carousel-wrapper .nav-btn:hover,
.showcase-container .nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.carousel-wrapper .nav-btn.prev,
.showcase-container .nav-btn.prev {
  left: -23px;
}

.carousel-wrapper .nav-btn.next,
.showcase-container .nav-btn.next {
  right: -23px;
}

/* Individual Reel Card Outer Shell */
.reel-card {
  flex: 0 0 250px;
  height: 440px;
  position: relative;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  user-select: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-card.hidden {
  display: none !important;
}

.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

/* Card Content Container (Holds Video & Overlays) */
.reel-card-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* 1080p High-Resolution Viewport Scaler (Normal Card Mode) */
.player-viewport-scaler {
  width: 1080px;
  height: 1920px;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  transform: scale(0.2314815); /* 250 / 1080 */
  pointer-events: none;
}

.player-viewport-scaler iframe,
.player-viewport-scaler video,
.player-viewport-scaler img,
.card-thumb {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.card-thumb {
  z-index: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.player-viewport-scaler.playing .card-thumb {
  opacity: 0;
}

/* FULLSCREEN MODE - PERFECT CENTERED 9:16 ASPECT RATIO ON DESKTOP, 100% FILL ON MOBILE */
.reel-card:fullscreen,
.reel-card:-webkit-full-screen,
.testimonial-card:fullscreen,
.testimonial-card:-webkit-full-screen,
.reel-card.is-custom-fullscreen,
.testimonial-card.is-custom-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  background: #000000 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
}

.reel-card:fullscreen .reel-card-content,
.reel-card:-webkit-full-screen .reel-card-content,
.testimonial-card:fullscreen .testimonial-video-box,
.testimonial-card:-webkit-full-screen .testimonial-video-box,
.reel-card.is-custom-fullscreen .reel-card-content,
.testimonial-card.is-custom-fullscreen .testimonial-video-box {
  width: min(100vw, calc(100vh * (9 / 16))) !important;
  height: min(100vh, calc(100vw * (16 / 9))) !important;
  aspect-ratio: 9 / 16 !important;
  position: relative !important;
  margin: auto !important;
  border-radius: 0 !important;
  background: #000000 !important;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9) !important;
  overflow: hidden !important;
}

.reel-card:fullscreen .player-viewport-scaler,
.reel-card:-webkit-full-screen .player-viewport-scaler,
.testimonial-card:fullscreen .player-viewport-scaler,
.testimonial-card:-webkit-full-screen .player-viewport-scaler,
.reel-card.is-custom-fullscreen .player-viewport-scaler,
.testimonial-card.is-custom-fullscreen .player-viewport-scaler {
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

@media (max-width: 768px) {
  .reel-card:fullscreen .reel-card-content,
  .reel-card:-webkit-full-screen .reel-card-content,
  .testimonial-card:fullscreen .testimonial-video-box,
  .testimonial-card:-webkit-full-screen .testimonial-video-box,
  .reel-card.is-custom-fullscreen .reel-card-content,
  .testimonial-card.is-custom-fullscreen .testimonial-video-box {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}

.testimonial-card:fullscreen .testimonial-desc,
.testimonial-card:fullscreen .testimonial-user,
.testimonial-card:-webkit-full-screen .testimonial-desc,
.testimonial-card:-webkit-full-screen .testimonial-user {
  display: none !important;
}

/* Touch Overlay for Play/Pause Toggle */
.touch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

/* Brand Badge Overlay (Top-Left) */
.brand-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 13px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* Fullscreen Icon (Top-Right) */
.card-fullscreen-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 25;
  transition: transform 0.15s ease, background 0.15s ease;
}

.card-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

/* Center Big Play Button (Orange Circle) */
.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #ff5722; /* Vibrant Orange Play Icon */
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  padding-left: 3px;
}

.center-play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.center-play-btn.playing {
  opacity: 0.85;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-size: 22px;
  padding-left: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.center-play-btn.playing:hover {
  opacity: 1;
  background: rgba(255, 87, 34, 0.95);
  transform: translate(-50%, -50%) scale(1.15);
  color: #ffffff;
  border-color: #ff5722;
}

/* Bottom Views Overlay */
.card-bottom-info {
  position: absolute;
  bottom: 50px;
  left: 14px;
  z-index: 20;
  pointer-events: none;
}

.views-count {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Bottom Custom Controls Bar with Timeline & Mute Button */
.card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 25;
}

.mute-btn {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #ff5722; /* Theme Orange */
  border-radius: 3px;
  transition: width 0.1s linear;
}

.time-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: monospace;
  flex-shrink: 0;
  min-width: 28px;
}

/* Bottom View All Button */
.view-all-container {
  margin-top: 35px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  color: #ff5722;
  background: transparent;
  border: 2px solid #ff5722;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.15);
}

.view-all-btn:hover {
  background: #ff5722;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
  transform: translateY(-2px);
}

.portfolio-slider-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.portfolio-slider-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 0;
}

.portfolio-slider-container::-webkit-scrollbar {
  display: none;
}

.portfolio-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  margin: 0;
}

.portfolio-item {
  flex: 0 0 250px;
  height: 440px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Slider Navigation Buttons */
.portfolio-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 40;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.portfolio-slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.portfolio-slider-btn.prev-btn {
  left: -23px;
}

.portfolio-slider-btn.next-btn {
  right: -23px;
}

.portfolio-slider-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Fade filter animation */
.portfolio-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

.portfolio-item.visible {
  display: block;
  opacity: 1;
  transform: none;
}

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

.portfolio-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-media img,
.portfolio-media video,
.portfolio-media iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-media img,
.portfolio-item:hover .portfolio-media video {
  transform: scale(1.08);
}

/* Overlay elements */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 17, 40, 0.2) 0%, rgba(10, 17, 40, 0.1) 40%, rgba(10, 17, 40, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 2;
  color: #fff;
  transition: var(--transition);
}

.portfolio-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 17, 40, 0.6);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

.logo-badge span {
  color: var(--primary);
}

/* Upper Right Corner Expand Button & Inline Playback */
.card-expand-btn {
  background: rgba(10, 17, 40, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  margin-left: auto;
}

.card-expand-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(255, 87, 0, 0.45);
}

.inline-video-frame,
.inline-video-element {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 175%;
  height: 175%;
  transform: translate(-50%, -50%);
  border: none;
  z-index: 3;
  background: #000000;
  object-fit: cover;
  pointer-events: auto;
}

.portfolio-item.playing-inline .portfolio-overlay {
  background: none;
  pointer-events: none;
}

.portfolio-item.playing-inline .portfolio-overlay-center,
.portfolio-item.playing-inline .portfolio-overlay-bottom {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.portfolio-item.playing-inline .portfolio-overlay-top {
  pointer-events: auto;
  z-index: 20;
}

.portfolio-item.playing-inline .card-expand-btn {
  background: rgba(255, 87, 0, 0.95);
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  z-index: 25;
}

.portfolio-item.playing-inline .card-expand-btn:hover {
  transform: scale(1.15);
  background: var(--primary-hover);
}

.portfolio-overlay-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition);
  opacity: 0.9;
}

.portfolio-item:hover .portfolio-overlay-center {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary);
  color: #fff;
  opacity: 1;
}

.portfolio-overlay-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.view-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.view-count i, .view-count svg {
  font-size: 0.75rem;
}

.action-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.action-icon {
  background: rgba(255, 255, 255, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.action-icon:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* --- Small Format Card Interactive Playable Controls & Enhancements --- */
.top-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-sound-btn {
  background: rgba(10, 17, 40, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.card-sound-btn:hover,
.card-sound-btn.unmuted {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(255, 87, 0, 0.45);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  max-width: 70%;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hd-badge {
  background: rgba(255, 87, 0, 0.85);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.action-icon {
  cursor: pointer;
  position: relative;
}

.action-icon.like-btn.liked {
  background: rgba(255, 42, 109, 0.9);
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(255, 42, 109, 0.5);
  animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1.15); }
}

.like-count {
  position: absolute;
  bottom: -16px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.card-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  overflow: hidden;
}

.card-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  transition: width 0.1s linear;
}

/* Portfolio Button */
.portfolio-action-wrapper {
  margin-top: 30px;
}


/* --- CLIENT LOGOS SECTION --- */
.client-logos-section {
  padding: 60px 0 65px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.client-logos-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.client-logos-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 24px;
}

/* Client Trust Stats Bar */
.client-stats-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(10, 17, 40, 0.04);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.client-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.client-stat-item .stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}

.client-stat-item .stat-text {
  color: var(--secondary);
  font-weight: 600;
}

.client-stats-bar .stat-divider {
  width: 1px;
  height: 16px;
  background-color: var(--border);
}

/* Client Logos Grid (Static Display of All Logos) */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid rgba(10, 17, 40, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(10, 17, 40, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.logo-item img {
  max-height: 70px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: opacity(0.98);
  pointer-events: none;
  -webkit-user-drag: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 12px 28px -6px rgba(255, 87, 0, 0.18), 0 4px 12px rgba(10, 17, 40, 0.05);
  background: #ffffff;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}


/* --- TESTIMONIALS SECTION --- */
/* Testimonials Slider Wrapper & Track styling */
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.testimonial-slider-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  padding: 15px 0; /* Padding for card hover scaling */
}

.testimonial-slider-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
  margin: 0;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3); /* 3 cards visible on desktop */
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px); /* Make hover movement more pronounced */
}

/* Testimonial Slider Buttons */
.testimonial-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.testimonial-slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

.testimonial-slider-btn.prev-btn {
  left: -25px;
}

.testimonial-slider-btn.next-btn {
  right: -25px;
}

.testimonial-slider-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Testimonial avatar video-like look */
.testimonial-video-box {
  width: 100%;
  max-width: 250px;
  height: 440px;
  border-radius: 20px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.testimonial-video-box:hover img {
  transform: scale(1.05);
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-play-btn {
  background-color: var(--primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-user {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-views {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
}

/* --- SIMPLE PROCESS SECTION --- */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
}

/* Horizontal connecting path */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 5%;
  width: 90%;
  height: 2px;
  background-image: linear-gradient(to right, var(--border) 60%, transparent 40%);
  background-size: 15px 2px;
  z-index: 1;
}

.process-step {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon-container {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}

.process-icon-container .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--card-bg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.process-step:hover .process-icon-container {
  border-color: var(--primary);
  transform: rotate(5deg);
}

.process-step:hover .process-icon-container .icon-box {
  background-color: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* Connect arrows details */
.process-arrow {
  position: absolute;
  top: 45px;
  right: -25%;
  color: var(--primary);
  font-size: 1.25rem;
  z-index: 3;
}

.step-num-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(var(--primary-rgb), 0.3);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}


/* --- BOTTOM CTA SECTION --- */
.cta-banner {
  background: linear-gradient(135deg, hsl(225, 60%, 12%) 0%, hsl(225, 45%, 8%) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-title span.accent {
  color: var(--primary);
  display: block;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 550px;
}

/* Clapperboard layout */
.cta-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-visual-box {
  width: 100%;
  max-width: 280px;
  position: relative;
}

.cta-dashed-flow {
  position: absolute;
  top: 50%;
  left: -40%;
  width: 40%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-dashed-flow path {
  stroke: var(--primary);
  stroke-dasharray: 5 5;
  fill: none;
}


/* --- FOOTER --- */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 50px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary);
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-terms {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-terms a:hover {
  color: var(--primary);
}


/* --- VIDEO MODAL (REEL FORMAT) --- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 17, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 420px; /* Vertical Reel layout width */
  height: 86vh; /* Fits screen cleanly */
  max-height: 820px;
  aspect-ratio: 9 / 16; /* Reel vertical video format */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 65px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(var(--primary-rgb), 0.35); /* Ambient glowing shadow */
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.92);
  transition: var(--transition-slow);
}

.video-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(90deg);
}

.modal-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #050814;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.modal-poster.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.modal-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--primary);
  background: rgba(10, 17, 40, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.modal-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  transform: none;
  z-index: 2;
  border: none;
  background: #000000;
}

.modal-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border: none;
  background: #000000;
  object-fit: contain;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition);
}

.modal-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
}

.modal-nav-btn.prev-btn {
  left: max(20px, calc(50% - 280px));
}

.modal-nav-btn.next-btn {
  right: max(20px, calc(50% - 280px));
}


/* --- MOBILE RESPONSIVENESS MEDIA QUERIES --- */

/* Breakpoint 1200px - Large Desktop Scale-Down */
@media (max-width: 1240px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

/* Breakpoint 1024px - Small Desktop & Large Tablets */
@media (max-width: 1024px) {
  /* Navbar changes shifted to 1024px to prevent overlapping brand items */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition-slow);
    z-index: 1005;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Hamburger anim when active */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-menu .nav-btn {
    width: 100%;
    margin-top: 10px;
  }

  .section {
    padding: 45px 0;
  }
  .hero {
    padding: 0;
  }
  .hero-grid {
    gap: 40px;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why-choose-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-choose-col {
    border-bottom: 1px solid var(--border);
  }
  .why-choose-col:nth-child(3) {
    border-right: none;
  }
  .why-choose-col:nth-child(4),
  .why-choose-col:nth-child(5) {
    border-bottom: none;
  }
  .portfolio-item {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .process-timeline::before {
    top: 35px;
  }
  .process-icon-container {
    width: 70px;
    height: 70px;
  }
  .process-icon-container .icon-box {
    width: 54px;
    height: 54px;
    font-size: 1.15rem;
  }
  .process-arrow {
    top: 35px;
    right: -20%;
    font-size: 1rem;
  }
  .cta-banner {
    padding: 40px 50px;
  }
  .cta-title {
    font-size: 2.3rem;
  }
}

/* Breakpoint 768px - Portrait Tablets & Large Mobiles */
@media (max-width: 768px) {

  /* Hero adjustments */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-top: 15px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 28px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-media-container {
    max-width: 360px;
  }

  .hero-image {
    border-radius: 12px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 480px;
    margin: 24px auto 0;
    padding-top: 0;
    border-top: none;
  }

  .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 6px;
    box-shadow: var(--shadow-sm);
    gap: 6px;
  }

  .hero-stat-item .stat-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 2px;
  }

  .hero-stat-item .stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .hero-stat-item .stat-label {
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: normal;
  }

  /* Categories adjustments */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .category-card {
    padding: 24px 16px 20px;
  }

  /* Why Choose Section - Mobile Card Redesign */
  .why-choose-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 25px;
    overflow: visible;
  }

  .why-choose-col {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 2px 16px;
    background: #ffffff;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(10, 17, 40, 0.03);
    padding: 18px 20px;
    text-align: left;
    transition: var(--transition);
  }

  .why-choose-col:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(255, 87, 0, 0.08);
  }

  .why-choose-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    height: 48px;
    width: 48px;
    min-width: 48px;
    font-size: 1.35rem;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 12px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-choose-col h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--secondary);
    line-height: 1.3;
  }

  .why-choose-col p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 100%;
    margin: 0;
  }
  
  /* Mobile filter tabs (All category tabs shown wrapped, no overflow scroll) */
  .portfolio-tabs {
    justify-content: center;
    overflow-x: visible;
    white-space: normal;
    flex-wrap: wrap !important;
    gap: 8px;
    padding-bottom: 0;
    margin-bottom: 25px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .portfolio-item {
    flex: 0 0 240px;
    height: 426px;
  }
  .portfolio-item .player-viewport-scaler {
    transform: scale(0.222222); /* 240 / 1080 */
  }

  .testimonial-card {
    flex: 0 0 270px;
    padding: 20px 16px;
  }
  .testimonial-video-box {
    max-width: 100%;
    height: 423px;
    margin-bottom: 14px;
  }
  .testimonial-video-box .player-viewport-scaler {
    transform: scale(0.22037); /* 238 / 1080 */
  }

  .floating-card {
    padding: 10px 16px;
  }
  .card-raw {
    right: -2%;
  }
  .card-edited {
    right: -8%;
    bottom: 8%;
  }

  /* Sections */
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  /* Client Logos */
  .client-logos-section {
    padding: 35px 0 40px;
  }
  .client-logos-title {
    font-size: 1.55rem;
  }
  .client-logos-desc {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }
  .client-logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
  .logo-item {
    height: 75px;
    padding: 10px 14px;
  }
  .logo-item img {
    max-height: 52px;
    max-width: 115px;
  }

  /* Simple Process: 2-column grid layout on mobile */
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-top: 40px;
  }
  
  .process-timeline::before,
  .process-timeline::after {
    display: none; /* Hide connector lines in grid layout */
  }

  .process-step {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  /* Center the 3rd process step in the bottom row */
  .process-step:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    max-width: 280px;
  }

  .process-arrow {
    display: none;
  }
  
  /* Footer details */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* CTA banner */
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-visual-wrapper {
    justify-content: center;
  }
  .cta-dashed-flow {
    display: none;
  }

  /* Reel Modal adjustments on tablets */
  .modal-content {
    width: 88%;
    max-width: 380px;
    height: 82vh;
  }
  .modal-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .modal-nav-btn.prev-btn {
    left: 12px;
  }
  .modal-nav-btn.next-btn {
    right: 12px;
  }
}

/* Breakpoint 520px - Mobile viewports */
@media (max-width: 520px) {
  .hero {
    padding: 0;
  }
  .hero-grid {
    padding-top: 12px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 24px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-desc {
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .hero-image {
    border-radius: 12px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
  }

  .hero-stat-item {
    padding: 10px 4px;
    border-radius: 10px;
    gap: 4px;
  }

  .hero-stat-item .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .hero-stat-item .stat-number {
    font-size: 0.98rem;
  }

  .hero-stat-item .stat-label {
    font-size: 0.62rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .category-card {
    padding: 18px 10px 16px;
    border-radius: 12px;
  }
  .category-icon-wrapper {
    font-size: 1.6rem;
    height: 36px;
    width: 36px;
    margin-bottom: 10px;
  }
  .category-card h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }
  .category-card p {
    font-size: 0.76rem;
  }
  .categories-footer {
    margin-top: 24px;
  }
  .category-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
  }
  
  /* Portfolio items for mobile viewports */
  .portfolio-item {
    flex: 0 0 78vw;
    max-width: 270px;
    height: 480px;
    border-radius: 20px;
    scroll-snap-align: center;
  }
  .portfolio-item .player-viewport-scaler {
    transform: scale(0.25); /* 270 / 1080 */
  }
  .portfolio-item .brand-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 11px;
  }
  .portfolio-item .card-fullscreen-btn {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .portfolio-item .center-play-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .portfolio-item .center-play-btn.playing {
    width: 56px !important;
    height: 56px !important;
    font-size: 22px !important;
    opacity: 0.9 !important;
    pointer-events: auto !important;
  }
  .portfolio-item .card-bottom-info {
    bottom: 46px;
    left: 12px;
  }
  .portfolio-item .views-count {
    font-size: 11px;
    padding: 4px 9px;
  }
  .portfolio-item .card-bottom-bar {
    padding: 8px 12px 12px 12px;
    gap: 8px;
  }
  .portfolio-item .mute-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .portfolio-item .progress-container {
    height: 5px;
  }

  /* Retain and scale down slider buttons on mobile */
  .carousel-wrapper .nav-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    font-size: 15px !important;
  }

  .carousel-wrapper .nav-btn.prev {
    left: -10px !important;
  }

  .carousel-wrapper .nav-btn.next {
    right: -10px !important;
  }
  
  /* Testimonials for mobile viewports */
  .testimonials-grid {
    gap: 16px;
  }

  .testimonial-card {
    flex: 0 0 84vw;
    max-width: 300px;
    padding: 15px;
    border-radius: 20px;
    scroll-snap-align: center;
  }

  .testimonial-video-box {
    width: 270px;
    height: 480px;
    max-width: 100%;
    margin-bottom: 12px;
    border-radius: 16px;
  }
  .testimonial-video-box .player-viewport-scaler {
    transform: scale(0.25); /* 270 / 1080 */
  }
  .testimonial-video-box .brand-badge {
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    font-size: 10px;
  }
  .testimonial-video-box .card-fullscreen-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .testimonial-video-box .center-play-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .testimonial-video-box .card-bottom-info {
    bottom: 44px;
    left: 10px;
  }
  .testimonial-video-box .views-count {
    font-size: 10px;
    padding: 3px 8px;
  }
  .testimonial-video-box .card-bottom-bar {
    padding: 8px 10px 10px 10px;
    gap: 8px;
  }
  .testimonial-video-box .mute-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .testimonial-video-box .progress-container {
    height: 4px;
  }

  .testimonial-desc {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .testimonial-user {
    padding-top: 12px;
  }
  .testimonial-name {
    font-size: 0.9rem;
  }
  .testimonial-role {
    font-size: 0.72rem;
  }

  /* Retain and scale down testimonial slider buttons on mobile */
  .testimonial-slider-btn {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .testimonial-slider-btn.prev-btn {
    left: -15px;
  }

  .testimonial-slider-btn.next-btn {
    right: -15px;
  }
  
  /* 2-column footer grid on mobile */
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-terms {
    justify-content: center;
  }
  
  .cta-banner {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 1.8rem;
  }

  /* Reel Modal adjustments on mobile */
  .modal-content {
    width: 92%;
    max-width: 340px;
    height: 80vh;
    border-radius: var(--radius-md);
  }
  .modal-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .modal-nav-btn.prev-btn {
    left: 6px;
  }
  .modal-nav-btn.next-btn {
    right: 6px;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse-whatsapp 2s infinite ease-out;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  /* Client Logos Responsive Tweaks */
  .client-logos-section {
    padding: 45px 0 50px;
  }
  .client-logos-title {
    font-size: 1.65rem;
  }
  .client-logos-desc {
    font-size: 0.9rem;
  }
  .client-stats-bar {
    gap: 12px;
    padding: 6px 16px;
    border-radius: var(--radius-md);
  }
  .client-stat-item {
    font-size: 0.8rem;
  }
  .client-logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
  }
  .logo-item {
    height: 90px;
    padding: 12px 18px;
  }
  .logo-item img {
    max-height: 60px;
    max-width: 145px;
    filter: opacity(0.98);
  }

  /* Whole Mobile Video Full View Modal */
  .video-modal {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    width: min(92vw, calc(86vh * (9 / 16))) !important;
    height: min(86vh, calc(92vw * (16 / 9))) !important;
    aspect-ratio: 9 / 16 !important;
    max-width: 400px !important;
    max-height: 84vh !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
    margin: auto !important;
  }
  .modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.4);
    z-index: 30;
  }
  .modal-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    z-index: 25;
  }
  .modal-nav-btn.prev-btn {
    left: 6px;
  }
  .modal-nav-btn.next-btn {
    right: 6px;
  }
}


/* Carousel Nav Button Hidden State */
.nav-btn.hidden,
.carousel-wrapper .nav-btn.hidden,
.showcase-container .nav-btn.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
