/* =============================================
   VENTURE IMAGINATION — FULL WEBSITE
   White + Orange theme · Dotted hero
   ============================================= */

/* ── GLOBAL STYLES ────────────────────────── */
:root {
  --orange: #05a876;
  --orange-d: #018566;
  --violet: #6c3eff;
  --white: #ffffff;
  --bg: #f0f2f8;
  --off: #f7f6f2;
  --ink: #0f1117;
  --dark: #0d0e12;
  --mid: #6b7280;
  --border: rgba(0, 0, 0, 0.08);
  --card-bg: rgba(255, 255, 255, 0.90);
  --r: 14px;

  /* Shared with service pages */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

body.drawer-open {
  overflow: hidden;
}

/* Make images and other media scale within their containers */
img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--ink);
  line-height: 1.1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── NAVBAR STYLES ────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

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

.nav-links a.active {
  color: var(--orange);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a::after {
  display: none;
  /* remove underline effect for dropdown */
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: rgba(5, 168, 118, 0.05);
  color: var(--orange);
  padding-left: 28px;
}

.nav-cta {
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(5, 168, 118, 0.25);
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
}

/* MINIMAL HEADER */
.min-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(108, 62, 255, 0.08);
  transition: all 0.3s ease;
}

.min-header.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.min-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  transition: opacity 0.3s;
}

.min-brand:hover {
  opacity: 0.8;
}

.min-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.min-home-btn:hover {
  background: var(--orange);
  transform: translateX(-5px);
  box-shadow: 0 8px 20px rgba(5, 168, 118, 0.3);
}

.min-home-btn i {
  font-size: 15px;
}

/* Hamburger & Mobile Drawer */
.ham-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.ham-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Drawer open state */
.ham-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ham-btn.open span:nth-child(2) {
  opacity: 0;
}

.ham-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 30px 40px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: block;
  right: 0;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding-left: 15px;
  margin-top: 10px;
  border-left: 2px solid rgba(5, 168, 118, 0.2);
}

.drawer-submenu a {
  font-size: 15px !important;
  color: #666 !important;
}

.drawer-submenu a:hover {
  color: var(--orange) !important;
}

.mobile-drawer a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}

.mobile-drawer a:hover {
  color: var(--orange);
}

.drawer-cta {
  display: inline-block;
  background: var(--orange) !important;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 9px;
}

/* ── HERO SECTIONS ────────────────────────── */
.hero {
  position: relative;
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 66px;
  background: linear-gradient(155deg, #edf0fa 0%, #f5f3fb 45%, #ede8f7 100%);
}

.dot-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.conn-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cl {
  stroke: rgba(108, 62, 255, .18);
  stroke-width: 1.4;
  stroke-dasharray: 7 5;
  animation: dashAnim 4s linear infinite;
}

.cl:nth-child(1) {
  animation-delay: 0s
}

.cl:nth-child(2) {
  animation-delay: .7s
}

.cl:nth-child(3) {
  animation-delay: 1.4s
}

.cl:nth-child(4) {
  animation-delay: 2.1s
}

.cl:nth-child(5) {
  animation-delay: .35s
}

.cl:nth-child(6) {
  animation-delay: 1.05s
}

.hero-center-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 720px;
}

