/* ============================================
   CUSTOM UI — Bi Innovate
   Glassmorphism | Scroll Top | Hero Social Dock
   CTA Strip | Section Accents | Team Cards | Social Links
   ============================================ */

/* === Zoho SalesIQ — Force widget visibility === */
#zsiq_float,
.zsiq_float {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 999999 !important;
}

/* === Hero background layers — restore visibility.
   Base style.css sets .hero-bg { opacity: 0.1 } and
   .hero-area-six::before/::after { opacity: 0.2 } with a 200px blur.
   On the dark homepage that renders almost invisible. Bump to
   readable levels without obscuring content. === */
.hero-bg {
  opacity: 0.3 !important;
}

.hero-area-six::before,
.hero-area-six::after {
  opacity: 0.4 !important;
}

/* === Hero H1 accents — pink outline stroke for <span> + <i>.
   Applies to both dark and light modes. Base style.css sets
   .hero-content h1 span to white stroke; we override to pink
   and extend the same treatment to <i>. === */
.hero-content h1 span,
.hero-area-six .hero-content h1 span {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px !important;
  -webkit-text-stroke-color: var(--c-accent) !important;
  /* Anchor for the sweep below. */
  position: relative;
  display: inline-block;
}

/* === Hero H1 — light sweep through the outlined word ===
   The outlined middle word is the hero's visual signature, so the motion
   belongs to it rather than being bolted on somewhere else. ::after repeats
   the same glyphs filled with an accent gradient and masks all but a narrow
   band, which travels across — reading as light passing behind glass.

   Why a pseudo-element: -webkit-text-stroke cannot take a gradient, and
   background-clip:text cannot coexist with a visible stroke on one element.
   Two layers is the only way to have both.

   The text comes from data-text, which pages/index.vue binds to the same i18n
   string the <h1> renders — so it stays translated and never diverges. It is
   decorative: the real text is in the <h1> and a pseudo-element is not exposed
   to assistive tech or read by crawlers. */
.hero-area-six .hero-content h1 span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-text-stroke: 0 !important;
  /* The peak has to be brighter than the stroke, not equal to it — matching the
     stroke colour just reads as "filled in" rather than as light crossing the
     glyph. --c-accent-contrast is the palette's light end in both themes. */
  background-image: linear-gradient(
    100deg,
    transparent 38%,
    var(--c-accent) 46%,
    var(--c-accent-contrast) 50%,
    var(--c-accent) 54%,
    transparent 62%
  );
  background-size: 260% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: hero-sweep 5.5s var(--ease-out, ease-out) infinite;
}

@keyframes hero-sweep {
  0%,
  20% {
    background-position: 130% 0;
  }
  80%,
  100% {
    background-position: -30% 0;
  }
}

/* Arabic reads right-to-left, so the light has to travel the other way or it
   sweeps against the reading direction. */
[dir='rtl'] .hero-area-six .hero-content h1 span::after {
  animation-name: hero-sweep-rtl;
}

@keyframes hero-sweep-rtl {
  0%,
  20% {
    background-position: -30% 0;
  }
  80%,
  100% {
    background-position: 130% 0;
  }
}

/* An endlessly moving highlight is exactly what this setting exists to stop.
   The outline alone is still the intended design, so nothing is lost. */
@media (prefers-reduced-motion: reduce) {
  .hero-area-six .hero-content h1 span::after {
    animation: none;
    opacity: 0;
  }
}

