/*
=================================================================
  Digital Spyse — Professional Agency Stylesheet
  Philosophy: enhance the theme, don't fight it.
  • Content sections  → clean white
  • Accent sections   → warm off-white  (#faf9f7)
  • Feature sections  → deep charcoal   (#141414)
  • Brand accent      → Deep Orange     (#FF5722 / #ff6804)
=================================================================
*/

/* ---- Header z-index — do NOT set position here; let theme handle sticky/fixed ---- */
header,
#header-sticky {
  z-index: 99990 !important;
}
#header-sticky.sticky {
  z-index: 99991 !important;   /* one above base so dropdowns clear everything */
}

/* Fix submenu appearing above hero */
.main-menu,
.main-menu ul,
.main-menu ul li,
.main-menu ul li ul.submenu {
  z-index: 999999 !important;
}

/* ---- Override theme root vars ---- */
:root {
  --theme:             #FF5722;
  --theme2:            #E64A19;
  --theme3:            #FFB300;
  --bg:                #faf9f7;       /* warm off-white, replaces cold #f5f5f8 */
  --text:              #6b6b6b;
  --header:            #141414;
  --color-gradient-1:  linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  ---color-gradient-2: linear-gradient(135deg, #E64A19 0%, #FFB300 100%);

  /* Agency-specific */
  --ds-dark:           #141414;
  --ds-dark-2:         #1c1c1e;
  --ds-dark-3:         #252525;
  --ds-accent:         #FFB300;
  --ds-orange:         #FF5722;
  --ds-orange-2:       #E64A19;
  --ds-glow:           0 8px 40px rgba(255,87,34,0.28);
  --ds-glow-sm:        0 4px 20px rgba(255,87,34,0.20);
  --ds-radius:         8px;
  --ds-radius-sm:      6px;
  --ds-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ds-spring:         cubic-bezier(0.34, 1.56, 0.64, 1);
  --ds-transition:     all 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   BASE & TYPOGRAPHY
   ============================ */
html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2d2d2d;
}

::selection { background: var(--ds-orange); color: #fff; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #faf9f7; }
::-webkit-scrollbar-thumb {
  background: var(--color-gradient-1);
  border-radius: 2px;
}

/* Section labels — gradient text */
.section-title span {
  background: var(--color-gradient-1) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 8px !important;
}

.section-title h2 {
  font-weight: 800 !important;
  color: var(--ds-dark) !important;
  line-height: 1.18 !important;
}

/* ============================
   HEADER TOP (dark bar)
   ============================ */
.header-top {
  background: var(--ds-dark) !important;
  border-bottom: 1px solid rgba(255, 87, 34, 0.15) !important;
  padding: 9px 0 !important;
}
.header-top-wrapper ul li,
.header-top-wrapper ul li a,
.header-top-wrapper ul li a span {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 13px !important;
}
.header-top-wrapper ul li i { color: var(--ds-orange) !important; }
.header-top-wrapper ul li a:hover { color: var(--ds-accent) !important; }
.header-top-wrapper .social-icon span {
  color: rgba(255, 255, 255, 0.40) !important;
  font-size: 12px !important;
}
.header-top-wrapper .social-icon i {
  color: rgba(255, 255, 255, 0.60) !important;
  transition: var(--ds-transition) !important;
}
.header-top-wrapper .social-icon i:hover {
  color: var(--ds-accent) !important;
}

/* ============================
   STICKY HEADER (white bar)
   ============================ */
#header-sticky {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06) !important;
}
#header-sticky.sticky {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10) !important;
  border-bottom-color: rgba(255, 87, 34, 0.10) !important;
}

.main-menu ul > li > a {
  font-weight: 600 !important;
  font-size: 13.5px !important;
  color: var(--ds-dark) !important;
  transition: var(--ds-transition) !important;
}
.main-menu ul > li > a:hover,
.main-menu ul > li.active > a { color: var(--ds-orange) !important; }

/* ---- Header Layout Alignment Fixes ---- */
.header-main .header-left {
  gap: 35px !important;
}
.header-main .main-menu ul li {
  margin-inline-end: 20px !important;
}
.header-main .main-menu ul li a {
  font-size: 13.5px !important;
  white-space: nowrap !important;
  padding: 22px 0 !important;
}
.header-main .header-button .theme-btn {
  padding: 10px 22px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
}

.main-menu ul li ul.submenu {
  border-radius: var(--ds-radius) !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 4px 16px rgba(0,0,0,0.10) !important;
  padding: 8px 0 !important;
  min-width: 220px !important;
  z-index: 999999 !important;
  position: absolute !important;
  background: #ffffff !important;
  top: 100% !important;
}
.main-menu ul li ul.submenu li a {
  font-size: 13.5px !important;
  padding: 10px 20px !important;
  color: #333333 !important;
  font-weight: 500 !important;
  background: transparent !important;
  display: block !important;
}
.main-menu ul li ul.submenu li a:hover {
  background: rgba(255, 87, 34, 0.06) !important;
  color: var(--ds-orange) !important;
  padding-left: 26px !important;
}

/* Header search */
.header-right .search-wrp input {
  border-radius: 4px !important;
  border: 1.5px solid #eee !important;
  font-size: 13.5px !important;
}
.header-right .search-wrp input:focus {
  border-color: var(--ds-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.08) !important;
}

/* ============================
   BUTTONS — Premium override
   ============================ */
.theme-btn {
  background: var(--color-gradient-1) !important;
  background-image: var(--color-gradient-1) !important;
  border-radius: var(--ds-radius) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.6px !important;
  padding: 15px 36px !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
  color: #fff !important;
  transition: var(--ds-transition) !important;
  box-shadow: var(--ds-glow-sm) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

/* Shimmer on hover */
.theme-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent) !important;
  transform: skewX(-18deg) !important;
  transition: none !important;
  z-index: 2 !important;
}
.theme-btn:hover::before {
  left: 160% !important;
  transition: left 0.55s ease !important;
}
.theme-btn::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, var(--ds-orange-2) 0%, var(--ds-accent) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  border-radius: inherit !important;
}
.theme-btn:hover::after { opacity: 1 !important; }
.theme-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--ds-glow), 0 0 0 4px rgba(255, 87, 34, 0.08) !important;
  color: #fff !important;
}
.theme-btn:active { transform: translateY(-1px) !important; }
.theme-btn > * { position: relative !important; z-index: 1 !important; }

/* White variant */
.theme-btn.hover-white {
  background: #fff !important;
  background-image: none !important;
  color: var(--ds-dark) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}
.theme-btn.hover-white::before,
.theme-btn.hover-white::after { display: none !important; }
.theme-btn.hover-white:hover {
  background: var(--color-gradient-1) !important;
  color: #fff !important;
  box-shadow: var(--ds-glow-sm) !important;
}

/* ============================
   HERO
   ============================ */
.hero-section-4 .hero-content h1 {
  font-weight: 800 !important;
  line-height: 1.10 !important;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}
.hero-section-4 .d-line,
.hero-section-4 .contact-icon a { color: rgba(255, 255, 255, 0.82) !important; }
.hero-section-4 .contact-icon i { color: var(--ds-orange) !important; }

/* Play button */
.ripple.play-video {
  background: var(--color-gradient-1) !important;
  box-shadow: var(--ds-glow) !important;
}

/* Slide nav arrows */
.array-button button {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  color: #fff !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 6px !important;
  transition: var(--ds-transition) !important;
}
.array-button button:hover {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  box-shadow: var(--ds-glow-sm) !important;
}

/* ============================
   MARQUEE / TICKER
   ============================ */
.marque-section {
  background: var(--ds-dark) !important;
  border-top: 2px solid var(--ds-orange) !important;
  border-bottom: none !important;
  padding: 0 !important;
}
.marque-section .text-slider,
.marque-section .marquee-item span {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}
/* Divider dot between marquee items */
.marque-section .marquee-inner i,
.marque-section .separeted { color: var(--ds-orange) !important; }

/* ============================
   CHOOSE US / ABOUT SECTION
   ============================ */