/* Center icon */
.hero-icon-wrap {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 4;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hic {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(80, 40, 180, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  animation: iconFloat 3.5s ease-in-out infinite;
}

.hic span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.hero-logo {
  height: 52px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
}

.hir {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(108, 62, 255, .15);
  animation: ringPulse 3s ease-in-out infinite;
}

.r1 {
  width: 105px;
  height: 105px;
  animation-delay: 0s
}

.r2 {
  width: 148px;
  height: 148px;
  animation-delay: .7s
}

/* positions */
.fl-1 {
  top: 13%;
  left: 3%
}

.fl-2 {
  top: 43%;
  left: 1%
}

.fl-3 {
  top: 70%;
  left: 4%
}

.fr-1 {
  top: 13%;
  right: 3%
}

.fr-2 {
  top: 43%;
  right: 1%
}

.fr-3 {
  top: 70%;
  right: 4%
}

/* float animations */
.fa-1 {
  animation: fa1 5s ease-in-out infinite
}

.fa-2 {
  animation: fa2 6s ease-in-out infinite
}

.fa-3 {
  animation: fa3 4.5s ease-in-out infinite
}

/* Hero center */
.hero-center {
  text-align: center;
  max-width: 660px;
  padding: 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(108, 62, 255, .12);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--mid);
}

.trust-pill b {
  color: var(--ink);
}

.avs {
  display: flex;
}

.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.av:first-child {
  margin-left: 0;
}

.hero-center h1 {
  margin-bottom: 18px;
}

.hl {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6.5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  animation: slideIn .85s cubic-bezier(.22, .61, .36, 1) both;
}

/* Service Hero Specifics */
.hero-modern {
  padding: 100px 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero-modern .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── SERVICE PAGES ─────────────────────────── */
body.theme-web-design {
  --primary-color: #4A00E0;
  --primary-light: #8E2DE2;
  --accent-color: #00F2FE;
  --accent-hover: #4FACFE;
  --orange: var(--primary-color);
  --orange-d: var(--primary-light);
  --violet: #6c3eff;
  /* Kept from original */
}

body.theme-digital {
  --orange: #ff6b00;
  --orange-d: #e66000;
}

body.theme-graphic {
  --primary-color: #06402b;
  --primary-light: #0d5c41;
  --accent-color: #ff6a00;
  --accent-hover: #e55e00;
  --orange: var(--accent-color);
  --orange-d: var(--accent-hover);
  --violet: #8b5cf6;
  /* Kept from original */
}

body.theme-video {
  --orange: #ff6a00;
  /* Neon Orange */
  --orange-d: #e65c00;
  --violet: #2e1065;
  /* Dark Purple */
  --bg: #020617;
  /* Deepest blue/black */
  --off: #0f172a;
  --white: #1e293b;
  --ink: #f8fafc;
  --dark: #f1f5f9;
  --mid: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(15, 23, 42, 0.8);
}

body.theme-event {
  --orange: #FF8A00;
  /* Exact Accent */
  --orange-d: #E67A00;
  --violet: #5B2EFF;
  /* Exact Primary */
  --bg: #FFFFFF;
  --off: #F8F9FB;
  /* Light Grey BG for Sections */
  --white: #ffffff;
  --ink: #1A1A1A;
  /* Main Heading Text */
  --body-text: #555555;
  /* Paragraph Text */
  --dark: #111111;
  /* Dark Section BG */
  --mid: #666666;
  /* Secondary Text */
  --border: rgba(91, 46, 255, 0.1);
  --card-bg: #FFFFFF;
  --accent-gradient: linear-gradient(135deg, #5B2EFF, #FF8A00);
  --bread-gradient: linear-gradient(to right, #FFFFFF, #F3EFFF);
  --process-gradient: linear-gradient(to bottom, #FFFFFF, #F8F6FF);
}

/* Breadcrumb Banner Section (Matching Video Production Style) */
.breadcrumb-banner {
  width: 100%;
  padding: 30px 0;
  background: linear-gradient(to right, #FFFFFF, #F1EDFF);
  position: relative;
  z-index: 10;
  display: flex !important;
  align-items: center;
  margin-top: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: auto !important;
}

.breadcrumb-banner .container {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumb-nav {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #333;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  color: var(--violet);
}

.breadcrumb-nav .separator {
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  color: #1A1A1A;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 600px) {
  .breadcrumb-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Event Hero Section */
.event-hero {
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.event-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.event-hero-text h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
  line-height: 1.1;
}

.event-hero-text h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-hero-text p {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 40px;
  max-width: 540px;
}

.event-hero-image {
  position: relative;
  z-index: 1;
}

.event-hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.event-hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.event-hero-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-gradient);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
  filter: blur(20px);
}

/* Event Services Grid */
.event-services {
  background: var(--off);
  padding: 100px 0;
}

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

.event-service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.event-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(91, 46, 255, 0.1);
  border-color: rgba(91, 46, 255, 0.2);
}

.event-service-card .esc-icon {
  width: 60px;
  height: 60px;
  background: var(--off);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--violet);
  margin-bottom: 24px;
  transition: var(--transition);
}

.event-service-card:hover .esc-icon {
  background: var(--violet);
  color: var(--white);
}

.event-service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--ink);
}

.event-service-card p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
}

/* Event Process Section */
.event-process {
  padding: 100px 0;
  background: var(--white);
}

.event-process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.event-process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.eps-num {
  width: 60px;
  height: 60px;
  background: var(--violet);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(91, 46, 255, 0.3);
}

.eps-content {
  background: var(--off);
  padding: 30px 40px;
  border-radius: 16px;
  transition: var(--transition);
}

.eps-content:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateX(10px);
}

.eps-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--violet);
}

.eps-content p {
  font-size: 16px;
  color: var(--body-text);
  margin: 0;
}

/* Event Gallery */
.event-gallery {
  padding: 100px 0;
  background: var(--off);
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.eg-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.eg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.eg-item:hover img {
  transform: scale(1.1);
}

.eg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(91, 46, 255, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.eg-item:hover .eg-overlay {
  opacity: 1;
}

.eg-overlay h4 {
  color: var(--white);
  font-size: 18px;
  margin: 0;
}

/* Why Choose Us - Event */
.event-why {
  padding: 100px 0;
  background: var(--white);
}

.event-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.ew-card {
  display: flex;
  gap: 20px;
}

.ew-icon {
  font-size: 32px;
  color: var(--orange);
  flex-shrink: 0;
}

.ew-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--ink);
}

.ew-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.5;
}

/* Testimonials - Event */
.event-testimonials {
  padding: 100px 0;
  background: var(--off);
}

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

.et-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.et-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.et-card .stars {
  color: var(--orange);
  margin-bottom: 20px;
}

.et-card p {
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 24px;
}

.et-user h5 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--ink);
}

.et-user span {
  font-size: 13px;
  color: var(--mid);
}