/* === CTA Strip — Dark elegant gradient === */
.headline-area.bgc-primary,
.headline-area-six.bgc-primary {
  background: linear-gradient(135deg, #1a0a1f 0%, #3d0a3a 50%, #1a0a1f 100%) !important;
  border-top: 1px solid rgba(255, 0, 217, 0.25);
  border-bottom: 1px solid rgba(255, 0, 217, 0.25);
}

/* === Marquee Text — White on dark purple strips === */
.headline-area-six.bgc-primary .marquee-item,
.headline-area-six.bgc-primary .marquee-item b,
.headline-area-six.bgc-primary .marquee-item i {
  color: rgba(255, 255, 255, 0.9) !important;
}

.headline-area-six.bgc-primary .marquee-item i {
  color: rgba(255, 0, 217, 0.7) !important;
}

/* === Global Glassmorphism — Default Theme Buttons === */
a.theme-btn:not(.style-two):not(.style-three),
button.theme-btn:not(.style-two):not(.style-three):not(.unify-submit-btn) {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(6px) !important;
  color: #fff !important;
}

a.theme-btn:not(.style-two):not(.style-three):hover,
button.theme-btn:not(.style-two):not(.style-three):not(.unify-submit-btn):hover {
  background: rgba(255, 0, 217, 0.15) !important;
  border-color: rgba(255, 0, 217, 0.4) !important;
  color: var(--c-accent) !important;
  box-shadow: 0 0 20px rgba(255, 0, 217, 0.15) !important;
}

/* === Scroll to Top === */
.scroll-top {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  color: #fff !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: rgba(255, 0, 217, 0.15) !important;
  border-color: rgba(255, 0, 217, 0.4) !important;
  color: var(--c-accent) !important;
  box-shadow: 0 0 20px rgba(255, 0, 217, 0.15) !important;
}

/* === Hero Social Dock — Vertical Glassmorphic  === */
.hero-social {
  transform: none !important;
  -webkit-transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  background: rgba(20, 22, 28, 0.4) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 40px !important;
  padding: 25px 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  z-index: 100;
}

.hero-social a {
  direction: ltr !important;
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-social a:hover {
  opacity: 1;
  transform: translateY(-3px) !important;
}

.hero-social a i {
  order: 1 !important;
  transform: rotate(-90deg) !important;
  -webkit-transform: rotate(-90deg) !important;
  margin: 0 !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  font-size: 15px !important;
  transition: all 0.4s ease !important;
}

.hero-social a:hover i {
  background: var(--ygency-primary-color, var(--c-accent)) !important;
  color: #000 !important;
  box-shadow: 0 0 15px rgba(255, 0, 217, 0.5) !important;
}

.hero-social a span {
  order: 2 !important;
  writing-mode: vertical-rl !important;
  -webkit-writing-mode: vertical-rl !important;
  transform: rotate(180deg) !important;
  -webkit-transform: rotate(180deg) !important;
  margin: 0 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  transition: color 0.4s ease !important;
}

.hero-social a:hover span {
  color: var(--ygency-primary-color, var(--c-accent)) !important;
}

/* === Mobile — hero social + generic social rows.
   Hero-social on desktop is a decorative vertical dock with
   rotated text. On mobile that gets awkward so flatten back
   to a standard horizontal row. (Item 7) === */
@media only screen and (max-width: 767px) {
  .hero-social {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    border-radius: 40px !important;
    width: fit-content !important;
    margin: 0 auto !important;
  }

  .hero-social a {
    flex-direction: row !important;
    gap: 8px !important;
  }

  .hero-social a i {
    transform: none !important;
    -webkit-transform: none !important;
    width: 32px !important;
    height: 32px !important;
  }

  .hero-social a span {
    writing-mode: horizontal-tb !important;
    -webkit-writing-mode: horizontal-tb !important;
    transform: none !important;
    -webkit-transform: none !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }

  /* social-style-two / -four — keep as a single row with wrap */
  .social-style-two,
  .social-style-four,
  .sidebar-social-wrap .social-style-two,
  .our-location-address .social-style-two {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .social-style-two a,
  .social-style-four a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* === Section Accent — Bottom Right Pink Corner === */
.bi-section-accent {
  position: relative;
}

.bi-section-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(to left, var(--c-accent), transparent);
  border-radius: 2px;
}

/* === About page — why-choose SVG icons === */
.bi-card-icon {
  width: 64px;
  height: 64px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-bottom: 4px;
}

/* === BI Team Cards — Dark Vector Style === */
.bi-team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.bi-team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 0, 217, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.bi-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255, 0, 217, 0.18);
  border-color: rgba(255, 0, 217, 0.3);
}

.bi-team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 217, 0.25);
  padding: 4px;
  background: rgba(255, 0, 217, 0.05);
  transition: border-color 0.35s ease;
}

.bi-team-card:hover .bi-team-avatar {
  border-color: rgba(255, 0, 217, 0.6);
}