.choose-us-section { background: #fff !important; }

.choose-image {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: var(--ds-glow) !important;
}
.choose-image-2 {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.icon-box .circle-text .text-circle { animation: dsRotate 18s linear infinite; }
@keyframes dsRotate { to { transform: rotate(360deg); } }

/* ============================
   COUNTER SECTION — Dark Premium
   ============================ */
.counter-section {
  background: var(--ds-dark) !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Remove default half-gray ::before */
.counter-section::before {
  background-color: transparent !important;
  background-image: radial-gradient(circle, rgba(255,87,34,0.06) 1px, transparent 1px) !important;
  background-size: 30px 30px !important;
  top: 0 !important;
}
.counter-section::after {
  content: '' !important;
  position: absolute !important;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,87,34,0.12) 0%, transparent 70%) !important;
  pointer-events: none;
}
.counter-wrapper-area { position: relative !important; z-index: 2 !important; }

.counter-wrapper-area .counter-items {
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 40px 28px !important;
  backdrop-filter: blur(10px) !important;
  transition: var(--ds-transition) !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}
.counter-wrapper-area .counter-items::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 2px !important;
  background: var(--color-gradient-1) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.counter-wrapper-area .counter-items:hover::before { opacity: 1 !important; }
.counter-wrapper-area .counter-items:hover {
  background: rgba(255,87,34,0.09) !important;
  box-shadow: inset 0 0 0 1px rgba(255,87,34,0.30) !important;
  transform: translateY(-6px) !important;
}
.counter-wrapper-area .counter-items h2 {
  color: #fff !important;
  font-size: 3rem !important;
  font-weight: 900 !important;
  margin-bottom: 6px !important;
  line-height: 1 !important;
}
.counter-wrapper-area .counter-items p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  letter-spacing: 0.3px !important;
}
.counter-wrapper-area .counter-items.active {
  background: var(--color-gradient-1) !important;
  box-shadow: var(--ds-glow) !important;
}
.counter-wrapper-area .counter-items.active::before { opacity: 0 !important; }
.counter-wrapper-area .counter-items.active p { color: rgba(255,255,255,0.85) !important; }

/* ============================
   SERVICES / PROJECT CARDS
   ============================ */
.project-section-4 { background: #fff !important; }

.project-items-3 .project-image {
  border-radius: 12px !important;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.project-items-3:hover .project-image {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18) !important;
}
.project-items-3 .project-content {
  border-radius: 0 0 12px 12px !important;
}
.project-items-3 .project-content a.icon {
  background: var(--color-gradient-1) !important;
  border: none !important;
  box-shadow: var(--ds-glow-sm) !important;
  transition: transform 0.3s var(--ds-spring), box-shadow 0.3s ease !important;
}
.project-items-3:hover .project-content a.icon {
  transform: scale(1.1) rotate(-5deg) !important;
}
.project-items-3 .project-content h4 a { color: #fff !important; }
.project-items-3 .project-content p { color: rgba(255,255,255,0.7) !important; }

/* ============================
   FEATURE / KNOW MORE SECTION
   ============================ */
.feature-section { background: var(--bg) !important; }
.feature-image img {
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
  width: 100%;
}
.feature-content .theme-btn { margin-top: 8px !important; }

/* ============================
   SITE LOGO — sized explicitly since the source file (2454x970) is
   far larger than any on-page display size. Without this the logo
   renders at native resolution and breaks the header layout.
   ============================ */
.header-logo img,
.header-logo-2 img,
.offcanvas__logo img,
.widget-head img {
  height: 42px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
}
.sticky .header-logo img,
.sticky .header-logo-2 img {
  height: 36px !important;
}
@media (max-width: 575px) {
  .header-logo img,
  .header-logo-2 img,
  .offcanvas__logo img {
    height: 34px !important;
    max-width: 130px !important;
  }
}

/* ============================
   BRAND / CLIENT LOGOS
   ============================ */
.brand-section-3 {
  background: #fff !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.brand-image img {
  max-height: 46px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  opacity: 0.45 !important;
  transition: var(--ds-transition) !important;
}
.brand-image img:hover {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

/* ============================
   TRUST / CLEAR POST SECTION
   ============================ */
.clear-post { background: #fff !important; }
.post-content h3 { font-weight: 800 !important; color: var(--ds-dark) !important; }
.progress-content h2 { font-weight: 800 !important; color: var(--ds-dark) !important; }
.post-image {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
}

/* ============================
   TEAM CARDS — Premium
   ============================ */
.team-section { background: var(--bg) !important; }

.team-card-items {
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: transform 0.40s var(--ds-spring), box-shadow 0.40s ease !important;
  position: relative;
}
.team-card-items:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,0.18) !important;
}

/* Orange accent line on hover */
.team-card-items::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0; left: 0; right: 0;
  height: 3px !important;
  background: var(--color-gradient-1) !important;
  z-index: 10 !important;
  transform: scaleX(0) !important;
  transition: transform 0.35s ease !important;
  transform-origin: left !important;
}
.team-card-items:hover::before { transform: scaleX(1) !important; }
.team-card-items.active::before { transform: scaleX(1) !important; }

.team-card-items .team-content-2 {
  background: linear-gradient(0deg, rgba(20,20,20,0.97) 0%, rgba(20,20,20,0.55) 100%) !important;
  padding: 24px 20px !important;
  border-radius: 0 0 14px 14px !important;
}
.team-card-items .team-content-2 h4,
.team-card-items .team-content-2 h4 a {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  margin-bottom: 4px !important;
}
.team-card-items .team-content-2 p {
  color: var(--ds-accent) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}
.team-card-items.active {
  box-shadow: 0 24px 60px rgba(255,87,34,0.22) !important;
}
.social-profile ul li a {
  background: rgba(255,255,255,0.09) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.80) !important;
  border-radius: 6px !important;
  transition: var(--ds-transition) !important;
}
.social-profile ul li a:hover {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* ============================
   CTA WITH BG IMAGE (overlay)
   ============================ */
.cta-section-2 { position: relative !important; overflow: hidden !important; }
.cta-section-2::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  background: linear-gradient(135deg, rgba(20,20,20,0.88) 0%, rgba(255,87,34,0.45) 100%) !important;
  z-index: 1 !important;
}
.cta-section-2 .container { position: relative !important; z-index: 2 !important; }
.cta-section-2 h2 { color: #fff !important; font-weight: 800 !important; }

.cta-section-3 { position: relative !important; overflow: hidden !important; }
.cta-section-3::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  background: linear-gradient(135deg, rgba(20,20,20,0.82) 0%, rgba(255,87,34,0.42) 100%) !important;
  z-index: 1 !important;
}
.cta-section-3 .container { position: relative !important; z-index: 2 !important; }
.cta-section-3 h2 { font-weight: 800 !important; }

/* ============================
   SERVICE PRODUCTIVE SECTION
   ============================ */