/* CTA Event */
.event-cta {
  padding: 100px 0;
  background: var(--violet);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.event-cta * {
  color: var(--white);
}

.event-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}

.event-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .event-services-grid,
  .event-gallery-grid,
  .event-why-grid,
  .event-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .event-hero-text {
    order: 2;
  }
  .event-hero-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  .event-process-step {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .eps-content:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .event-services-grid,
  .event-gallery-grid,
  .event-why-grid,
  .event-testi-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark theme header support */
body.theme-video .min-header,
body.theme-event .min-header {
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.theme-video .min-header.scrolled,
body.theme-event .min-header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.theme-video .min-home-btn,
body.theme-event .min-home-btn {
  background: rgba(255, 255, 255, 0.1);
}

body.theme-video .min-home-btn:hover,
body.theme-event .min-home-btn:hover {
  background: var(--orange);
}

/* Breadcrumb Banner */
.breadcrumb-banner {
  width: 100%;
  background: var(--bg-light);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  margin-top: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.breadcrumb-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-orange,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.btn-orange:hover,
.btn-primary:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
}

.btn-violet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6c3eff, #a855f7);
  color: #fff;
  padding: 15px 32px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(108, 62, 255, .3);
  transition: transform .2s, box-shadow .2s;
}

.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108, 62, 255, .4);
}

.btn-violet i {
  transition: transform .2s;
}

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

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 11px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── CARDS ────────────────────────────────── */
.fcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--r);
  padding: 13px 16px;
  box-shadow: 0 4px 28px rgba(80, 40, 180, .10);
  min-width: 205px;
  z-index: 5;
  transition: all .3s;
}

.fcard:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 14px 40px rgba(80, 40, 180, .18);
}

.fc-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fc-txt {
  flex: 1;
  min-width: 0;
}

.fc-txt b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.fc-txt span {
  font-size: 11.5px;
  color: var(--mid);
}

.fc-ok {
  font-size: 16px;
  flex-shrink: 0;
}

.fctag {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  flex-shrink: 0;
}

.fctag.orange {
  background: #fff0e6;
  color: var(--orange)
}

.fctag.blue {
  background: #e3f2fd;
  color: #1565c0
}

.fctag.purple {
  background: #ede7f6;
  color: #5c35d4
}

.fcplay {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  flex-shrink: 0;
  padding-left: 2px;
}

/* positions */
.fl-1 {
  top: 13%;
  left: 3%
}

.fl-2 {
  top: 43%;
  left: 1%
}

.fl-3 {
  top: 70%;
  left: 4%
}

.fr-1 {
  top: 13%;
  right: 3%
}

.fr-2 {
  top: 43%;
  right: 1%
}

.fr-3 {
  top: 70%;
  right: 4%
}

/* float animations */
.fa-1 {
  animation: fa1 5s ease-in-out infinite
}

.fa-2 {
  animation: fa2 6s ease-in-out infinite
}

.fa-3 {
  animation: fa3 4.5s ease-in-out infinite
}

@keyframes fa1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes fa2 {

  0%,
  100% {
    transform: translateY(-6px)
  }

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

@keyframes fa3 {

  0%,
  100% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-8px)
  }

  70% {
    transform: translateY(4px)
  }
}

/* Hero center */
.hero-center {
  text-align: center;
  max-width: 660px;
  padding: 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(108, 62, 255, .12);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--mid);
}

.trust-pill b {
  color: var(--ink);
}

.avs {
  display: flex;
}

.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.av:first-child {
  margin-left: 0;
}

.hero-center h1 {
  margin-bottom: 18px;
}

.hl {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6.5vw, 70px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  animation: slideIn .85s cubic-bezier(.22, .61, .36, 1) both;
}

.hl1 {
  color: var(--ink);
}

.hl2 {
  animation-delay: .12s;
  background: linear-gradient(135deg, #6c3eff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hl2 em {
  -webkit-text-fill-color: transparent;
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0
  }

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

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 32px;
  animation: fadeUp .7s .35s ease both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp .7s .5s ease both;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  animation: fadeUp .7s .62s ease both;
}