.bi-team-avatar svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.bi-team-info h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.bi-team-info span {
  color: var(--ygency-primary-color, var(--c-accent));
  font-size: 13px;
  font-weight: var(--fw-emph);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.bi-team-social {
  margin-top: 18px;
}

.bi-team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 0, 217, 0.12);
  border: 1px solid rgba(255, 0, 217, 0.25);
  color: var(--ygency-primary-color, var(--c-accent));
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bi-team-social a:hover {
  background: var(--ygency-primary-color, var(--c-accent));
  color: #ffffff;
  border-color: var(--ygency-primary-color, var(--c-accent));
  transform: scale(1.1);
}

/* === Universal Social Links — Circular Premium Design === */
.social-style-one a,
.social-style-two a,
.social-style-four a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  transition: all 0.4s ease !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 5px !important;
  line-height: normal !important;
}

.social-style-one a:hover,
.social-style-two a:hover,
.social-style-four a:hover {
  background: transparent !important;
}

.social-style-one a i,
.social-style-two a i,
.social-style-four a i {
  box-sizing: border-box !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  font-size: 15px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 !important;
  line-height: normal !important;
}

.social-style-one a:hover i,
.social-style-two a:hover i,
.social-style-four a:hover i {
  background: var(--ygency-primary-color, var(--c-accent)) !important;
  color: #000 !important;
  border-color: var(--ygency-primary-color, var(--c-accent)) !important;
  box-shadow: 0 0 15px rgba(255, 0, 217, 0.5) !important;
  transform: translateY(-3px) !important;
}

/* Footer social text labels */
.social-style-four a span {
  font-size: 14px !important;
  font-weight: var(--fw-emph) !important;
  color: #ffffff !important;
  opacity: 0.8;
  transition: all 0.4s ease !important;
}

.social-style-four a:hover span {
  color: var(--ygency-primary-color, var(--c-accent)) !important;
  opacity: 1;
}

/* Topbar contrast fix (pink header bg) */
.header-top .social-style-two a i {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

.header-top .social-style-two a:hover i {
  background: #ffffff !important;
  color: var(--ygency-primary-color, var(--c-accent)) !important;
  border-color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

/* === Misc text utility === */
.text-primary {
  color: var(--c-accent) !important;
}

/* === CTA Strip Text — Ensure white text in bgc-primary sections === */
.headline-area.bgc-primary h3,
.headline-area.bgc-primary h2,
.headline-area.bgc-primary p {
  color: #fff;
}

.headline-area.bgc-primary p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === LTR phone/address links === */
a[dir="ltr"],
.tel[dir="ltr"],
[dir="rtl"] a[dir="ltr"] {
  direction: ltr !important;
  unicode-bidi: embed;
  display: inline-block;
}

/* === Ensure call-anytime number doesn't wrap === */
.call-anytime .content a {
  white-space: nowrap !important;
}

/* === Standardized card hover === */
.service-six-item,
.why-choose-item,
.service-item-four {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-six-item:hover,
.why-choose-item:hover,
.service-item-four:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 0, 217, 0.12);
}

/* === Base button overflow for animations === */
.theme-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease !important;
}

.theme-btn:hover {
  transform: translateY(-2px);
}

/* === Performance: contain layout for card grids === */
.service-six-item,
.why-choose-item,
.service-item-four,
.bi-team-card,
.client-logo-item {
  contain: layout style;
}

/* === Smooth image rendering === */
img {
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* === Focus-visible outlines for keyboard navigation === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remove default focus ring for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   FAQ ACCORDION — Premium Dark Glassmorphic
   ============================================ */
.accordion-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  margin-bottom: 12px !important;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 0, 217, 0.2) !important;
}

.accordion-item:has(.accordion-collapse.show) {
  border-color: rgba(255, 0, 217, 0.25) !important;
  box-shadow: 0 4px 20px rgba(255, 0, 217, 0.08) !important;
}

.accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 20px 24px !important;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease !important;
}

.accordion-button:not(.collapsed) {
  color: var(--c-accent) !important;
  background: rgba(255, 0, 217, 0.04) !important;
}

.accordion-button::after {
  filter: invert(1) !important;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.accordion-button:not(.collapsed)::after {
  opacity: 1;
  filter: invert(0.5) sepia(1) saturate(20) hue-rotate(290deg) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  padding: 0 24px 20px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.7;
  font-size: 15px;
}

.accordion-body p {
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 0;
}

/* ============================================
   WORK STEP ITEMS — Glassmorphic Cards
   ============================================ */
.work-step-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--radius-card) !important;
  padding: 35px 28px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: visible !important;
}