.service-productive { background: #fff !important; }
.service-productive-wrapper.style-2 { background: var(--bg) !important; }

.productive-image-2 img {
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
  width: 100%;
}

.icon-items-area .icon-item {
  background: rgba(255,87,34,0.04) !important;
  border: 1px solid rgba(255,87,34,0.10) !important;
  border-radius: 10px !important;
  padding: 16px 20px !important;
  transition: var(--ds-transition) !important;
}
.icon-items-area .icon-item:hover,
.icon-items-area .icon-item.active {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  box-shadow: var(--ds-glow-sm) !important;
}
.icon-items-area .icon-item .icon i { color: var(--ds-orange) !important; }
.icon-items-area .icon-item:hover .icon i,
.icon-items-area .icon-item.active .icon i { color: #fff !important; }
.icon-items-area .icon-item:hover .content h5,
.icon-items-area .icon-item.active .content h5 { color: #fff !important; }

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb-wrapper { position: relative !important; overflow: hidden !important; }
.breadcrumb-wrapper::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  background: linear-gradient(135deg, rgba(20,20,20,0.78) 0%, rgba(255,87,34,0.50) 100%) !important;
  z-index: 1 !important;
}
.breadcrumb-wrapper > * { position: relative !important; z-index: 2 !important; }
.breadcrumb-wrapper .page-heading h1 {
  font-weight: 900 !important;
  font-size: 46px !important;
  color: #fff !important;
}
.breadcrumb-items li { color: rgba(255,255,255,0.70) !important; }
.breadcrumb-items li a { color: rgba(255,255,255,0.80) !important; }
.breadcrumb-items li a:hover { color: var(--ds-accent) !important; }
.breadcrumb-items li i { color: var(--ds-orange) !important; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-section,
.testimonial-section-2,
.testimonial-section-3 { background: var(--bg) !important; }

.testimonial-card-items {
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  transition: var(--ds-transition) !important;
  overflow: hidden;
}
.testimonial-card-items:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 56px rgba(0,0,0,0.10) !important;
  border-color: rgba(255,87,34,0.20) !important;
}
.testimonial-card-items.active {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  box-shadow: var(--ds-glow) !important;
}
.testimonial-card-items.active * { color: rgba(255,255,255,0.90) !important; }
.testimonial-card-items .testimonial-image { border-radius: 10px !important; overflow: hidden; }

/* Rating stars */
.ratting-star li i { color: var(--ds-accent) !important; }

/* ============================
   CONTACT SECTION & FORM
   ============================ */
.contact-form-items {
  border-radius: 14px !important;
  box-shadow: 0 12px 56px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  padding: 44px !important;
}
.form-clt input,
.form-clt textarea,
.form-clt select {
  border-radius: 8px !important;
  border: 1.5px solid #e8e8e8 !important;
  background: #fafafa !important;
  font-size: 14.5px !important;
  color: #333 !important;
  padding: 13px 18px !important;
  transition: var(--ds-transition) !important;
}
.form-clt input:focus,
.form-clt textarea:focus,
.form-clt select:focus {
  border-color: var(--ds-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(255,87,34,0.09) !important;
  outline: none !important;
}

/* Contact info */
.info-items h5 {
  color: var(--ds-orange) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}
.info-items i { color: var(--ds-orange) !important; }

/* Map */
.googpemap iframe {
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}

/* ============================
   CHOOSE US ICONS & FEATURES
   ============================ */
.choose-us-section .icon i,
.feature-section .icon i { color: var(--ds-orange) !important; }

/* ============================
   GROWTH / MISC IMAGES
   ============================ */
.growth-image { border-radius: 14px !important; overflow: hidden; box-shadow: var(--ds-glow) !important; }

/* ============================
   FOOTER — Dark & Premium
   ============================ */
.footer-section {
  background: var(--ds-dark) !important;
  background-image: none !important;
  border-top: 2px solid var(--ds-orange) !important;
  position: relative;
  overflow: hidden;
}
/* Subtle dot grid on footer */
.footer-section::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  background-image: radial-gradient(circle, rgba(255,87,34,0.05) 1px, transparent 1px) !important;
  background-size: 30px 30px !important;
  pointer-events: none;
}
.footer-section > * { position: relative !important; z-index: 1 !important; }

.footer-bottom {
  background: rgba(0,0,0,0.35) !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}
.footer-bottom-wrapper p,
.footer-bottom-wrapper a { color: rgba(255,255,255,0.42) !important; font-size: 13px !important; }
.footer-bottom-wrapper a:hover { color: var(--ds-accent) !important; }

.single-footer-widget .widget-head h3 {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  padding-bottom: 12px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: relative;
}
.single-footer-widget .widget-head h3::after {
  content: '' !important;
  position: absolute !important;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--color-gradient-1) !important;
  border-radius: 1px;
}

.single-footer-widget .list-area li a {
  color: rgba(255,255,255,0.70) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 !important;
  transition: var(--ds-transition) !important;
}
.single-footer-widget .list-area li a::before {
  content: '›' !important;
  color: var(--ds-orange) !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--ds-transition);
}
.single-footer-widget .list-area li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.single-footer-widget .list-area li a:hover {
  color: #ffffff !important;
  padding-left: 4px !important;
}

.footer-content p { color: rgba(255,255,255,0.48) !important; font-size: 13.5px !important; line-height: 1.85 !important; }
.footer-content h6 a { color: var(--ds-accent) !important; font-size: 15px !important; font-weight: 700 !important; }
.footer-content h6 a:hover { color: #fff !important; }

/* Footer social icons */
.footer-section .social-icon a {
  width: 36px !important; height: 36px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  color: rgba(255,255,255,0.52) !important;
  font-size: 13px !important;
  transition: transform 0.3s var(--ds-spring), background 0.3s ease, box-shadow 0.3s ease !important;
  margin-right: 8px !important;
}
.footer-section .social-icon a:hover {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateY(-4px) !important;
  box-shadow: var(--ds-glow-sm) !important;
}

/* ============================
   OFFCANVAS MENU
   ============================ */
.offcanvas__info {
  background: var(--ds-dark) !important;
  border-left: 2px solid var(--ds-orange) !important;
}
.offcanvas__contact h4 { color: #fff !important; font-weight: 800 !important; }
.offcanvas__contact-text a,
.offcanvas__contact-text span { color: rgba(255,255,255,0.65) !important; }
.offcanvas__contact-text a:hover { color: var(--ds-accent) !important; }
.offcanvas__contact-icon i { color: var(--ds-orange) !important; }
.offcanvas__close button {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: #fff !important;
  width: 36px !important; height: 36px !important;
  transition: transform 0.3s var(--ds-spring), background 0.3s ease !important;
}
.offcanvas__close button:hover {
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
  transform: rotate(90deg) !important;
}
.offcanvas__logo img { max-height: 36px !important; }

/* Offcanvas mobile nav */
.offcanvas__info .mean-nav ul li a {
  color: rgba(255,255,255,0.75) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  font-weight: 600 !important;
}
.offcanvas__info .mean-nav ul li a:hover { color: var(--ds-orange) !important; }

/* Lowercase email and remove capitalize text-transform from offcanvas contacts */
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  text-transform: none !important;
}
.offcanvas__contact-text a[href^="mailto:"],
.offcanvas__contact-text a[href^="mailto:"] span {
  text-transform: lowercase !important;
}

/* Offcanvas social icons visibility and styling */
.offcanvas__contact .social-icon a {
  color: rgba(255, 255, 255, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.offcanvas__contact .social-icon a:hover {
  color: #fff !important;
  background: var(--color-gradient-1) !important;
  border-color: transparent !important;
}

/* ============================
   PRELOADER
   ============================ */
.preloader { background: var(--ds-dark) !important; }
.preloader .loader-section .bg { background: var(--ds-dark) !important; }
.preloader .animation-preloader .spinner {
  border-color: rgba(255,87,34,0.15) !important;
  border-top-color: var(--ds-orange) !important;
  border-right-color: var(--ds-accent) !important;
}
.preloader p { color: rgba(255,255,255,0.5) !important; }

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-up {
  background: linear-gradient(135deg, #FF5722, #FFB300) !important;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.55) !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  width: 46px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s var(--ds-spring), box-shadow 0.3s ease !important;
}
.scroll-up:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(255, 87, 34, 0.70) !important;
}
.scroll-up svg path { stroke: #ffffff !important; stroke-width: 2.5px !important; }

/* ============================
   MISC POLISH
   ============================ */
.section-bg { background-color: var(--bg) !important; }
a { transition: color 0.25s ease !important; }
img { transition: transform 0.35s ease, opacity 0.35s ease !important; }

/* ============================
   FLOATING QUOTE BUTTON
   ============================ */
.floating-quote-btn {
  position: fixed !important;
  right: 24px !important;
  bottom: 90px !important;
  z-index: 9990 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  background: var(--color-gradient-1) !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  transition: transform 0.3s var(--ds-spring), box-shadow 0.3s ease !important;
  box-shadow: var(--ds-glow) !important;
  animation: dsFloatPulse 3.5s ease-in-out infinite;
}
.floating-quote-btn:hover {
  transform: scale(1.12) translateY(-3px) !important;
  box-shadow: 0 12px 48px rgba(255,87,34,0.55), 0 0 0 8px rgba(255,87,34,0.10) !important;
  border-radius: 50% !important;
}
.floating-quote-btn .fq-tooltip {
  position: absolute !important;
  right: 62px !important;
  background: var(--ds-dark) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s, transform 0.2s !important;
  border: 1px solid rgba(255,87,34,0.20) !important;
  transform: translateX(6px) !important;
  letter-spacing: 0.3px !important;
}
.floating-quote-btn .fq-tooltip::after {
  content: '' !important;
  position: absolute !important;
  top: 50%; right: -7px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ds-dark);
}
.floating-quote-btn:hover .fq-tooltip {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

@keyframes dsFloatPulse {
  0%, 100% { box-shadow: var(--ds-glow); }
  50%       { box-shadow: 0 8px 48px rgba(255,87,34,0.55), 0 0 0 10px rgba(255,87,34,0.08); }
}

/* ============================
   ENQUIRY MODAL
   ============================ */
.ds-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ds-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.ds-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,87,34,0.10);
  scrollbar-width: thin;
  scrollbar-color: var(--ds-orange) #faf9f7;
}
.ds-modal-overlay.open .ds-modal {
  transform: translateY(0) scale(1);
}

/* Modal header */
.ds-modal-head {
  background: linear-gradient(135deg, #141414 0%, #252525 40%, #3d1805 70%, var(--ds-orange) 130%);
  padding: 28px 32px 24px;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}
.ds-modal-head::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,179,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.ds-modal-head::after {
  content: '';
  position: absolute;
  bottom: -50%; left: 0%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,87,34,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.ds-modal-head-inner { position: relative; z-index: 2; }
.ds-modal-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ds-accent);
  margin-bottom: 14px;
}
.ds-modal-head h3 {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  margin: 0 0 4px !important;
}
.ds-modal-head p {
  color: rgba(255,255,255,0.58) !important;
  font-size: 13px !important;
  margin: 0 !important;
}

/* Progress bar */
.ds-modal-progress {
  height: 3px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  margin-top: 18px;
  overflow: hidden;
  position: relative; z-index: 2;
}
.ds-modal-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--ds-accent), var(--ds-orange));
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