.hero-badges span {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badges i {
  color: var(--orange);
  font-size: 12px;
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0
  }

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

/* Social icons */
.soc-row {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  /* span full width */
  margin: 0 auto;
  /* centre the flex container */
  display: flex;
  justify-content: center;
  /* centre children */
  align-items: center;
  gap: 12px;
  z-index: 6;
  animation: fadeUp .7s .75s ease both;
}

.soc {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 3px 14px rgba(80, 40, 180, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  animation: socFloat 4s ease-in-out infinite;
  transition: transform .25s, box-shadow .25s;
}

.soc:hover {
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 10px 26px rgba(80, 40, 180, .18);
  animation-play-state: paused;
}

.si-yt {
  color: #ff0000;
  animation-delay: 0s
}

.si-ig {
  color: #e1306c;
  animation-delay: .25s
}

.si-fb {
  color: #1877f2;
  animation-delay: .5s
}

.si-li {
  color: #0a66c2;
  animation-delay: .75s
}

.si-x {
  color: #000;
  animation-delay: 1s
}

.si-tt {
  color: #010101;
  animation-delay: 1.25s
}

@keyframes socFloat {

  0%,
  100% {
    transform: translateY(0)
  }

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

.hero-fade-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(237, 240, 250, .5));
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about {
  padding: 130px 6%;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.aif-inner {
  position: absolute;
  inset: -18% 0;
  will-change: transform;
}

.aif-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-float-img {
  position: absolute;
  bottom: -40px;
  right: -34px;
  width: 155px;
  height: 155px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
  will-change: transform;
}

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

.about-badge {
  position: absolute;
  top: 28px;
  left: -22px;
  background: var(--orange);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(93, 236, 131, 0.28);
}

.about-badge .ab-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.about-badge b {
  font-size: 22px;
  font-weight: 700;
}

.about-badge p {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 2px;
}

.about-text p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 36px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.ast {
  border-top: 2px solid var(--orange);
  padding-top: 12px;
}

.ast .sn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.ast b {
  font-size: 24px;
  color: var(--orange);
  font-weight: 700;
}

.ast p {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATISTICS (GREEN DIAL STYLE)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ===== GREEN DIAL EXACT STATS ===== */
.gd-stats {
  background: #1a1d20;
  padding: 70px 0;
}

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

.gd-box {
  flex: 1;
  text-align: center;
}

.gd-box h2 b {
  display: inline-block;
  margin-left: 2px;
  color: #21a366 !important;
}

.gd-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #21a366;
  /* GreenDial Green */
  margin-bottom: 8px;
}

.gd-box p {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 5px;
}

.gd-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .gd-stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .gd-divider {
    width: 80%;
    height: 1px;
  }
}


/* â”€â”€ TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker {
  overflow: hidden;
  background: var(--off);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: tickerGo 26s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  letter-spacing: .06em;
  color: var(--mid);
  white-space: nowrap;
}

.ticker-track b {
  color: var(--orange);
}

.ticker-track i {
  /* margin: 0 18px; */
  color: #21a366;
  font-size: 14px;
  /* opacity: 0.8; */
}

/* Group icon + text together */
.ticker-track .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--mid);
  font-size: 19px;
  letter-spacing: .06em;
}


@keyframes tickerGo {
  to {
    transform: translateX(-50%)
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  position: relative;
  overflow: hidden;
  padding: 130px 6%;
  background: var(--dark);
  color: var(--white);
}

.svc-bg-para {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
}

.svc-bg-para img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

.svc-tint {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 14, .84);
}

.services .sec-head {
  position: relative;
  z-index: 1;
}

.services .sec-head p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
}

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

.svc-card {
  background: rgba(255, 255, 255, .04);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

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

.svc-card:hover {
  background: rgba(255, 255, 255, .07);
}

.svc-card.hot {
  background: var(--orange);
}

.svc-card.hot:hover {
  background: var(--orange-d);
}

.svc-card.hot::before {
  background: var(--white);
}

.sc-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .22);
  margin-bottom: 20px;
}

.svc-card.hot .sc-num {
  color: rgba(255, 255, 255, .45);
}

.sc-icon {
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}

.svc-card.hot .sc-icon {
  color: var(--white);
}

.svc-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
}

.svc-card.hot p {
  color: rgba(255, 255, 255, .8);
}

.sc-arrow {
  position: absolute;
  top: 38px;
  right: 36px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  font-size: 12px;
  transition: border-color .3s, color .3s, transform .35s;
}

.svc-card:hover .sc-arrow {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}

.svc-card.hot .sc-arrow {
  border-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .6);
}

.svc-card.hot:hover .sc-arrow {
  border-color: var(--white);
  color: var(--white);
  transform: rotate(45deg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why {
  position: relative;
  overflow: hidden;
  padding: 140px 6%;
}

.why-bg-para {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
}

.why-bg-para img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.why-tint {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 22, .88);
}

.why-body {
  position: relative;
  z-index: 1;
}

.why-body .sec-head p {
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  font-weight: 300;
}

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

.why-card {
  padding: 40px 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(6px);
  transition: transform .35s, border-color .3s, box-shadow .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 236, 131, 0.28);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
}

.wc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 107, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VISION MISSION STRATEGY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vision {
  padding: 130px 6%;
  background: var(--white);
}

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

.vms-card {
  padding: 48px 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s, border-color .3s;
}

.vms-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .08);
  border-color: rgba(93, 236, 131, 0.28);
}

.vms-card.accent {
  background: var(--ink);
  border-color: var(--ink);
}

.vms-card.accent:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, .18);
}

.vms-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(93, 236, 131, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 22px;
}

.vms-card.accent .vms-icon {
  background: rgba(93, 236, 131, 0.28);
}

.vms-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vms-card.accent h3 {
  color: var(--white);
}

.vms-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

.vms-card.accent p {
  color: rgba(255, 255, 255, .6);
}