/* Kill base theme's solid magenta hover overlay */
.work-step-item:before {
  display: none !important;
}

.work-step-item:hover {
  border-color: rgba(255, 0, 217, 0.3) !important;
  background: rgba(255, 0, 217, 0.03) !important;
  transform: translateY(-4px);
  box-shadow:
    0 12px 35px rgba(255, 0, 217, 0.1),
    0 0 0 1px rgba(255, 0, 217, 0.15),
    inset 0 1px 0 rgba(255, 0, 217, 0.1) !important;
}

.work-step-item .step-number {
  font-size: 48px !important;
  font-weight: var(--fw-display) !important;
  line-height: 1.25 !important;
  padding-top: 4px !important;
  padding-bottom: 6px !important;
  background: linear-gradient(135deg, rgba(255, 0, 217, 0.3), rgba(255, 0, 217, 0.1)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  transition: all 0.3s ease;
}

.work-step-item:hover .step-number {
  background: linear-gradient(135deg, var(--c-accent), rgba(255, 0, 217, 0.5)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.work-step-item .title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.work-step-item .content p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* Step connector arrow — subtle on dark */
.work-step-item:not(.arrow-none)::after {
  opacity: 0.15 !important;
}

/* ============================================
   WHY CHOOSE ITEMS — Enhanced Cards
   ============================================ */
.why-choose-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  padding: 28px 24px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.why-choose-item:hover {
  border-color: rgba(255, 0, 217, 0.25) !important;
  background: rgba(255, 0, 217, 0.03) !important;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 0, 217, 0.08) !important;
}

.why-choose-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.why-choose-header i {
  color: var(--c-accent) !important;
  font-size: 14px !important;
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-input);
  background: rgba(255, 0, 217, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-header i {
  background: rgba(255, 0, 217, 0.2);
  box-shadow: 0 0 10px rgba(255, 0, 217, 0.2);
}

.why-choose-header h5 {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.why-choose-item p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

/* ============================================
   SERVICE-ITEM-FOUR — AI Services Cards
   ============================================ */
.service-item-four {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--radius-card) !important;
  padding: 35px 28px !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 100%;
}

.service-item-four:hover {
  border-color: rgba(255, 0, 217, 0.3) !important;
  background: rgba(255, 0, 217, 0.04) !important;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255, 0, 217, 0.1) !important;
}

.service-item-four .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 0, 217, 0.08) !important;
  border: 1px solid rgba(255, 0, 217, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.service-item-four:hover .service-icon {
  background: rgba(255, 0, 217, 0.15) !important;
  border-color: rgba(255, 0, 217, 0.35);
  box-shadow: 0 0 20px rgba(255, 0, 217, 0.15);
}

.service-item-four .service-icon i {
  font-size: 22px !important;
  color: var(--c-accent) !important;
  transition: transform 0.3s ease;
}

.service-item-four:hover .service-icon i {
  transform: scale(1.1);
}

.service-item-four .service-content h5 {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.service-item-four .service-content p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* ============================================
   LIST STYLE THREE — Checkmark Lists
   ============================================ */
.list-style-three li {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 15px !important;
  padding: 8px 0 !important;
  position: relative;
}

.list-style-three li::before {
  color: var(--c-accent) !important;
}

/* ============================================
   BIG TEXT — Background watermark
   ============================================ */
.big-text {
  color: rgba(255, 255, 255, 0.015) !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03) !important;
  font-weight: 900 !important;
  font-size: 7vw !important;
}

/* ============================================
   SERVICE PAGE ABOUT — Section styling
   ============================================ */
.service-page-about .about-content p {
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: var(--lh-body);
}

.service-page-about .image img {
  border-radius: var(--radius-card) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  z-index: 2;
}

/* About-four wrap + image — shape + layout tokens live here so both
   themes stay geometrically identical (theme.light.css only overrides
   palette/shadow). */
.about-four-wrap {
  border-radius: var(--radius-card-lg);
  position: relative;
  overflow: hidden;
}

.about-four-image img {
  border-radius: var(--radius-card);
}

/* ============================================
   CTA HEADLINE STRIP — `.headline-area.bgc-primary`
   (Moved here from custom.rtl.css in T015; was mis-
   scoped there even though its palette applies in both
   directions.)
   ============================================ */
.headline-area.bgc-primary {
  background: linear-gradient(135deg, #1a0a1f 0%, #3d0a3a 50%, #1a0a1f 100%) !important;
  border-top: var(--border-width) solid rgba(255, 0, 217, 0.3);
  border-bottom: var(--border-width) solid rgba(255, 0, 217, 0.3);
}

.service-page-about .image:hover img {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(255, 0, 217, 0.12) !important;
}

/* ============================================
   FAQ IMAGE — Subtle glow
   ============================================ */
.faq-iamge-part img {
  border-radius: var(--radius-card) !important;
  filter: brightness(0.9);
  transition: all 0.4s ease;
}

.faq-iamge-part:hover img {
  filter: brightness(1);
  transform: translateY(-4px);
}

/* ============================================
   WHY CHOOSE RIGHT IMAGE
   ============================================ */
.why-choose-right img {
  border-radius: var(--radius-card) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.4s ease;
}

.why-choose-right:hover img {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 0, 217, 0.12) !important;
}

/* ============================================
   CONTACT PAGE — Map & Info enhancements
   ============================================ */
.contact-page-map .our-location iframe {
  border-radius: var(--radius-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  filter: brightness(0.8) contrast(1.1) !important;
  transition: filter 0.3s ease;
}

.contact-page-map .our-location iframe:hover {
  filter: brightness(0.9) contrast(1.05) !important;
}

.our-location-address h5 {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.our-location-address p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.our-location-address a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease !important;
}

.our-location-address a:hover {
  color: var(--c-accent) !important;
}

/* ============================================
   BOOKING PAGE — Iframe container
   ============================================ */
.team-profile-area iframe {
  border-radius: var(--radius-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

/* ============================================
   SERVICE-SIX-ITEM — Enhanced cards
   ============================================ */
.service-six-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--radius-card) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-six-item:hover {
  border-color: rgba(255, 0, 217, 0.3) !important;
  background: rgba(255, 0, 217, 0.03) !important;
  box-shadow: 0 15px 40px rgba(255, 0, 217, 0.1) !important;
}

/* Kill only the weird floating oval blob — keep everything else from base theme */
.service-six-item .icon::after,
.service-six-item .icon::before {
  display: none !important;
}

/* Icon container: clean square box matching site glassmorphic style */
.service-six-item .icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  flex-shrink: 0 !important;
  border-radius: 13px !important;
  background: rgba(255, 0, 217, 0.07) !important;
  border: 1px solid rgba(255, 0, 217, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 24px !important;
  font-size: inherit !important; /* reset the 40px from base */
  color: inherit !important;
  position: static !important; /* remove relative positioning causing offset */
  transition: all 0.3s ease !important;
}

.service-six-item:hover .icon {
  background: rgba(255, 0, 217, 0.13) !important;
  border-color: rgba(255, 0, 217, 0.35) !important;
  box-shadow: 0 0 16px rgba(255, 0, 217, 0.12) !important;
}

.service-six-item .icon i {
  color: var(--c-accent) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
}

.service-six-item h5,
.service-six-item h4 {
  color: #ffffff !important;
}

.service-six-item p {
  color: rgba(255, 255, 255, 0.55) !important;
}



/* ============================================
   PAGE BANNER — Enhanced dark treatment
   ============================================ */
.page-banner-area {
  position: relative;
}

.page-banner-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 217, 0.3), transparent);
}

/* Breadcrumb styling */
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s ease !important;
}