/* Close button */
.ds-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  z-index: 10;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--ds-transition);
  line-height: 1;
}
.ds-modal-close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

/* Modal body */
.ds-modal-body { padding: 26px 32px 32px; }

/* Field grid */
.ds-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ds-field-full { grid-column: 1 / -1; }
.ds-field { display: flex; flex-direction: column; gap: 5px; }
.ds-field label {
  font-size: 11.5px;
  font-weight: 800;
  color: #666;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ds-field label .req { color: var(--ds-orange); margin-left: 2px; }
.ds-field input,
.ds-field select,
.ds-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  font-family: inherit;
  transition: var(--ds-transition);
  outline: none;
}
.ds-field input:focus,
.ds-field select:focus,
.ds-field textarea:focus {
  border-color: var(--ds-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,87,34,0.09);
}
.ds-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FF5722' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: #fafafa;
  padding-right: 38px;
  cursor: pointer;
}
.ds-field textarea { resize: vertical; min-height: 100px; }

/* Submit */
.ds-modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-gradient-1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ds-transition);
  margin-top: 18px;
  font-family: inherit;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.ds-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--ds-glow);
}
.ds-modal-submit.submitting { opacity: 0.75; pointer-events: none; }

/* Success state */
.ds-modal-success { padding: 50px 32px; text-align: center; display: none; }
.ds-modal-success.show { display: block; }
.ds-success-icon {
  width: 84px; height: 84px;
  background: var(--color-gradient-1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px; color: #fff;
  box-shadow: var(--ds-glow);
  animation: dsSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes dsSuccessPop {
  from { transform: scale(0.2); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.ds-modal-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.ds-modal-success p { color: #777; margin-bottom: 24px; line-height: 1.7; }
.ds-modal-success .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Disclaimer */
.ds-modal-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ds-modal-disclaimer i { color: var(--ds-orange); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 600px) {
  .ds-modal { border-radius: 14px; }
  .ds-modal-head { padding: 22px 20px 20px; border-radius: 14px 14px 0 0; }
  .ds-modal-body, .ds-modal-success { padding: 20px 18px; }
  .ds-modal-head h3 { font-size: 19px !important; }
  .ds-field-grid { grid-template-columns: 1fr; }
  .ds-field-full { grid-column: 1; }
  .floating-quote-btn { right: 14px !important; bottom: 80px !important; width: 46px !important; height: 46px !important; font-size: 18px !important; }
}
@media (max-width: 991px) {
  .counter-wrapper-area .counter-items h2 { font-size: 2.4rem !important; }
  .breadcrumb-wrapper .page-heading h1 { font-size: 34px !important; }
}
@media (max-width: 768px) {
  .counter-wrapper-area .counter-items h2 { font-size: 2rem !important; }
  .contact-form-items { padding: 28px 20px !important; }
}

/* ============================
   UNIFORM PORTRAIT TEAM CARDS
   ============================ */
/* All team card image wrappers get a fixed portrait aspect ratio */
.team-card-items .team-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 3 / 4 !important;
  min-height: unset !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}

/* Ensure card is same width across grid */
.team-card-items {
  width: 100% !important;
}

/* team-content-2 stays at bottom of portrait card */
.team-card-items .team-content-2 {
  position: relative !important;
  z-index: 2 !important;
  flex-shrink: 0 !important;
}

/* Uniform grid row alignment for team sections */
.team-section .row {
  align-items: stretch !important;
}
.team-section .col-xl-4,
.team-section .col-lg-5,
.team-section .col-md-6 {
  display: flex !important;
  flex-direction: column !important;
}

/* ============================
   INNER PAGE HERO OVERRIDES
   ============================ */
/* Ensure existing breadcrumb-wrapper still works if ds-page-hero not used */
.breadcrumb-wrapper {
  min-height: 380px !important;
  display: flex !important;
  align-items: center !important;
}

/* Inner page hero responsive */
@media (max-width: 768px) {
  .ds-page-hero {
    min-height: 320px !important;
    padding: 100px 0 60px !important;
  }
  .ds-page-hero h1.ds-hero-title {
    font-size: clamp(26px, 7vw, 40px) !important;
  }
}
@media (max-width: 480px) {
  .ds-page-hero {
    min-height: 280px !important;
    padding: 90px 0 50px !important;
  }
}

/* ============================
   SERVICE PAGE META FIX
   ============================ */
/* Ensure service detail images display at fixed height */
.service-details-content .details-image {
  height: 380px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 768px) {
  .service-details-content .details-image {
    height: 240px !important;
  }
}

/* ============================
   LEADERSHIP BIO MODAL STYLES
   ============================ */
.bio-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 10, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayFadeIn 0.3s ease;
}
.bio-modal-overlay.active {
  display: flex;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.bio-modal {
  background: linear-gradient(145deg, #0f1628 0%, #141e38 60%, #0a1020 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  display: flex;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,178,0,0.08);
  animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  max-height: 90vh;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.bio-modal-photo {
  width: 280px;
  min-width: 280px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.bio-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.bio-modal-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, #0f1628 100%),
              linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
}
.bio-modal-photo .photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFB300, #FF5722);
  z-index: 2;
}
.bio-modal-content {
  flex: 1;
  padding: 40px 36px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bio-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}
.bio-modal-close:hover {
  background: rgba(255,87,34,0.2);
  border-color: #FF5722;
  color: #FF5722;
}
.bio-modal-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(255,178,0,0.15), rgba(255,87,34,0.1));
  border: 1px solid rgba(255,178,0,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFB300;
}
.bio-modal-name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.bio-modal-name span {
  color: #FFB300;
}
.bio-modal-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #FFB300, #FF5722);
  border-radius: 2px;
}
.bio-modal-bio {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
}
.bio-modal-email-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 4px;
}
.bio-modal-email-row .email-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFB300, #FF5722);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.bio-modal-email-row .email-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  line-height: 1;
}
.bio-modal-email-row a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.bio-modal-email-row a:hover {
  color: #FFB300;
}
.bio-modal-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.bio-modal-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s;
}
.bio-modal-socials a:hover {
  background: linear-gradient(135deg, #FFB300, #FF5722);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* Make name clickable on card */
.team-card-items .team-content-2 h4 a {
  cursor: pointer;
  transition: color 0.2s;
}
.team-card-items .team-content-2 h4 a:hover {
  color: #FFB300;
}

/* Responsive modal */
@media (max-width: 640px) {
  .bio-modal {
    flex-direction: column;
    max-height: 92vh;
  }
  .bio-modal-photo {
    width: 100%;
    min-width: unset;
    height: 240px;
  }
  .bio-modal-photo img {
    object-position: center 15%;
  }
  .bio-modal-content {
    padding: 28px 24px 28px;
  }
}

/* ============================
   PREMIUM SERVICE CARDS
   ============================ */
.ds-service-grid .row {
  align-items: stretch !important;
}

.ds-service-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.ds-service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 48px rgba(255, 87, 34, 0.12), 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(255, 87, 34, 0.15) !important;
}

.ds-service-card-image {
  position: relative !important;
  height: 200px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.ds-service-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.ds-service-card:hover .ds-service-card-image img {
  transform: scale(1.08) !important;
}

/* Gradient overlay on image */
.ds-service-card-image::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 40%, rgba(20, 20, 20, 0.4) 100%) !important;
  pointer-events: none !important;
}