.strat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strat-list li {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.strat-list i {
  color: var(--orange);
  font-size: 12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PORTFOLIO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.portfolio {
  padding: 130px 6%;
  background: var(--off);
}

.port-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.ptab {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}

.ptab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.ptab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.port-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.port-item.tall {
  grid-row: span 2;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.port-item:hover img {
  transform: scale(1.07);
}

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 20, .88) 0%, rgba(10, 8, 20, .2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.port-item:hover .pi-overlay {
  opacity: 1;
}

.pi-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 8px;
  width: fit-content;
}

.pi-overlay h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pi-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}

.pi-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background .2s, transform .25s;
}

.port-item:hover .pi-link {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OUR PROCESS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process {
  position: relative;
  overflow: hidden;
  padding: 140px 6%;
}

.proc-bg-para {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
}

.proc-bg-para img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.proc-tint {
  position: absolute;
  inset: 0;
  background: rgb(255, 253, 253);
}

.proc-body {
  position: relative;
  z-index: 1;
}

.proc-body .sec-head p {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 300;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proc-line {
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(0, 0, 0, 0.28);
  z-index: 0;
}

.proc-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--prog, 0%);
  height: 100%;
  background: var(--orange);
  transition: width 1.5s ease;
}

.proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.ps-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.ps-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 107, 0, .12);
  border: 2px solid rgb(0, 255, 68);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 22px;
  transition: background .3s, border-color .3s, transform .3s;
}

.proc-step:hover .ps-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.08);
}

.proc-step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.proc-step p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
  padding: 130px 6%;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 14px;
}

.contact-info>p {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 40px;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 107, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.ci-item b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.ci-item span {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
}

.ci-socials {
  display: flex;
  gap: 10px;
}

.ci-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  text-decoration: none;
  font-size: 15px;
  transition: border-color .2s, color .2s, background .2s;
}

.ci-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 0, .06);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
}

.form-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, .1);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--off);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(93, 236, 131, 0.28);
  transition: background .2s, transform .2s;
}

.form-submit:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 6% 0;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.ft-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.ft-logo-wrap span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.ft-tagline {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 14px;
}

.ft-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, .4);
  max-width: 220px;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 18px;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-col ul a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.ft-col ul a:hover {
  color: var(--orange);
}

.ft-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.ft-socials a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: 15px;
  transition: border-color .2s, color .2s, background .2s;
}

.ft-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(93, 236, 131, 0.28);
}

.ft-newsletter p {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nl-row {
  display: flex;
  gap: 0;
}

.nl-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 9px 0 0 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
}

.nl-row input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.nl-row input:focus {
  border-color: rgba(93, 236, 131, 0.28);
}

.nl-row button {
  padding: 10px 16px;
  border-radius: 0 9px 9px 0;
  background: var(--orange);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}