.breadcrumb-item a:hover {
  color: var(--c-accent) !important;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   COUNTER ITEMS — Glassmorphic
   ============================================ */
.counter-item {
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-3px);
}

.counter-item .count-text .count {
  color: var(--c-accent) !important;
}

/* ============================================
   SECTION TITLE — Unified styling
   ============================================ */
.section-title .sub-title {
  color: var(--c-accent) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 13px !important;
}

.section-title h2 {
  color: #ffffff !important;
  font-weight: var(--fw-heading) !important;
}

.section-title p,
.section-title .text p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ============================================
   INTRO DESC — Centered text utility
   ============================================ */
.ai-intro-desc {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: var(--lh-body);
}

/* ============================================
   LIGHT MODE — Theme overrides
   ============================================ */
[data-theme="light"] .headline-area.bgc-primary,
[data-theme="light"] .headline-area-six.bgc-primary {
  background: linear-gradient(135deg, #f0f0f5 0%, #e8e8ef 50%, #f0f0f5 100%) !important;
  border-color: rgba(214, 0, 184, 0.25);
}

[data-theme="light"] .headline-area-six.bgc-primary .marquee-item,
[data-theme="light"] .headline-area-six.bgc-primary .marquee-item b,
[data-theme="light"] .headline-area-six.bgc-primary .marquee-item i {
  color: rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .headline-area-six.bgc-primary .marquee-item i {
  color: rgba(214, 0, 184, 0.7) !important;
}

[data-theme="light"] .headline-area.bgc-primary .marquee-item,
[data-theme="light"] .headline-area.bgc-primary .marquee-item b {
  color: rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .headline-area.bgc-primary .marquee-item i {
  color: rgba(214, 0, 184, 0.7) !important;
}

[data-theme="light"] a.theme-btn:not(.style-two):not(.style-three),
[data-theme="light"] button.theme-btn:not(.style-two):not(.style-three):not(.unify-submit-btn) {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #1a1a2e !important;
}

[data-theme="light"] a.theme-btn:not(.style-two):not(.style-three):hover,
[data-theme="light"] button.theme-btn:not(.style-two):not(.style-three):not(.unify-submit-btn):hover {
  background: rgba(214, 0, 184, 0.15) !important;
  border-color: rgba(214, 0, 184, 0.4) !important;
  color: var(--c-accent) !important;
  box-shadow: 0 0 20px rgba(214, 0, 184, 0.15) !important;
}

[data-theme="light"] .scroll-top {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #1a1a2e !important;
}

[data-theme="light"] .scroll-top:hover {
  background: rgba(214, 0, 184, 0.15) !important;
  border-color: rgba(214, 0, 184, 0.4) !important;
  color: var(--c-accent) !important;
  box-shadow: 0 0 20px rgba(214, 0, 184, 0.15) !important;
}

[data-theme="light"] .hero-social {
  background: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .hero-social a i {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #1a1a2e !important;
}

[data-theme="light"] .hero-social a:hover i {
  background: var(--ygency-primary-color, var(--c-accent)) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(214, 0, 184, 0.5) !important;
}

[data-theme="light"] .hero-social a span {
  color: #1a1a2e !important;
}

[data-theme="light"] .bi-section-accent::after {
  background: linear-gradient(to left, var(--c-accent), transparent);
}

[data-theme="light"] .bi-team-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .bi-team-card::before {
  background: linear-gradient(135deg, rgba(214, 0, 184, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .bi-team-card:hover {
  box-shadow: 0 20px 50px rgba(214, 0, 184, 0.12);
  border-color: rgba(214, 0, 184, 0.3);
}

[data-theme="light"] .bi-team-avatar {
  border-color: rgba(214, 0, 184, 0.25);
  background: rgba(214, 0, 184, 0.05);
}

[data-theme="light"] .bi-team-card:hover .bi-team-avatar {
  border-color: rgba(214, 0, 184, 0.6);
}

[data-theme="light"] .bi-team-info h4 {
  color: #1a1a2e;
}

[data-theme="light"] .bi-team-info span {
  color: var(--ygency-primary-color, var(--c-accent));
}

[data-theme="light"] .bi-team-social a {
  background: rgba(214, 0, 184, 0.12);
  border-color: rgba(214, 0, 184, 0.25);
  color: var(--ygency-primary-color, var(--c-accent));
}

[data-theme="light"] .bi-team-social a:hover {
  background: var(--ygency-primary-color, var(--c-accent));
  color: #ffffff;
  border-color: var(--ygency-primary-color, var(--c-accent));
}

[data-theme="light"] .social-style-one a i,
[data-theme="light"] .social-style-two a i,
[data-theme="light"] .social-style-four a i {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  color: #1a1a2e !important;
}

[data-theme="light"] .social-style-one a:hover i,
[data-theme="light"] .social-style-two a:hover i,
[data-theme="light"] .social-style-four a:hover i {
  background: var(--ygency-primary-color, var(--c-accent)) !important;
  color: #fff !important;
  border-color: var(--ygency-primary-color, var(--c-accent)) !important;
  box-shadow: 0 0 15px rgba(214, 0, 184, 0.5) !important;
}

[data-theme="light"] .social-style-four a span {
  color: #1a1a2e !important;
}

[data-theme="light"] .social-style-four a:hover span {
  color: var(--ygency-primary-color, var(--c-accent)) !important;
}

[data-theme="light"] .header-top .social-style-two a i {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

[data-theme="light"] .header-top .social-style-two a:hover i {
  background: #ffffff !important;
  color: var(--ygency-primary-color, var(--c-accent)) !important;
  border-color: #ffffff !important;
}

[data-theme="light"] .text-primary {
  color: var(--c-accent) !important;
}

[data-theme="light"] .headline-area.bgc-primary h3,
[data-theme="light"] .headline-area.bgc-primary h2,
[data-theme="light"] .headline-area.bgc-primary p {
  color: #1a1a2e;
}

[data-theme="light"] .headline-area.bgc-primary p {
  color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .service-six-item:hover,
[data-theme="light"] .why-choose-item:hover,
[data-theme="light"] .service-item-four:hover {
  box-shadow: 0 12px 35px rgba(214, 0, 184, 0.12);
}

[data-theme="light"] a:focus-visible,
[data-theme="light"] button:focus-visible,
[data-theme="light"] input:focus-visible,
[data-theme="light"] textarea:focus-visible,
[data-theme="light"] select:focus-visible {
  outline-color: var(--c-accent);
}

[data-theme="light"] .accordion-item {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .accordion-item:hover {
  border-color: rgba(214, 0, 184, 0.2) !important;
}

[data-theme="light"] .accordion-item:has(.accordion-collapse.show) {
  border-color: rgba(214, 0, 184, 0.25) !important;
  box-shadow: 0 4px 20px rgba(214, 0, 184, 0.08) !important;
}

[data-theme="light"] .accordion-button {
  color: #1a1a2e !important;
}

[data-theme="light"] .accordion-button:not(.collapsed) {
  color: var(--c-accent) !important;
  background: rgba(214, 0, 184, 0.04) !important;
}

[data-theme="light"] .accordion-button::after {
  filter: invert(0) !important;
  opacity: 0.5;
}

[data-theme="light"] .accordion-body {
  color: rgba(0, 0, 0, 0.65) !important;
}

[data-theme="light"] .accordion-body p {
  color: rgba(0, 0, 0, 0.65) !important;
}

[data-theme="light"] .work-step-item {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .work-step-item:hover {
  border-color: rgba(214, 0, 184, 0.3) !important;
  background: rgba(214, 0, 184, 0.03) !important;
  box-shadow:
    0 12px 35px rgba(214, 0, 184, 0.1),
    0 0 0 1px rgba(214, 0, 184, 0.15),
    inset 0 1px 0 rgba(214, 0, 184, 0.1) !important;
}

[data-theme="light"] .work-step-item .step-number {
  background: linear-gradient(135deg, rgba(214, 0, 184, 0.3), rgba(214, 0, 184, 0.1)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .work-step-item:hover .step-number {
  background: linear-gradient(135deg, var(--c-accent), rgba(214, 0, 184, 0.5)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

[data-theme="light"] .work-step-item .title {
  color: #1a1a2e !important;
}

[data-theme="light"] .work-step-item .content p {
  color: rgba(0, 0, 0, 0.55) !important;
}

[data-theme="light"] .why-choose-item {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .why-choose-item:hover {
  border-color: rgba(214, 0, 184, 0.25) !important;
  background: rgba(214, 0, 184, 0.03) !important;
  box-shadow: 0 10px 30px rgba(214, 0, 184, 0.08) !important;
}

[data-theme="light"] .why-choose-header i {
  color: var(--c-accent) !important;
  background: rgba(214, 0, 184, 0.1);
}

[data-theme="light"] .why-choose-item:hover .why-choose-header i {
  background: rgba(214, 0, 184, 0.2);
  box-shadow: 0 0 10px rgba(214, 0, 184, 0.2);
}

[data-theme="light"] .why-choose-header h5 {
  color: #1a1a2e !important;
}

[data-theme="light"] .why-choose-item p {
  color: rgba(0, 0, 0, 0.55) !important;
}

[data-theme="light"] .service-item-four {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .service-item-four:hover {
  border-color: rgba(214, 0, 184, 0.3) !important;
  background: rgba(214, 0, 184, 0.04) !important;
  box-shadow: 0 15px 40px rgba(214, 0, 184, 0.1) !important;
}

[data-theme="light"] .service-item-four .service-icon {
  background: rgba(214, 0, 184, 0.08) !important;
  border-color: rgba(214, 0, 184, 0.15);
}

[data-theme="light"] .service-item-four:hover .service-icon {
  background: rgba(214, 0, 184, 0.15) !important;
  border-color: rgba(214, 0, 184, 0.35);
  box-shadow: 0 0 20px rgba(214, 0, 184, 0.15);
}

[data-theme="light"] .service-item-four .service-icon i {
  color: var(--c-accent) !important;
}

[data-theme="light"] .service-item-four .service-content h5 {
  color: #1a1a2e !important;
}

[data-theme="light"] .service-item-four .service-content p {
  color: rgba(0, 0, 0, 0.55) !important;
}

[data-theme="light"] .list-style-three li {
  color: rgba(0, 0, 0, 0.75) !important;
}

[data-theme="light"] .list-style-three li::before {
  color: var(--c-accent) !important;
}

[data-theme="light"] .big-text {
  color: rgba(0, 0, 0, 0.03) !important;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .service-page-about .about-content p {
  color: rgba(0, 0, 0, 0.65) !important;
}

[data-theme="light"] .service-page-about .image img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .service-page-about .image:hover img {
  box-shadow: 0 25px 70px rgba(214, 0, 184, 0.12) !important;
}

[data-theme="light"] .faq-iamge-part img {
  filter: brightness(0.95);
}

[data-theme="light"] .why-choose-right img {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .why-choose-right:hover img {
  box-shadow: 0 20px 60px rgba(214, 0, 184, 0.12) !important;
}

[data-theme="light"] .contact-page-map .our-location iframe {
  border-color: rgba(0, 0, 0, 0.06) !important;
  filter: brightness(0.95) contrast(1.05) !important;
}

[data-theme="light"] .contact-page-map .our-location iframe:hover {
  filter: brightness(1) contrast(1.02) !important;
}

[data-theme="light"] .our-location-address h5 {
  color: #1a1a2e !important;
}

[data-theme="light"] .our-location-address p {
  color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .our-location-address a {
  color: rgba(0, 0, 0, 0.7) !important;
}

[data-theme="light"] .our-location-address a:hover {
  color: var(--c-accent) !important;
}

[data-theme="light"] .team-profile-area iframe {
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .service-six-item {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .service-six-item:hover {
  border-color: rgba(214, 0, 184, 0.3) !important;
  background: rgba(214, 0, 184, 0.03) !important;
  box-shadow: 0 15px 40px rgba(214, 0, 184, 0.1) !important;
}

[data-theme="light"] .service-six-item .icon {
  background: rgba(214, 0, 184, 0.07) !important;
  border-color: rgba(214, 0, 184, 0.15) !important;
}

[data-theme="light"] .service-six-item:hover .icon {
  background: rgba(214, 0, 184, 0.13) !important;
  border-color: rgba(214, 0, 184, 0.35) !important;
  box-shadow: 0 0 16px rgba(214, 0, 184, 0.12) !important;
}

[data-theme="light"] .service-six-item .icon i {
  color: var(--c-accent) !important;
}

[data-theme="light"] .service-six-item h5,
[data-theme="light"] .service-six-item h4 {
  color: #1a1a2e !important;
}

[data-theme="light"] .service-six-item p {
  color: rgba(0, 0, 0, 0.55) !important;
}

[data-theme="light"] .page-banner-area::after {
  background: linear-gradient(90deg, transparent, rgba(214, 0, 184, 0.3), transparent);
}

[data-theme="light"] .breadcrumb-item a {
  color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .breadcrumb-item a:hover {
  color: var(--c-accent) !important;
}

[data-theme="light"] .breadcrumb-item.active {
  color: rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .counter-item .count-text .count {
  color: var(--c-accent) !important;
}

[data-theme="light"] .section-title .sub-title {
  color: var(--c-accent) !important;
}

[data-theme="light"] .section-title h2 {
  color: #1a1a2e !important;
}

[data-theme="light"] .section-title p,
[data-theme="light"] .section-title .text p {
  color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .ai-intro-desc {
  color: rgba(0, 0, 0, 0.65) !important;
}

/* ============================================
   CUSTOM SCROLLBAR — Thin magenta accent
   ============================================ */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-accent), rgba(255, 0, 217, 0.4));
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-accent);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) transparent;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-accent), rgba(214, 0, 184, 0.35));
}