/* Icon badge floating on the image-content boundary */
.ds-service-card-icon-badge {
  position: absolute !important;
  bottom: 16px !important;
  left: 20px !important;
  width: 48px !important;
  height: 48px !important;
  background: var(--color-gradient-1) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 20px !important;
  box-shadow: var(--ds-glow-sm) !important;
  z-index: 2 !important;
  transition: transform 0.4s var(--ds-spring), background 0.4s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.ds-service-card:hover .ds-service-card-icon-badge {
  transform: translateY(-4px) scale(1.05) rotate(5deg) !important;
  background: linear-gradient(135deg, var(--ds-orange-2) 0%, var(--ds-accent) 100%) !important;
  box-shadow: var(--ds-glow) !important;
}

.ds-service-card-content {
  padding: 24px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.ds-service-card-content h5 {
  font-size: 19px !important;
  font-weight: 800 !important;
  color: var(--ds-dark) !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}

.ds-service-card-content h5 a {
  color: var(--ds-dark) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.ds-service-card-content h5 a:hover,
.ds-service-card:hover .ds-service-card-content h5 a {
  color: var(--ds-orange) !important;
}

.ds-service-card-content p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}

.ds-service-card-link {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--ds-dark) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
  margin-top: auto !important;
}

.ds-service-card-link i {
  font-size: 13px !important;
  transition: transform 0.3s var(--ds-spring) !important;
  color: var(--ds-orange) !important;
}

.ds-service-card:hover .ds-service-card-link {
  color: var(--ds-orange) !important;
}

.ds-service-card:hover .ds-service-card-link i {
  transform: translateX(6px) !important;
}

/* ============================
   MEGA MENU — Desktop Only
   ============================ */
@media (min-width: 992px) {
  /* Positioning context: megamenu sizes to header width */
  #header-sticky { position: relative !important; }
  .mega-menu-wrapper { overflow: visible !important; }

  /* The Services li must NOT be the anchor so the panel spans the header */
  .main-menu ul li.ds-mega-parent { position: static !important; }

  /* Suppress the mobile ul.submenu on desktop */
  .main-menu ul li.ds-mega-parent > ul.submenu,
  .main-menu ul li.ds-mega-parent:hover > ul.submenu {
    display: none !important;
  }

  /* Mega panel — hidden by default */
  .ds-mega-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fff !important;
    border-top: 3px solid var(--ds-orange) !important;
    box-shadow: 0 24px 64px rgba(0,0,0,0.14) !important;
    z-index: 99998 !important;
    border-radius: 0 0 14px 14px !important;
    padding: 30px 0 22px !important;
  }

  /* Show on hover */
  .main-menu ul li.ds-mega-parent:hover > .ds-mega-menu { display: block !important; }

  /* 5-column inner grid */
  .ds-mega-inner {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    gap: 0 !important;
  }

  /* Each category column */
  .ds-mega-col {
    padding: 0 22px !important;
    border-right: 1px solid rgba(0,0,0,0.07) !important;
  }
  .ds-mega-col:first-child { padding-left: 0 !important; }
  .ds-mega-col:last-child {
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* Category heading */
  .ds-mega-col-head {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
    border-bottom: 2px solid rgba(255,87,34,0.14) !important;
  }
  .ds-mega-col-head i {
    color: var(--ds-orange) !important;
    font-size: 14px !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255,87,34,0.09) !important;
    border-radius: 7px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  .ds-mega-col-head span {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--ds-dark) !important;
    line-height: 1.25 !important;
  }

  /* Service links inside each column */
  .ds-mega-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .ds-mega-col ul li { margin: 0 !important; }
  .ds-mega-col ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    padding: 8px 0 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding-left 0.2s ease !important;
    line-height: 1.35 !important;
    border-bottom: none !important;
  }
  .ds-mega-col ul li a i {
    color: var(--ds-orange) !important;
    font-size: 12px !important;
    width: 18px !important;
    flex-shrink: 0 !important;
    opacity: 0.65 !important;
    transition: opacity 0.2s ease !important;
  }
  .ds-mega-col ul li a:hover {
    color: var(--ds-orange) !important;
    padding-left: 5px !important;
  }
  .ds-mega-col ul li a:hover i { opacity: 1 !important; }

  /* Bottom "Browse All" link */
  .ds-mega-footer {
    max-width: 1320px !important;
    margin: 14px auto 0 !important;
    padding: 12px 24px 0 !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
    display: flex !important;
    justify-content: flex-end !important;
  }
  .ds-mega-footer .ds-mega-col:first-child { padding-left: 0 !important; }
  .ds-mega-all-link {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: var(--ds-orange) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    transition: gap 0.2s ease, color 0.2s ease !important;
  }
  .ds-mega-all-link:hover {
    color: var(--ds-dark) !important;
    gap: 10px !important;
  }
}

/* Mobile: hide mega panel, show ul.submenu via meanmenu */
@media (max-width: 991px) {
  .ds-mega-menu { display: none !important; }
}

/* ============================
   SERVICE CATEGORY HEADERS
   ============================ */
.ds-service-category { margin-bottom: 52px; }
.ds-service-category:last-child { margin-bottom: 0; }

.ds-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255,87,34,0.04) 0%, rgba(255,179,0,0.03) 100%);
  border: 1px solid rgba(255,87,34,0.10);
  border-left: 4px solid var(--ds-orange);
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}
.ds-cat-badge {
  width: 52px;
  height: 52px;
  background: var(--color-gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--ds-glow-sm);
  font-size: 22px;
  color: #fff;
}
.ds-cat-info h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ds-dark);
  margin: 0 0 4px;
  line-height: 1.25;
}
.ds-cat-info p {
  font-size: 13.5px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .ds-cat-header { flex-direction: column; gap: 14px; }
  .ds-cat-info h4 { font-size: 17px; }
}

/* ============================
   SERVICE DETAIL PAGES — 2026 REDESIGN
   ============================ */

/* Lead block */
.ds-service-lead {
  margin-bottom: 36px;
  padding: 28px 26px;
  background: linear-gradient(135deg, #faf9f8 0%, #fff8f5 100%);
  border: 1px solid rgba(255,87,34,0.12);
  border-left: 4px solid var(--ds-orange);
  border-radius: 0 14px 14px 0;
}
.ds-service-lead-quote {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 900;
  color: var(--ds-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
  margin: 0 0 12px;
}
.ds-service-lead-body {
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Section tag (orange pill label) */
.ds-section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ds-orange);
  margin-bottom: 16px;
}
.ds-section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--ds-orange);
  flex-shrink: 0;
}