.nl-row button:hover {
  background: var(--orange-d);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .proc-line {
    display: none;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:1024px) {

  .navbar {
    padding: 0 4%;
    height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .ham-btn {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-center {
    padding: 0 18px;
  }

  .hero-center-wrap {
    max-width: 780px;
  }

  .hero-center h1 {
    font-size: clamp(36px, 6.5vw, 60px);
  }

  .conn-svg {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 80px 6%;
  }

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

  /* Hide floating elements on tablets to avoid overlap */
  .fl-3,
  .fr-3,
  .fcard {
    display: none;
  }
}

@media(max-width:700px) {
  .hero-center h1 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 70px;
    flex-direction: column;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .vms-grid {
    grid-template-columns: 1fr;
  }

  .port-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .port-item.tall {
    grid-row: span 1;
  }

  .proc-steps {
    grid-template-columns: 1fr 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-float-img {
    display: none;
  }

  .fcard {
    display: none;
  }

  .hero-icon-wrap {
    display: flex;
    transform: scale(0.85);
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .conn-svg {
    display: none;
  }

  .soc-row {
    gap: 8px;
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }

  .soc {
    width: 38px;
    height: 38px;
    font-size: 15px;
    border-radius: 10px;
  }
}

@media(max-width:420px) {
  .nav-brand {
    font-size: 15px;
    gap: 8px;
  }
  
  .nav-logo {
    height: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: 1fr;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GRAPHIC DESIGN PAGE SPECIFIC
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* ===== SERVICE HERO IMAGE (Corrected) ===== */
.service-hero {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 180px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-hero .hl1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-hero .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

/* Canvas stays above image */
.dot-canvas {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.why-simple,
.services-sub,
.portfolio-sub,
.process-sub,
.testi-sub,
.cta-sub {
  padding: 100px 5%;
}

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

/* Why Simple Grid */
.why-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.w-item {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.w-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.w-icon {
  width: 60px;
  height: 60px;
  background: rgba(5, 168, 118, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
  margin-bottom: 25px;
}

/* Services Sub Grid */
.svc-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.svc-sub-card {
  background: var(--dark);
  color: var(--white);
  padding: 50px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.svc-sub-card:hover {
  transform: scale(1.02);
}

.ss-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
}

.svc-sub-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.svc-sub-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Portfolio Sub Grid */
.port-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.ps-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ps-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.ps-card:hover img {
  transform: scale(1.1);
}

.ps-info {
  padding: 25px;
}

.ps-info h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.ps-info p {
  color: var(--mid);
  font-size: 14px;
}

/* Process Sub Steps */
.proc-sub-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f9ff;
  padding: 30px 40px;
  border-radius: 20px;
  border-left: 5px solid var(--orange);
}

.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(5, 168, 118, 0.2);
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

/* FAQ Styles */
.faq-section {
  padding: 100px 5%;
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.faq-question i {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--orange);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 22px;
}

/* Service Hero Overrides */
.service-hero .btn-ghost-dark {
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
}

.service-hero .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* ══════════════════════════════════════════════
   PREMIUM SERVICES SECTION (GLASSMORPHISM)
══════════════════════════════════════════════ */
.premium-services {
  padding: 140px 5%;
  background: radial-gradient(circle at 10% 20%, rgba(108, 62, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(5, 168, 118, 0.04) 0%, transparent 40%),
    #f8f9ff;
  position: relative;
  overflow: hidden;
}

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

.p-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 60px 45px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--violet));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.p-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 70px rgba(108, 62, 255, 0.15);
  background: rgba(255, 255, 255, 0.85);
}

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

.pc-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(5, 168, 118, 0.1), rgba(108, 62, 255, 0.1));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  border-radius: 24px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.p-card:hover .pc-icon-wrap {
  background: linear-gradient(135deg, var(--orange), var(--violet));
  color: var(--white);
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 15px 30px rgba(108, 62, 255, 0.35);
}

.p-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.p-card p {
  color: var(--mid);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.pc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: all 0.3s ease;
}

.p-card:hover .pc-footer {
  gap: 18px;
  color: var(--violet);
}

/* ══════════════════════════════════════════════
   MODAL STYLING (PREMIUM SAAS)
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 900px;
  border-radius: 48px;
  position: relative;
  transform: scale(0.85) translateY(50px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1f3f9;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--violet);
  color: var(--white);
  transform: rotate(180deg);
}

.modal-body {
  padding: 70px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.modal-header h2 {
  font-size: clamp(34px, 6vw, 56px);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.price-badge {
  background: rgba(5, 168, 118, 0.1);
  color: var(--orange);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 22px;
  white-space: nowrap;
  border: 1px solid rgba(5, 168, 118, 0.2);
  box-shadow: 0 8px 20px rgba(5, 168, 118, 0.05);
}

.modal-desc {
  font-size: 19px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 95%;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.detail-box h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
}

.detail-box ul li {
  font-size: 17px;
  color: var(--mid);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-box ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--orange);
  font-size: 15px;
  background: rgba(5, 168, 118, 0.1);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Premium Pricing Box */
.payment-section {
  background: linear-gradient(135deg, #f8faff, #ffffff);
  padding: 50px;
  border-radius: 36px;
  margin-bottom: 50px;
  border: 1px solid rgba(108, 62, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(108, 62, 255, 0.04);
}

.payment-section::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(108, 62, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.payment-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-bottom: 25px;
  font-weight: 700;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 30px;
}

.price-display .currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.price-display .amount {
  font-size: 64px;
  font-weight: 900;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.04em;
}

.payment-icons {
  display: flex;
  gap: 30px;
  font-size: 34px;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.payment-icons i:hover {
  color: var(--violet);
  transform: translateY(-4px);
  transition: all 0.4s ease;
}

.installment-opt {
  font-size: 15px;
  color: var(--violet);
  font-weight: 800;
  background: rgba(108, 62, 255, 0.08);
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-block;
}

/* Modal Action Buttons */
.modal-action {
  display: flex;
  gap: 25px;
}

.btn-primary-modal {
  flex: 2;
  background: linear-gradient(135deg, var(--orange), #10b981);
  color: var(--white);
  border: none;
  padding: 22px;
  border-radius: 22px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(5, 168, 118, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-modal {
  flex: 1.2;
  background: #f1f3f9;
  color: var(--ink);
  border: none;
  padding: 22px;
  border-radius: 22px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary-modal:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(5, 168, 118, 0.4);
  filter: brightness(1.05);
}

.btn-secondary-modal:hover {
  background: #e2e8f0;
  transform: translateY(-6px);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 850px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 50px 35px;
  }

  .modal-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .modal-action {
    flex-direction: column;
  }

  .price-display .amount {
    font-size: 48px;
  }

  .modal-header h2 {
    font-size: 40px;
  }
}

.why-simple,
.services-sub,
.portfolio-sub,
.process-sub,
.testi-sub,
.cta-sub {
  padding: 100px 5%;
}

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

/* Why Simple Grid */
.why-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.w-item {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.w-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.w-icon {
  width: 60px;
  height: 60px;
  background: rgba(5, 168, 118, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
  margin-bottom: 25px;
}

/* Services Sub Grid */
.svc-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.svc-sub-card {
  background: var(--dark);
  color: var(--white);
  padding: 50px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.svc-sub-card:hover {
  transform: scale(1.02);
}

.ss-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 20px;
}

.svc-sub-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.svc-sub-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Portfolio Sub Grid */
.port-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.ps-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ps-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.ps-card:hover img {
  transform: scale(1.1);
}

.ps-info {
  padding: 25px;
}

.ps-info h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.ps-info p {
  color: var(--mid);
  font-size: 14px;
}

/* ══════════════════════════════════════════════
   GLOBAL CONTACT WIDGET (EXPANDABLE)
══════════════════════════════════════════════ */
.contact-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none; /* Allow interaction with children only */
}

/* Main Trigger Button */
.contact-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  position: relative;
}

.contact-trigger:hover {
  transform: scale(1.1);
  background: var(--orange);
}

.contact-trigger .close-icon {
  display: none;
}

.contact-trigger.active .main-icon {
  display: none;
}

.contact-trigger.active .close-icon {
  display: block;
}

.contact-trigger.active {
  background: #ef4444; /* Red color for close state */
}

/* Vertical Menu */
.contact-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.contact-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular Contact Buttons */
.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon Colors */
.contact-btn.call { background: #22c55e; }
.contact-btn.whatsapp { background: #25D366; }
.contact-btn.email { background: #64748b; }
.contact-btn.close { background: #4ade80; }

/* Entry Animation for Icons */
.contact-menu.show .contact-btn {
  animation: widgetFadeUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes widgetFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered Delays for Smooth Flow */
.contact-menu.show .contact-btn:nth-child(1) { animation-delay: 0.3s; }
.contact-menu.show .contact-btn:nth-child(2) { animation-delay: 0.2s; }
.contact-menu.show .contact-btn:nth-child(3) { animation-delay: 0.1s; }
.contact-menu.show .contact-btn:nth-child(4) { animation-delay: 0s; }

@media (max-width: 768px) {
  .contact-widget-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .contact-trigger {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .contact-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

/* ── DEDICATED SERVICE HERO ────────────────── */
.dedicated-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  color: #fff;
}

.dedicated-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dedicated-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dedicated-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.dedicated-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}

.dedicated-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.dedicated-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Base Service Content Sections */
.dedicated-section {
  padding: 100px 5%;
  background: var(--bg);
}

.dedicated-section.alt {
  background: var(--off);
}

/* =============================================
   DIGITAL MARKETING PAGE (New Premium Design)
   ============================================= */

body.theme-digital-new {
  --primary: #4f46e5;
  /* Modern Indigo/Purple */
  --primary-dark: #4338ca;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-light: rgba(0, 0, 0, 0.05);
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--bg-white);
}

body.theme-digital-new h1,
body.theme-digital-new h2,
body.theme-digital-new h3,
body.theme-digital-new h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

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

.mb-50 {
  margin-bottom: 50px;
}

.bg-light {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 100px 0;
}

.sec-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.sec-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  line-height: 1.1;
}

/* Breadcrumb Banner */
.breadcrumb-banner {
  padding: 100px 0 40px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}

.banner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.breadcrumb-nav {
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.banner-title {
  font-size: 20px;
  color: var(--text-main);
  margin: 0;
}

/* Hero Section */
.marketing-hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text h2 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  padding: 16px 32px;
  background: #fff;
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

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

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-marketing {
  padding: 100px 0;
}

.col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.col-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li i {
  color: var(--accent-green);
  font-size: 18px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.05);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: 0.3s;
}

.service-card:hover .icon-wrap {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Strategy Process */
.marketing-strategy {
  padding: 120px 0;
  background: #fff;
}

.strategy-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.step-item {
  position: relative;
  padding-top: 40px;
}

.step-marker {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 80px;
  font-weight: 900;
  color: rgba(79, 70, 229, 0.05);
  line-height: 1;
  z-index: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* Results Stats */
.marketing-results {
  padding: 100px 0;
  background: var(--primary);
  color: #fff;
}

.stats-flex {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

.stat-card p {
  font-size: 16px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Portfolio Section */
.marketing-portfolio {
  padding: 120px 0;
}

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

.portfolio-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.card-thumb {
  height: 300px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

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

.card-body {
  padding: 35px;
}

.card-body h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card-body p {
  color: var(--text-muted);
}

/* CTA Section */
.marketing-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 100%);
  color: #fff;
}

.marketing-cta h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.marketing-cta p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.marketing-cta .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.marketing-testimonials {
  padding: 120px 0;
}

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

.testi-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.stars {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 14px;
}

.testi-card p {
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testi-user h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.testi-user span {
  font-size: 14px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .hero-grid,
  .col-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-flex {
    flex-wrap: wrap;
    gap: 40px;
  }

  .stat-card {
    width: 40%;
  }
}

@media (max-width: 768px) {

  .services-grid,
  .testimonials-grid,
  .portfolio-grid,
  .strategy-steps {
    grid-template-columns: 1fr;
  }

  .stat-card {
    width: 100%;
  }
}


/* ----------------------------------
   VIDEO PRODUCTION PAGE STYLES
   ---------------------------------- */

.theme-video {
  background-color: #ffffff;
  color: var(--ink);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.container-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

:root {
            /* Primary: Deep Blue/Purple */
            --primary-color: #4A00E0;
            --primary-light: #8E2DE2;
            /* Accent: Cyan/Gradient */
            --accent-color: #00F2FE;
            --accent-hover: #4FACFE;
            /* Backgrounds */
            --bg-white: #ffffff;
            --bg-light: #f4f7fe;
            --bg-glass: rgba(255, 255, 255, 0.7);
            /* Text Colors */
            --text-dark: #0f172a;
            --text-body: #475569;
            --text-light: #ffffff;
            /* UI Elements */
            --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 30px rgba(74, 0, 224, 0.08);
            --shadow-lg: 0 15px 40px rgba(74, 0, 224, 0.12);
            --shadow-hover: 0 20px 40px rgba(74, 0, 224, 0.18);
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

/* 1. BREADCRUMB BANNER */
 .breadcrumb-banner {
            width: 100%;
            height: 50px;
            background: var(--bg-light);
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            margin-top: 70px;
            /* Offset for navbar */
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        .breadcrumb-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .bb-left {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bb-left a {
            color: var(--text-body);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .bb-left a:hover {
            color: var(--primary-color);
        }

        .bb-left .separator {
            color: #cbd5e1;
            font-size: 12px;
        }

        .bb-left .current {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-hover));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .bb-right h1 {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

/* 2. CINEMATIC HERO */
.video-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 6, 23, 0.9) 20%, rgba(2, 6, 23, 0.4) 60%, rgba(2, 6, 23, 0.8) 100%);
  z-index: 2;
}

.video-hero .container {
  position: relative;
  z-index: 3;
}

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

.play-hint {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.play-icon-pulse {
  width: 60px;
  height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
  animation: p-pulse 2s infinite;
}

@keyframes p-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 106, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

.play-hint span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-hero h1 {
  font-family: \'Bricolage Grotesque\', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}

.video-hero h1 span {
  color: var(--orange);
}

.video-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.5);
  background: var(--orange-d);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* 3. ABOUT VIDEO */
.video-about {
  padding: 120px 0;
  background: #ffffff;
  color: #0f172a;
}

.about-text h2 {
  margin-bottom: 30px;
  color: #0f172a;
}

.about-text p {
  margin-bottom: 20px;
  color: #475569;
  line-height: 1.8;
}

.video-thumb-large {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.video-thumb-large img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.video-thumb-large:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 16, 101, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-overlay i {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  padding-left: 5px;
  transition: transform 0.3s ease;
}

.video-thumb-large:hover .play-overlay i {
  transform: scale(1.1);
}

/* 4. SERVICES GRID */
.video-services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid-vid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card-vid {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card-vid:hover {
  border-color: var(--orange);
  transform: translateY(-10px);
  background: rgba(46, 16, 101, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 25px;
}

.service-card-vid h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card-vid p {
  color: var(--mid);
  line-height: 1.6;
}

/* 5. PORTFOLIO */
.video-portfolio {
  padding: 120px 0;
  background: var(--off);
}

.portfolio-grid-vid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item-vid {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.vid-thumb {
  position: relative;
}

.vid-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item-vid:hover .vid-thumb img {
  transform: scale(1.1);
}

.vid-info {
  padding: 20px 0;
}

.vid-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.vid-info span {
  font-size: 14px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-item-vid .play-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item-vid:hover .play-overlay {
  opacity: 1;
}

.portfolio-item-vid .play-overlay i {
  width: 60px;
  height: 60px;
  font-size: 18px;
}

/* 6. PRODUCTION PROCESS */
.production-process {
  padding: 100px 0;
  background: var(--bg);
}

.process-steps-vid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-v-card {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: rgba(46, 16, 101, 0.1);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.step-v-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 106, 0, 0.1);
  line-height: 1;
}

.step-v-icon {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-v-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-v-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* 7. EQUIPMENT */
.equipment-section {
  padding: 100px 0;
  background: var(--off);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.eq-icon {
  font-size: 40px;
  color: var(--orange);
  margin-bottom: 20px;
}

.eq-item h4 {
  margin-bottom: 10px;
  color: #fff;
}

.eq-item p {
  font-size: 14px;
  color: var(--mid);
}

/* 8. CTA SECTION */
.video-cta {
  padding: 160px 0;
  background: linear-gradient(135deg, #2e1065, #ff6a00);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 25px;
  color: #fff;
}

.video-cta p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.video-cta .btn-primary {
  background: #fff;
  color: #0f172a;
}

.video-cta .btn-primary:hover {
  background: var(--orange);
  color: #fff;
}

/* 9. TESTIMONIALS */
.video-testimonials {
  padding: 120px 0;
  background: #ffffff;
  color: #0f172a;
}

.testimonials-grid-vid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testi-card-vid {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.testi-card-vid:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stars {
  color: var(--orange);
  margin-bottom: 20px;
}

.testi-card-vid p {
  font-style: italic;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.7;
}

.client-meta b {
  display: block;
  font-size: 18px;
  color: #0f172a;
}

.client-meta span {
  color: #64748b;
  font-size: 14px;
}

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

  .process-steps-vid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .process-steps-vid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid-vid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .video-hero h1 {
    font-size: 48px;
  }
}


