/* 
   Social Sigma Creative Digital Marketing Agency
   Core Stylesheet & Design System
*/

@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');

/* --- Theme Tokens --- */
:root {
  --blue: #1877F2;
  --lime: #c1ff72;
  --white: #ffffff;
  --dark: #0a0f1d;
  --dark-accent: #111827;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-white: #f8fafc;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(24, 119, 242, 0.1), 0 4px 6px -2px rgba(24, 119, 242, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(24, 119, 242, 0.15), 0 10px 10px -5px rgba(24, 119, 242, 0.04);
  --shadow-glow: 0 0 30px rgba(193, 255, 114, 0.25);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-dark-bg: rgba(10, 15, 29, 0.7);
  --glass-dark-border: rgba(255, 255, 255, 0.06);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

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

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

li {
  list-style: none;
}

/* --- Loader: Skyrocketing Animation --- */
#rocket-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#rocket-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(24, 119, 242, 0.05) 0%, transparent 80%);
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.rocket-wrapper {
  position: relative;
  width: 120px;
  height: 200px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rocket SVG Style */
.rocket-svg {
  width: 80px;
  height: auto;
  transform: rotate(0deg);
  transition: var(--transition-smooth);
}

/* Ignition shaking */
.ignite .rocket-svg {
  animation: rocket-shake 0.1s infinite alternate;
}

/* Takeoff fly up */
.takeoff .rocket-svg {
  animation: rocket-fly-up 1s cubic-bezier(0.6, -0.28, 0.735, 0.04) forwards;
}

/* Flames & Smoke */
.rocket-flame {
  position: absolute;
  bottom: 30px;
  width: 16px;
  height: 0px;
  background: linear-gradient(to top, transparent, #ff4500, #ff8c00, var(--lime));
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
}

.ignite .rocket-flame {
  height: 60px;
  opacity: 1;
  animation: flame-flicker 0.15s infinite alternate;
}

.takeoff .rocket-flame {
  height: 120px;
  opacity: 1;
}

/* Smoke particles generator from JS */
.smoke-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  animation: smoke-fall 1.5s forwards ease-out;
}

.loader-text-wrap {
  text-align: center;
  color: var(--white);
  font-family: var(--font-heading);
}

.loader-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.loader-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-progress-bar {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  transition: width 2.5s cubic-bezier(0.1, 0.8, 0.25, 1);
}

/* Animations */
@keyframes rocket-shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  100% { transform: translate(-1px, -1px) rotate(0.5deg); }
}

@keyframes flame-flicker {
  0% { transform: scaleX(0.9); }
  100% { transform: scaleX(1.15) scaleY(1.1); }
}

@keyframes rocket-fly-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-120vh) scale(0.6); }
}

@keyframes smoke-fall {
  0% {
    transform: translateY(20px) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translateY(180px) scale(2.5);
    opacity: 0;
  }
}

/* --- Main Layout Headers --- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--transition-smooth);
}

header.site-header.scrolled {
  padding: 0.8rem 2rem;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.nav-logo-img:hover {
  transform: scale(1.04);
}

.loader-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

/* CTAs & Buttons */
.btn-nav-enquire {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--border-radius-full);
  border: 1px solid var(--dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-nav-enquire:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 90% 10%, rgba(193, 255, 114, 0.07) 0%, transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(24, 119, 242, 0.04) 0%, transparent 55%);
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  transition: transform 0.2s ease-out;
}

.blob-blue {
  width: 400px;
  height: 400px;
  background-color: var(--blue);
  top: 15%;
  right: 10%;
}