/* Numbered deliverables */
.ds-num-list {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 44px;
}
.ds-num-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  margin: 0 -8px;
  transition: background 0.2s ease;
}
.ds-num-item:hover { background: rgba(255,87,34,0.025); }
.ds-num-digit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(255,87,34,0.14);
  line-height: 1;
  min-width: 52px;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: -2px;
  transition: color 0.3s ease;
}
.ds-num-item:hover .ds-num-digit { color: var(--ds-orange); }
.ds-num-body { flex: 1; padding-top: 2px; }
.ds-num-title {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 800;
  color: var(--ds-dark);
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ds-num-desc {
  font-size: clamp(0.82rem, 1.3vw, 0.92rem);
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Process timeline */
.ds-process {
  margin-bottom: 44px;
  position: relative;
  padding-left: 18px;
  border-left: 2px solid rgba(255,87,34,0.18);
}
.ds-process-step {
  display: flex;
  gap: 16px;
  padding: 0 0 24px 20px;
  position: relative;
}
.ds-process-step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px; height: 12px;
  background: var(--ds-orange);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(255,87,34,0.22);
}
.ds-process-step:last-child { padding-bottom: 0; }
.ds-step-tag {
  font-size: 9px;
  font-weight: 900;
  color: var(--ds-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  min-width: 20px;
  padding-top: 3px;
  flex-shrink: 0;
}
.ds-step-info h5 {
  font-size: clamp(0.86rem, 1.4vw, 0.98rem);
  font-weight: 800;
  color: var(--ds-dark);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ds-step-info p {
  font-size: clamp(0.82rem, 1.3vw, 0.9rem);
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* FAQ - clean accordion */
.ds-page-faq { margin-bottom: 44px; }
.ds-faq-item.accordion-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.09) !important;
  border-radius: 0 !important;
}
.ds-faq-btn.accordion-button {
  background: transparent !important;
  color: var(--ds-dark) !important;
  font-weight: 700 !important;
  font-size: clamp(0.86rem, 1.4vw, 0.96rem) !important;
  padding: 16px 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.ds-faq-btn.accordion-button:not(.collapsed) { color: var(--ds-orange) !important; }
.ds-faq-btn.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF5722'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.ds-faq-answer.accordion-body {
  font-size: clamp(0.84rem, 1.3vw, 0.92rem) !important;
  color: #666 !important;
  line-height: 1.78 !important;
  padding: 0 0 16px 0 !important;
}

/* Service CTA block */
.ds-page-cta {
  background: var(--ds-dark);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 44px;
  position: relative;
  overflow: hidden;
}
.ds-page-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,87,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ds-page-cta::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,179,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.ds-page-cta h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  position: relative; z-index: 1;
}
.ds-page-cta p {
  font-size: clamp(0.86rem, 1.4vw, 0.98rem) !important;
  color: rgba(255,255,255,0.50) !important;
  margin: 0 0 26px !important;
  line-height: 1.6 !important;
  position: relative; z-index: 1;
}
.ds-page-cta .theme-btn { position: relative; z-index: 1; }

/* Service detail image */
.service-details-content .details-image {
  height: 340px !important;
  border-radius: 14px !important;
  background-size: cover !important;
  background-position: center !important;
  margin: 24px 0 36px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10) !important;
}

/* h2 in service detail */
.service-details-content > h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
  font-weight: 900 !important;
  color: var(--ds-dark) !important;
  line-height: 1.25 !important;
  margin-bottom: 18px !important;
}

@media (max-width: 576px) {
  .ds-num-item { flex-direction: row; gap: 12px; }
  .ds-num-digit { min-width: 40px; font-size: 1.8rem; }
  .ds-page-cta { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════
   2026 ANIMATED UI ADDITIONS
   ds-animate.js companion styles
════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
#ds-scroll-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-orange) 0%, var(--ds-accent) 100%);
  z-index: 999999;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ── Typed text cursor ── */
#ds-typed { color: var(--ds-accent); }
#ds-typed::after {
  content: '|';
  display: inline-block;
  color: var(--ds-orange);
  font-weight: 300;
  margin-left: 2px;
  animation: ds-blink 0.9s step-end infinite;
}
@keyframes ds-blink { 50% { opacity: 0; } }

/* ── Ambient cursor glow ── */
#ds-cursor-glow {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
  will-change: left, top;
}

/* ── WhatsApp floating button ── */
.ds-whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  font-size: 26px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9990;
  transition: transform 0.3s var(--ds-spring), box-shadow 0.3s ease;
  animation: ds-wa-pulse 2.8s ease-out infinite;
}
.ds-whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  animation: none;
  color: #fff !important;
}
@keyframes ds-wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

.ds-whatsapp-float .ds-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #141414;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.ds-whatsapp-float:hover .ds-wa-tooltip { opacity: 1; }

/* Position floating quote btn higher now WhatsApp btn is below */
.floating-quote-btn { bottom: 160px !important; }

/* ── ds-reveal base state ── */
.ds-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ds-reveal.ds-revealed {
  opacity: 1;
  transform: translateY(0);
}
.ds-reveal.ds-delay-1 { transition-delay: 0.1s; }
.ds-reveal.ds-delay-2 { transition-delay: 0.2s; }
.ds-reveal.ds-delay-3 { transition-delay: 0.3s; }
.ds-reveal.ds-delay-4 { transition-delay: 0.4s; }
.ds-reveal.ds-delay-5 { transition-delay: 0.5s; }