.blob-lime {
  width: 300px;
  height: 300px;
  background-color: var(--lime);
  bottom: 20%;
  left: 10%;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tag span {
  width: 25px;
  height: 2px;
  background-color: var(--blue);
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title span.lime-glow {
  background: linear-gradient(135deg, var(--blue) 20%, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  font-family: var(--font-heading);
  font-weight: 650;
  font-size: 1rem;
  padding: 1.1rem 2.2rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.btn-secondary {
  font-family: var(--font-heading);
  font-weight: 650;
  font-size: 1rem;
  padding: 1.1rem 2.2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.hero-socials {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-social-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.hero-social-links {
  display: flex;
  gap: 1.2rem;
}

.hero-social-link {
  font-size: 1.1rem;
  color: var(--text-light);
}

.hero-social-link:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

/* Hero Right Side: Skyrocket Graphic */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Right Side: Dynamic Interactive Analytics Dashboard */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-dashboard-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 500px;
  perspective: 1000px;
}

/* Glassmorphic Panels Base */
.dashboard-panel {
  position: absolute;
  background: rgba(10, 15, 29, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.dashboard-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(24, 119, 242, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Panel Header */
.panel-header {
  height: 40px;
  padding: 0 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.window-dots .dot.red { background-color: #ff5f56; }
.window-dots .dot.yellow { background-color: #ffbd2e; }
.window-dots .dot.green { background-color: #27c93f; }

.panel-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.panel-status-live {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: live-pulse 1.8s infinite ease-in-out;
}

/* Panel 1: Main Panel */
.panel-main {
  width: 100%;
  height: 320px;
  top: 70px;
  left: 0;
  z-index: 2;
  animation: dashboard-float-main 8s ease-in-out infinite alternate;
}

.panel-main .panel-body {
  padding: 1.2rem;
  height: calc(100% - 85px);
}

.main-chart-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.chart-legend {
  display: flex;
  gap: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.chart-legend i {
  font-size: 0.5rem;
  margin-right: 4px;
}

.text-blue { color: var(--blue) !important; }
.text-lime { color: var(--lime) !important; }

/* SVG Graph Drawing */
.analytics-svg-chart {
  width: 100%;
  flex-grow: 1;
  overflow: visible;
}

.chart-path-blue {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.8s;
}

.chart-area-blue {
  opacity: 0;
  animation: fade-in-area 1.5s ease forwards;
  animation-delay: 2.2s;
}

.chart-path-lime {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 3.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1.1s;
}

.chart-area-lime {
  opacity: 0;
  animation: fade-in-area 1.5s ease forwards;
  animation-delay: 2.4s;
}

.chart-marker-pulse {
  transform-origin: center;
  animation: marker-pulse-glow 1.5s infinite alternate;
  animation-delay: 2.8s;
}

/* Panel Main Footer Stats */
.panel-main .panel-footer {
  height: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

/* Panel 2: Meta Ads Card */
.panel-ads {
  width: 310px;
  height: 180px;
  top: -15px;
  right: -15px;
  z-index: 3;
  animation: dashboard-float-ads 7s ease-in-out infinite alternate-reverse;
}

.panel-ads .panel-header {
  gap: 8px;
  justify-content: flex-start;
}

.panel-ads .panel-header i {
  font-size: 1rem;
}

.campaign-badge-active {
  background: rgba(193, 255, 114, 0.12);
  color: var(--lime);
  border: 1px solid rgba(193, 255, 114, 0.3);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: var(--border-radius-sm);
  margin-left: auto;
}

.panel-ads .panel-body {
  padding: 1.1rem;
}

.ads-quick-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 1.2rem;
}

.quick-metric {
  display: flex;
  flex-direction: column;
}

.q-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.q-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.ads-progress-meters {
  display: flex;
  flex-direction: column;
}

.meter-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.meter-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-full);
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 8px rgba(193, 255, 114, 0.4);
}

/* Panel 3: Floating Badge */
.panel-badge {
  width: 220px;
  height: 75px;
  bottom: 45px;
  left: -25px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 1.2rem;
  animation: dashboard-float-badge 9s ease-in-out infinite alternate;
}

.badge-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(193, 255, 114, 0.08);
  border: 1px solid rgba(193, 255, 114, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-icon-wrap i {
  font-size: 1.1rem;
}

.badge-details {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.badge-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lime);
}

/* Parallax depth styles */
#hero-dashboard {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Keyframes animations */
@keyframes dashboard-float-main {
  0% { transform: translateZ(10px) translateY(0px) rotate(0deg); }
  100% { transform: translateZ(10px) translateY(-12px) rotate(0.4deg); }
}

@keyframes dashboard-float-ads {
  0% { transform: translateZ(40px) translateY(0px) rotate(0deg); }
  100% { transform: translateZ(40px) translateY(-18px) rotate(-0.8deg); }
}

@keyframes dashboard-float-badge {
  0% { transform: translateZ(60px) translateY(0px) rotate(0deg); }
  100% { transform: translateZ(60px) translateY(-10px) rotate(0.6deg); }
}

@keyframes live-pulse {
  0% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(193, 255, 114, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(193, 255, 114, 0); }
  100% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(193, 255, 114, 0); }
}

@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in-area {
  to { opacity: 1; }
}

@keyframes marker-pulse-glow {
  0% { r: 4px; opacity: 0.8; }
  100% { r: 7px; opacity: 1; filter: drop-shadow(0 0 5px var(--lime)); }
}

/* Responsive Overrides for Hero Dashboard */
@media (max-width: 991px) {
  .hero-dashboard-container {
    max-width: 400px;
    height: 420px;
    margin: 0 auto;
  }
  .panel-main {
    top: 40px;
    height: 280px;
  }
  .panel-main .panel-body {
    height: calc(100% - 80px);
  }
  .panel-ads {
    width: 260px;
    height: 165px;
    top: -15px;
    right: -10px;
  }
  .panel-ads .panel-body {
    padding: 0.9rem;
  }
  .ads-quick-metrics {
    margin-bottom: 0.8rem;
  }
  .panel-badge {
    width: 180px;
    height: 65px;
    bottom: 25px;
    left: -15px;
    padding: 0 0.8rem;
    gap: 10px;
  }
  .badge-icon-wrap {
    width: 32px;
    height: 32px;
  }
  .badge-value {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-image-wrap {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-dashboard-container {
    max-width: 320px;
    height: 380px;
  }
  .panel-main {
    top: 60px;
    height: 250px;
  }
  .panel-ads {
    width: 220px;
    height: 145px;
    top: 0px;
    right: 0px;
  }
  .panel-ads .panel-body {
    padding: 0.7rem;
  }
  .ads-quick-metrics {
    margin-bottom: 0.5rem;
    gap: 8px;
  }
  .q-value {
    font-size: 1rem;
  }
  .panel-badge {
    display: none; /* Avoid cluttering on tiny screens */
  }
}

/* --- Infinite Partners Marquee --- */
.partners-marquee {
  background-color: var(--white);
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 2.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

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

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

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

.marquee-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.partner-logo i {
  font-size: 1.5rem;
}

.partner-logo:hover {
  color: var(--blue);
}

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

/* --- Shared Section Styling --- */
section.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--dark);
  color: var(--text-white);
}

.section-dark h2 {
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-dark .section-tag {
  color: var(--lime);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-desc {
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* --- About Section ("Marketing is our Jam") --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.about-content h3 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-highlight {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-ctas {
  display: flex;
  gap: 1.5rem;
}

.about-media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  background-color: var(--dark-accent);
}

.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 15, 29, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  pointer-events: none;
}

.about-media-tag {
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.about-media-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

/* --- Capabilities Section --- */
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.capability-row {
  display: grid;
  grid-template-columns: 80px 1.5fr 2.5fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  position: relative;
}

.capability-row:last-child {
  border-bottom: none;
}

.capability-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
}

.capability-title {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition-fast);
}

.capability-summary {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.capability-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.capability-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-sm);
  color: rgba(255, 255, 255, 0.8);
}

.capability-cta {
  text-align: right;
}

.btn-arrow-glow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-arrow-glow i {
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

/* Hover Capabilities States */
.capability-row:hover {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: rgba(24, 119, 242, 0.03);
  border-radius: var(--border-radius-md);
}

.capability-row:hover .capability-title {
  color: var(--lime);
}

.capability-row:hover .capability-num {
  color: var(--blue);
}

.capability-row:hover .btn-arrow-glow {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.capability-row:hover .btn-arrow-glow i {
  transform: rotate(45deg);
}

/* Preview Video on Row Hover */
.capability-preview-video {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%) scale(0.8);
  width: 140px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--blue);
}

.capability-preview-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-row:hover .capability-preview-video {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* --- Specialized Services --- */
.specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.special-card {
  background: var(--white);
  padding: 3rem 2.2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.special-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(24, 119, 242, 0.05);
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.special-icon-wrap i {
  font-size: 1.5rem;
  color: var(--blue);
  transition: var(--transition-smooth);
}

.special-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.special-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}

/* Card hover */
.special-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.special-card:hover .special-icon-wrap {
  background: var(--blue);
}

.special-card:hover .special-icon-wrap i {
  color: var(--white);
}

/* --- Metrics / Stats Section --- */
.stats {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.stats::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--dark-accent), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 850;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(193, 255, 114, 0.15);
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Secondary Marquee / Row of Stats */
.stats-banner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 4rem;
}

.stat-banner-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.stat-banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  font-size: 1.2rem;
}

.stat-banner-content h4 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.stat-banner-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Portfolio Carousel --- */
.portfolio-slider-container {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.portfolio-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.portfolio-card {
  min-width: calc(33.333% - 1.333rem);
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.portfolio-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.06);
}

.portfolio-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.portfolio-card:hover .portfolio-img-overlay {
  opacity: 1;
}

.btn-view-gallery {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.portfolio-card:hover .btn-view-gallery {
  transform: translateY(0);
}

.portfolio-info {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.btn-slider {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: var(--white);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.btn-slider:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--blue);
}

/* Lightbox Modal (For Portfolios) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.98);
  z-index: 100000;
  display: none; /* JS toggled */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--lime);
  transform: rotate(90deg);
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-slider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.lightbox-img-wrap {
  max-width: 100%;
  max-height: 100%;
  display: none;
  animation: scale-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img-wrap.active {
  display: block;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.btn-lightbox-nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  transition: var(--transition-fast);
}

.btn-lightbox-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
  width: 100%;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
}

.lightbox-thumb {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--lime);
}

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

@keyframes scale-up {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Testimonials --- */
.testimonials {
  background-color: #f8fafc;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: calc(50% - 1rem);
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(24, 119, 242, 0.08);
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

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

.client-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

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

/* --- Contact / Enquiry Form Footer --- */
.contact-section {
  background-color: var(--dark);
  color: var(--white);
  padding: 120px 0 60px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

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

.contact-tag {
  color: var(--lime);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.contact-heading {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--lime);
  font-size: 1.1rem;
}

.contact-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.contact-text a, .contact-text span {
  font-size: 1.1rem;
  font-weight: 550;
  color: var(--white);
}

.contact-text a:hover {
  color: var(--lime);
}

.contact-socials {
  display: flex;
  gap: 1.2rem;
}

.social-circle {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-circle:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(8px);
}

.contact-form-wrap h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.4rem;
  border-radius: var(--border-radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.04);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  top: 1.1rem;
  left: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Float label animation */
.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
  top: -12px;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--lime);
  background: var(--dark);
  padding: 0 0.5rem;
}

.btn-form-submit {
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 2rem;
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-form-submit:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.35);
}

/* Footer bottom copyright */
.footer-bottom {
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* --- Scroll Reveal States (JS added class) --- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Specific delays if items are siblings */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .specialized-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .capability-row {
    grid-template-columns: 50px 1.2fr 2.2fr;
  }
  
  .capability-cta, .capability-preview-video {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  header.site-header {
    padding: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-link {
    color: var(--white);
    font-size: 1.1rem;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 10000;
  }
  
  .mobile-toggle.active {
    color: var(--white);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .specialized-grid {
    grid-template-columns: 1fr;
  }
  
  .capability-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
  }
  
  .capability-num {
    font-size: 1.2rem;
  }
  
  .capability-title {
    font-size: 1.4rem;
  }
  
  .portfolio-card {
    min-width: 100%;
  }
  
  .testimonial-card {
    min-width: 100%;
    padding: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrap {
    padding: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   PHASE 2: PORTFOLIO & INSTAGRAM LAYOUTS & ADS MANAGER TABLES
   ========================================================================== */

.portfolio-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.05) 0%, transparent 70%);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 3rem auto 4rem;
  padding: 0.6rem;
  max-width: 700px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-full);
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: var(--text-dark);
  border: none;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Instagram Showcase Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 80px;
}

.insta-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.insta-card:hover {
  box-shadow: var(--shadow-lg);
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #f1f5f9;
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.insta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

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

.insta-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.insta-meta h4 i.fa-check-circle {
  color: #3897f0; /* Instagram verified blue */
  font-size: 0.85rem;
}

.insta-meta p {
  font-size: 0.75rem;
  color: var(--text-light);
}

.insta-follow-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--blue);
}

.insta-follow-btn:hover {
  color: var(--dark);
}

/* Tab controls between Creatives and Ads */
.insta-tabs {
  display: flex;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}

.tab-btn {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.9rem;
  background: transparent;
  color: var(--text-light);
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: var(--white);
}

/* Card view panels */
.insta-content-panels {
  position: relative;
  flex-grow: 1;
}

.panel-view {
  display: none;
  width: 100%;
  height: 100%;
}

.panel-view.active {
  display: block;
}

/* Carousel/Slideshow Inside Instagram Card */
.insta-body {
  position: relative;
  width: 100%;
  height: 420px;
  background: #0f172a;
  overflow: hidden;
}

.insta-slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-slide {
  min-width: 100%;
  height: 100%;
}

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

/* Slide Nav controls */
.insta-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--dark);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.insta-slider-btn:hover {
  background: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.insta-slider-btn-prev { left: 1rem; }
.insta-slider-btn-next { right: 1rem; }

.insta-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}

.insta-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.insta-slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Instagram Footer details */
.insta-footer {
  padding: 1.2rem;
  background: var(--white);
}

.insta-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.insta-actions-left {
  display: flex;
  gap: 1.2rem;
}

.insta-action-icon {
  cursor: pointer;
  transition: var(--transition-fast);
}

.insta-action-icon:hover {
  transform: scale(1.1);
  color: var(--blue);
}

.insta-action-icon.fa-heart:hover,
.insta-action-icon.fa-heart.liked {
  color: #ed4956;
}

.insta-likes {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.insta-caption {
  font-size: 0.9rem;
  line-height: 1.5;
}

.insta-caption span.insta-username {
  font-weight: 700;
  margin-right: 0.4rem;
}

.insta-time {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* Meta Ads Manager Panel Mockup */
.ads-performance-panel {
  padding: 2rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  height: 420px;
  overflow-y: auto;
  border-bottom: 1px solid #e2e8f0;
}

.ads-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.6rem;
}

.ads-panel-header i {
  color: var(--blue);
}

.ads-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ads-metric-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ads-metric-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.ads-metric-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 750;
  color: var(--dark);
}

.ads-metric-card.highlight {
  background: rgba(24, 119, 242, 0.02);
  border-color: rgba(24, 119, 242, 0.2);
}

.ads-metric-card.highlight .ads-metric-val {
  color: var(--blue);
}

.ads-metric-card.lime-highlight {
  background: rgba(193, 255, 114, 0.03);
  border-color: rgba(139, 195, 74, 0.3);
}

.ads-metric-card.lime-highlight .ads-metric-val {
  color: #558b2f;
}

.ads-chart-wrap {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ads-chart-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.ads-sparkline {
  width: 100%;
  height: 60px;
}

.ads-sparkline path {
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
}

.ads-sparkline-area {
  fill: url(#chart-gradient);
  opacity: 0.1;
}

.ads-status-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

.ads-status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-weight: 600;
}

.ads-status-active::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #16a34a;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .portfolio-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .portfolio-filters {
    border-radius: var(--border-radius-md);
    margin-bottom: 2rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ads-metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .ads-performance-panel,
  .insta-body {
    height: 380px;
  }
}

/* Instagram Grid Style */
.panel-creatives {
  height: auto !important;
}

.panel-creatives .insta-body {
  height: auto !important;
  background: transparent;
  overflow: visible !important;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--white);
  padding: 0;
  width: 100%;
}

.insta-grid-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #0f172a;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-grid-item:hover img {
  transform: scale(1.06);
}

.insta-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: var(--white);
  font-size: 1.3rem;
  z-index: 2;
}

.insta-grid-item:hover .insta-grid-overlay {
  opacity: 1;
}

/* ==========================================================================
   REDESIGNED MODERN PORTFOLIO CARDS (DARK & MOTION)
   ========================================================================== */

body {
  background: var(--dark) !important;
  color: var(--white) !important;
}

.portfolio-hero {
  background: radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.15) 0%, transparent 60%);
  padding-bottom: 30px;
}

.portfolio-hero h1 {
  background: linear-gradient(135deg, var(--white) 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  letter-spacing: -0.02em;
}

/* Redesigned grid container */
.showcase-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(40px);
  animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover dynamic shadows */
.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(24, 119, 242, 0.15);
}

/* Brand specific glow effects */
.project-card[data-brand="royal-venetian"]:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(24, 119, 242, 0.25);
}
.project-card[data-brand="mark-jillion"]:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(237, 73, 86, 0.25);
}
.project-card[data-brand="key4you"]:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 235, 59, 0.2);
}
.project-card[data-brand="black-wizard"]:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(193, 255, 114, 0.25);
}

/* Header layout */
.project-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-card-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card-logo-wrap {
  transform: rotate(360deg);
}

.project-card-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.project-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-card-title {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.project-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
  font-weight: 700;
  background: rgba(193, 255, 114, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(193, 255, 114, 0.2);
}

/* Embedded Ads Manager Panel inside card */
.project-card-ads {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-card-ads {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.project-card-ads-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.6rem;
}

.project-card-ads-header i {
  color: var(--blue);
}

.project-card-ads-status-active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #10b981;
  font-weight: 700;
  font-size: 0.75rem;
}

.project-card-ads-status-active::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10b981;
}

.project-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-card-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-card-metric-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.project-card-metric-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 750;
  color: var(--white);
}

.project-card-metric.highlight-roas .project-card-metric-val {
  color: var(--lime);
  text-shadow: 0 0 10px rgba(193, 255, 114, 0.2);
}

.project-card-metric.highlight-conv .project-card-metric-val {
  color: #3897f0;
  text-shadow: 0 0 10px rgba(56, 151, 240, 0.2);
}

/* Embedded Sparkline Graphic */
.project-card-sparkline-wrap {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-card-sparkline-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.project-card-sparkline-svg {
  width: 100%;
  height: 40px;
}

.project-card-sparkline-svg path.line {
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.project-card-sparkline-svg path.area {
  fill: url(#card-gradient-blue);
  opacity: 0.15;
}

.project-card-ads-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.6rem;
}

/* Action Button grid */
.project-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.project-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-btn-insta {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
}

.project-btn-insta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.project-btn-web {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
}

.project-btn-web:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Centered Behance CTA button at bottom */
.portfolio-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 6rem;
  width: 100%;
}

.btn-portfolio-behance {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 2.8rem;
  background: linear-gradient(135deg, #1877F2 0%, #0c3e7f 100%);
  border: 1px solid rgba(24, 119, 242, 0.4);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.2);
}

.btn-portfolio-behance:hover {
  background: linear-gradient(135deg, #1e82ff 0%, #104c99 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 30px rgba(24, 119, 242, 0.4), 0 0 15px rgba(24, 119, 242, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-portfolio-behance i {
  font-size: 1.3rem;
}

/* Overrides */
.portfolio-filters {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.filter-btn {
  color: rgba(255, 255, 255, 0.7) !important;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

@media (max-width: 1024px) {
  .showcase-grid-redesigned {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-hero h1 {
    font-size: 2.8rem;
  }
  
  .showcase-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-card {
    padding: 1.8rem;
  }
  
  .project-card-metrics {
    grid-template-columns: 1fr;
  }
  
  .portfolio-cta-wrap {
    margin: 3rem 0 4rem;
  }
}

/* Homepage Slider support for Project Cards */
.portfolio-track .project-card {
  min-width: calc(33.333% - 1.333rem);
}

@media (max-width: 1024px) {
  .portfolio-track .project-card {
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .portfolio-track .project-card {
    min-width: 100%;
  }
}

/* Homepage Portfolio View Details Button */
.portfolio-view-details-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

.btn-view-details-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-view-details-portfolio:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