/* ── Counter pulse on enter ── */
.counter-items {
  transition: transform 0.5s var(--ds-spring);
}
.counter-items.ds-counter-visible {
  animation: ds-counter-pop 0.6s var(--ds-spring) forwards;
}
@keyframes ds-counter-pop {
  0%   { transform: scale(0.85); opacity: 0.4; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Process step reveal ── */
.ds-process-step {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.ds-process-step.ds-step-visible {
  opacity: 1;
  transform: translateX(0);
}
.ds-process-step:nth-child(1)  { transition-delay: 0.05s; }
.ds-process-step:nth-child(2)  { transition-delay: 0.12s; }
.ds-process-step:nth-child(3)  { transition-delay: 0.19s; }
.ds-process-step:nth-child(4)  { transition-delay: 0.26s; }
.ds-process-step:nth-child(5)  { transition-delay: 0.33s; }
.ds-process-step:nth-child(6)  { transition-delay: 0.40s; }
.ds-process-step:nth-child(7)  { transition-delay: 0.47s; }

/* ── Header shrink on scroll ── */
.ds-header-scrolled .header-main {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.ds-header-scrolled.header-2 {
  box-shadow: 0 2px 24px rgba(0,0,0,0.12) !important;
}

/* ── Section title heading — solid, always-legible colour ──────────────
   Previously used an animated gradient text-fill (background-clip:text),
   which only stays readable against pure white. On dark sections, photo
   backgrounds, or off-white panels the fill would wash out and blend into
   the background. Solid color guarantees contrast everywhere, on every
   page, with no per-section override needed. Opt-in gradient variant kept
   below as .ds-gradient-heading for deliberate use on confirmed-safe
   light backgrounds only. */
.section-title h2 {
  color: var(--ds-dark) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--ds-dark) !important;
}

/* Opt-in gradient heading — use only where a pure white background behind
   the text is guaranteed (never on dark sections or photos). */
@keyframes ds-grad-sweep {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.ds-gradient-heading {
  background: linear-gradient(90deg, var(--ds-dark) 0%, var(--ds-dark) 40%, var(--ds-orange) 50%, var(--ds-accent) 60%, var(--ds-dark) 70%, var(--ds-dark) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ds-grad-sweep 6s linear infinite;
}

/* ── Particle canvas overlay ── */
#ds-particles {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.hero-section-4 { position: relative; }

/* ── HOW WE WORK section ── */
.ds-howwework {
  background: var(--ds-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.ds-howwework::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ds-howwework .section-title span {
  background: var(--color-gradient-1) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.ds-howwework .section-title h2 {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  animation: none !important;
}
.ds-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
}
.ds-step-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,87,34,0.4) 30%, rgba(255,179,0,0.4) 70%, transparent);
  z-index: 0;
}
.ds-step-card {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ds-step-num {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255,87,34,0.25);
  background: rgba(255,87,34,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 900;
  color: var(--ds-orange);
  transition: all 0.4s var(--ds-spring);
  position: relative;
}
.ds-step-num i { font-size: 30px; }
.ds-step-card:hover .ds-step-num {
  background: var(--color-gradient-1);
  border-color: var(--ds-orange);
  color: #fff;
  box-shadow: var(--ds-glow);
  transform: scale(1.08);
}
.ds-step-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.ds-step-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .ds-step-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ds-step-grid::before { display: none; }
}
@media (max-width: 480px) {
  .ds-step-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS section ── */
.ds-testimonials-section {
  background: #faf9f7;
  padding: 90px 0;
}
.ds-testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.ds-testimonials-track::-webkit-scrollbar { display: none; }
.ds-testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 3px solid var(--ds-orange);
  transition: transform 0.3s var(--ds-spring), box-shadow 0.3s ease;
  position: relative;
}
.ds-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.ds-testimonial-quote {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 48px;
  line-height: 1;
  color: rgba(255,87,34,0.10);
  font-family: Georgia, serif;
  pointer-events: none;
}
.ds-testimonial-stars {
  display: flex; gap: 3px;
  margin-bottom: 14px;
}
.ds-testimonial-stars i { color: var(--ds-accent); font-size: 14px; }
.ds-testimonial-body {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 22px;
  font-style: italic;
}
.ds-testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.ds-testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover;
  background: var(--color-gradient-1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}
.ds-testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.ds-testimonial-name {
  font-weight: 800; font-size: 15px; color: var(--ds-dark);
  margin-bottom: 2px;
}
.ds-testimonial-title { font-size: 12px; color: #888; }

/* Drag scroll hint */
.ds-testimonial-scroll-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 1px;
}

/* ── FAQ item (service pages) enhanced ── */
.ds-faq-item {
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 0 !important;
}
.ds-faq-btn {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--ds-dark) !important;
  background: #fff !important;
  box-shadow: none !important;
  padding: 18px 8px !important;
}
.ds-faq-btn:not(.collapsed) {
  color: var(--ds-orange) !important;
  background: #fff !important;
}
.ds-faq-btn::after {
  filter: invert(0) !important;
}
.ds-faq-btn:not(.collapsed)::after {
  filter: invert(40%) sepia(90%) saturate(2000%) hue-rotate(355deg) brightness(100%) contrast(90%) !important;
}
.ds-faq-answer {
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.8 !important;
  padding: 0 8px 18px !important;
  border-top: none !important;
}

/* ── Floating quote btn tooltip ── */
.floating-quote-btn .fq-tooltip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.floating-quote-btn:hover .fq-tooltip { opacity: 1; }

/* ── Hero typed text line ── */
.ds-hero-typed-line {
  font-size: clamp(16px, 2.5vw, 24px);
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 12px;
  min-height: 1.5em;
}

/* ── Typed text in hero h1 ── */
.ds-typed-text {
  color: var(--ds-orange);
  display: inline-block;
  min-width: 2ch;
  border-right: 3px solid var(--ds-orange);
  padding-right: 4px;
  animation: ds-blink 0.9s step-end infinite;
}

/* ── Testimonial infinite auto-scroll ── */
@keyframes ds-scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ds-testimonial-viewport {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 24px;
  position: relative;
}
.ds-testimonial-viewport::before,
.ds-testimonial-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ds-testimonial-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #faf9f7, transparent);
}
.ds-testimonial-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #faf9f7, transparent);
}
.ds-testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ds-scroll-x 38s linear infinite;
  will-change: transform;
}
.ds-testimonial-track:hover { animation-play-state: paused; }

/* ── How We Work dark section title override (colour) ── */
.ds-howwework .section-title p { color: rgba(255,255,255,0.55); }

/* ── Particle canvas must respect hero stacking ── */
.hero-section-4 .swiper,
.hero-section-4 .swiper-wrapper,
.hero-section-4 .swiper-slide { position: relative; z-index: 2; }

@media (max-width: 576px) {
  .ds-testimonial-viewport::before,
  .ds-testimonial-viewport::after { width: 48px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   DIGITAL SPYSE — BOLD & MODERN LAYER (2026)
   Loads last on all 27 pages. Targets shared theme classes so every page
   is upgraded without touching page markup.

   SAFETY: all hidden/reveal states are gated behind html.ds-anim, which is
   set by an inline script in include/header.php. If JS is off or fails,
   nothing is ever hidden — content renders fully visible.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1. FLUID DISPLAY TYPOGRAPHY ────────────────────────────────────── */
h1, .hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}
h2, .section-title h2 {
  font-size: clamp(2rem, 4.3vw, 3.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.028em !important;
  line-height: 1.07 !important;
  text-wrap: balance;
}
h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem) !important;
  font-weight: 750 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.2 !important;
}
p { line-height: 1.75 !important; }

/* Eyebrow labels above headings */
.section-title span {
  text-transform: uppercase !important;
  letter-spacing: 0.19em !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  display: inline-block !important;
  margin-bottom: 14px !important;
}

/* ── 2. SECTION RHYTHM ──────────────────────────────────────────────── */
.section-padding {
  padding-top: clamp(74px, 8.5vw, 142px) !important;
  padding-bottom: clamp(74px, 8.5vw, 142px) !important;
}
.section-title { margin-bottom: clamp(38px, 4.5vw, 66px) !important; }

/* ── 3. BUTTONS — bolder, tighter, more physical ────────────────────── */
.theme-btn {
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  border-radius: 8px !important;
  padding: 16px 34px !important;
  will-change: transform;
}
.theme-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 38px rgba(255, 87, 34, 0.34) !important;
}

/* ── 4. CARD LIFT ───────────────────────────────────────────────────── */
.ds-service-card,
.ds-step-card,
.ds-testimonial-card,
.team-card-items,
.blog-card,
.choose-image-items {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.42s ease !important;
  will-change: transform;
}
.ds-service-card:hover,
.ds-step-card:hover,
.ds-testimonial-card:hover,
.team-card-items:hover,
.blog-card:hover {
  transform: translateY(-9px) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.13) !important;
}

/* ── 5. COUNTERS — big, tabular, confident ──────────────────────────── */
.counter-items h2,
.counter-items .counter,
.counter-box h2 {
  font-variant-numeric: tabular-nums !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
}

/* ── 6. SCROLL PROGRESS BAR ─────────────────────────────────────────── */
#ds-scroll-bar {
  position: fixed !important;
  top: 0; left: 0;
  height: 3px !important;
  width: 0;
  background: linear-gradient(90deg, #FF5722, #FFB300) !important;
  z-index: 999999 !important;
  transition: width 0.08s linear !important;
  pointer-events: none !important;
}

/* ── 7. SCROLL REVEAL ───────────────────────────────────────────────────
   Gated on html.ds-anim so content is NEVER hidden without JS.
   .ds-in is added by ds-animate.js when the element enters the viewport. */
html.ds-anim .ds-rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html.ds-anim .ds-rv.ds-in {
  opacity: 1;
  transform: none;
}

/* Split-text headings: words rise into place */
html.ds-anim .ds-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
html.ds-anim .ds-word-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
html.ds-anim .ds-split.ds-in .ds-word-inner { transform: translateY(0); }

/* ── 8. DARK FEATURE SECTION ────────────────────────────────────────── */
.ds-dark-section {
  background: #141414 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}
.ds-dark-section h1,
.ds-dark-section h2,
.ds-dark-section h3 { color: #fff !important; }
.ds-dark-section .section-title span { color: #FF7043 !important; }

/* ── 9. ACCESSIBILITY — honour reduced-motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html.ds-anim .ds-rv,
  html.ds-anim .ds-word-inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto !important; }
  #ds-scroll-bar { transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   DIGITAL SPYSE — BUG FIXES (facelift round 2)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Glow orb accent (replaces dated checkerboard box-shape.png) ──────── */
.box-shape.ds-glow-orb {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 35% 32%, rgba(255,183,77,0.55), rgba(255,87,34,0.26) 48%, transparent 74%) !important;
  filter: blur(1px);
  pointer-events: none;
}

/* ── Circular brand badge (inline SVG replaces old wordmark PNG) ──────── */
.icon-box .circle-text .text-circle text { user-select: none; }

/* ── "Our Process" dark-section heading — force legible white ──────────
   Belt-and-suspenders reset: earlier gradient-sweep rules for
   .section-title h2 use background-clip:text without !important, so this
   guarantees the dark-section override always wins regardless of any
   webkit-prefix edge case. ── */
.ds-howwework .section-title h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-transform: none !important;
}

/* ── Service sidebar: sub-services of the current category ─────────────
   Visually distinct from the "Other Services" navigation list below it:
   these are what the category includes, not links to other pages. ── */
.ds-subservices a {
  position: relative !important;
  padding-left: 26px !important;
  font-weight: 600 !important;
}
.ds-subservices a::before {
  content: '\f00c';                     /* check */
  font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--ds-orange);
}
.ds-subservices a:hover { color: var(--ds-orange) !important; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICE PAGE SECTION BLOCKS
   A library of distinct section types so each service page composes a
   different layout instead of repeating one template.
   ═══════════════════════════════════════════════════════════════════ */
.ds-blk-head { margin: 54px 0 26px; }
.ds-blk-title {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem) !important;
  font-weight: 800 !important; letter-spacing: -0.02em !important;
  line-height: 1.18 !important; margin: 6px 0 10px !important;
}
.ds-blk-intro { color: #666 !important; max-width: 62ch; margin: 0 !important; }

/* 1. Pain points */
.ds-pains { display: grid; gap: 14px; }
.ds-pain {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid rgba(0,0,0,.07);
  border-left: 3px solid var(--ds-orange);
  border-radius: 10px; padding: 18px 20px;
  transition: var(--ds-transition);
}
.ds-pain:hover { box-shadow: 0 12px 34px rgba(0,0,0,.08); transform: translateY(-2px); }
.ds-pain-mark {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,87,34,.12); color: var(--ds-orange);
  font-weight: 900; font-size: 14px; display: flex;
  align-items: center; justify-content: center; margin-top: 2px;
}
.ds-pain-q { font-weight: 700 !important; color: var(--ds-dark) !important; margin: 0 0 4px !important; }
.ds-pain-a { color: #6b6b6b !important; font-size: 14.5px !important; margin: 0 !important; }

/* 2. Outcomes */
.ds-outcomes { display: grid; grid-template-columns: repeat(auto-fit,minmax(215px,1fr)); gap: 16px; }
.ds-outcome {
  background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 12px;
  padding: 24px 20px; transition: var(--ds-transition);
}
.ds-outcome:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.10); border-color: rgba(255,87,34,.25); }
.ds-outcome i { color: var(--ds-orange); font-size: 24px; margin-bottom: 12px; display: block; }
.ds-outcome-t { font-weight: 750 !important; color: var(--ds-dark) !important; margin: 0 0 6px !important; font-size: 15.5px !important; }
.ds-outcome-d { color: #6b6b6b !important; font-size: 14px !important; margin: 0 !important; line-height: 1.65 !important; }

/* 3. Comparison table */
.ds-compare { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(0,0,0,.08); }
.ds-compare table { width: 100%; border-collapse: collapse; min-width: 520px; background: #fff; }
.ds-compare th, .ds-compare td { padding: 14px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid rgba(0,0,0,.06); }
.ds-compare thead th { font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.ds-compare .ds-cmp-label { font-weight: 700; color: var(--ds-dark); width: 30%; }
.ds-compare td.ds-cmp-bad  { color: #8a8a8a; }
.ds-compare td.ds-cmp-good { color: var(--ds-dark); font-weight: 600; background: rgba(255,87,34,.04); }
.ds-compare th.ds-cmp-good { color: var(--ds-orange); background: rgba(255,87,34,.06); }
.ds-compare tbody tr:last-child td { border-bottom: none; }

/* 4. Phases timeline */
.ds-phases { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 18px; }
.ds-phase { position: relative; }
.ds-phase-bar { height: 4px; background: rgba(255,87,34,.18); border-radius: 4px; margin-bottom: 16px; position: relative; }
.ds-phase-bar span {
  position: absolute; top: -11px; left: 0; background: var(--ds-orange); color: #fff;
  font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 20px;
}
.ds-phase-t { font-weight: 750 !important; color: var(--ds-dark) !important; margin: 0 0 3px !important; font-size: 15px !important; }
.ds-phase-when { color: var(--ds-orange) !important; font-size: 12px !important; font-weight: 700 !important; margin: 0 0 7px !important; text-transform: uppercase; letter-spacing: .6px; }
.ds-phase-d { color: #6b6b6b !important; font-size: 13.5px !important; margin: 0 !important; line-height: 1.6 !important; }

/* 5. Tech stack */
.ds-stack { display: grid; gap: 18px; }
.ds-stack-group { border-left: 2px solid rgba(255,87,34,.25); padding-left: 16px; }
.ds-stack-label { font-size: 11.5px !important; font-weight: 800 !important; text-transform: uppercase; letter-spacing: 1.4px; color: var(--ds-orange) !important; margin: 0 0 9px !important; }
.ds-stack-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ds-stack-tags span {
  background: #f5f5f5; border: 1px solid rgba(0,0,0,.06); color: #444;
  font-size: 13px; font-weight: 600; padding: 5px 13px; border-radius: 20px;
}

/* 6. Audience fit */
.ds-fit { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.ds-fit-col { border-radius: 12px; padding: 22px; border: 1px solid rgba(0,0,0,.07); background: #fff; }
.ds-fit-h { font-weight: 800 !important; font-size: 14.5px !important; margin: 0 0 12px !important; display: flex; align-items: center; gap: 8px; }
.ds-fit-yes .ds-fit-h { color: #16a34a !important; }
.ds-fit-no  .ds-fit-h { color: #999 !important; }
.ds-fit-col ul { list-style: none; padding: 0; margin: 0; }
.ds-fit-col li { padding: 7px 0 7px 18px; position: relative; font-size: 14.5px; color: #5c5c5c; border-bottom: 1px solid rgba(0,0,0,.04); }
.ds-fit-col li:last-child { border-bottom: none; }
.ds-fit-col li::before { content: '—'; position: absolute; left: 0; color: rgba(0,0,0,.25); }

/* 8. Metrics band */
.ds-metrics {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 2px;
  background: var(--ds-dark); border-radius: 12px; overflow: hidden; margin: 40px 0;
}
.ds-metric { padding: 26px 18px; text-align: center; background: var(--ds-dark); }
.ds-metric-n { font-size: 30px !important; font-weight: 800 !important; color: var(--ds-orange) !important; margin: 0 0 4px !important; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.ds-metric-l { font-size: 12.5px !important; color: rgba(255,255,255,.6) !important; margin: 0 !important; }

/* 9. FAQ accordion */
.ds-faq details { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.ds-faq summary {
  cursor: pointer; padding: 16px 46px 16px 20px; font-weight: 700; color: var(--ds-dark);
  font-size: 15px; list-style: none; position: relative;
}
.ds-faq summary::-webkit-details-marker { display: none; }
.ds-faq summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 20px; font-weight: 400; color: var(--ds-orange); transition: transform .25s ease;
}
.ds-faq details[open] summary::after { content: '−'; }
.ds-faq details[open] summary { border-bottom: 1px solid rgba(0,0,0,.06); }
.ds-faq-a { padding: 16px 20px; color: #6b6b6b; font-size: 14.5px; line-height: 1.75; }

/* 10. CTA strip */
.ds-blk-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(135deg,#141414 0%,#2e1a0e 60%,#FF5722 190%);
  border-radius: 14px; padding: 30px 34px; margin: 48px 0 10px;
}
.ds-blk-cta h4 { color: #fff !important; margin: 0 0 5px !important; font-size: 20px !important; font-weight: 800 !important; }
.ds-blk-cta p  { color: rgba(255,255,255,.65) !important; margin: 0 !important; font-size: 14.5px !important; }

@media (max-width: 575px) {
  .ds-blk-cta { padding: 24px; }
  .ds-metric-n { font-size: 25px !important; }
}
