/* Expanding Accordion Service Page */
:root {
  --brand: #00bca9;
  --bg-dark: #050505;
}

.service-page-wrapper {
  background: var(--bg-dark);
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow: visible !important;
}

.canvas-wrap {
  overflow: visible !important;
}

/* Services Hero Section Styles (Interactive Cyber Deck Layout) */
.services_hero_section_split {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: #05050a;
  padding: 120px 0 60px 0;
  overflow: hidden;
  z-index: 2;
  font-family: 'Ubuntu', sans-serif;
  box-sizing: border-box;
}

/* cyber grid ambient backdrop */
.services_hero_section_split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    url('../images/services_hero_bg.png'),
    radial-gradient(circle at 50% 50%, rgba(0, 188, 169, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(127, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 188, 169, 0.08) 0%, transparent 40%);
  background-size: cover, 100% 100%, 100% 100%, 100% 100%;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.hero_split_glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 188, 169, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
  transition: background 0.8s ease;
}

.hero_deck_left {
  position: relative;
  z-index: 3;
}

.hero_split_badge {
  color: var(--brand);
  border: 1px solid rgba(0, 188, 169, 0.25);
  background: rgba(0, 188, 169, 0.06);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 188, 169, 0.1);
}

.pulse_dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(0, 188, 169, 0.4);
  animation: pulse 2s infinite;
}

.hero_split_title_creative {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.gradient_text {
  background: linear-gradient(135deg, #00bca9 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Deck Selector Menu */
.deck_selector_menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  max-width: 480px;
}

.deck_menu_item {
  position: relative;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck_menu_item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.deck_menu_item.active {
  background: rgba(0, 188, 169, 0.04);
  border-color: rgba(0, 188, 169, 0.2);
  box-shadow: 0 10px 30px rgba(0, 188, 169, 0.03);
}

.deck_menu_item:nth-child(2).active {
  background: rgba(56, 189, 248, 0.04);
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.03);
}

.deck_menu_item:nth-child(3).active {
  background: rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.03);
}

.deck_menu_item:nth-child(4).active {
  background: rgba(34, 197, 94, 0.04);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.03);
}

.item_meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item_num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: #52525b;
  font-weight: 700;
  transition: color 0.3s;
}

.deck_menu_item.active .item_num {
  color: var(--brand);
}
.deck_menu_item:nth-child(2).active .item_num { color: #38bdf8; }
.deck_menu_item:nth-child(3).active .item_num { color: #a855f7; }
.deck_menu_item:nth-child(4).active .item_num { color: #22c55e; }

.item_title {
  font-size: 16px;
  font-weight: 700;
  color: #a0a0ab;
  transition: color 0.3s;
}

.deck_menu_item.active .item_title {
  color: #ffffff;
}

.item_desc {
  font-size: 12.5px;
  color: #71717a;
  margin: 0 0 0 30px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck_menu_item.active .item_desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}

.item_progress {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: transparent;
  overflow: hidden;
}

.item_progress_bar {
  width: 0;
  height: 100%;
  background: var(--brand);
  transition: width 0.3s;
}
.deck_menu_item:nth-child(2) .item_progress_bar { background: #38bdf8; }
.deck_menu_item:nth-child(3) .item_progress_bar { background: #a855f7; }
.deck_menu_item:nth-child(4) .item_progress_bar { background: #22c55e; }

.deck_menu_item.active .item_progress_bar {
  width: 100%;
  animation: loadProgress 5s linear infinite;
}

@keyframes loadProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

.hero_split_actions_creative {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.btn_split_primary {
  background: var(--brand);
  color: #000 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 18px 36px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 188, 169, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn_split_primary:hover {
  background: #ffffff;
  color: #000 !important;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn_split_primary i {
  transition: transform 0.3s ease;
}

.btn_split_primary:hover i {
  transform: translateY(3px);
}

.btn_split_secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 18px 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn_split_secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Cyber Deck Window Visual */
.cyber_deck_container {
  position: relative;
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 380px;
  display: flex;
  flex-direction: column;
}

.cyber_deck_container:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.deck_window_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 18px;
  margin-bottom: 0;
}

.deck_window_dots {
  display: flex;
  gap: 8px;
}

.w_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.w_red { background: #ef4444; }
.w_yellow { background: #eab308; }
.w_green { background: #22c55e; }

.deck_window_title {
  font-family: monospace;
  font-size: 13px;
  color: #52525b;
}

.deck_window_inner_wrapper {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  min-height: 380px;
}

/* IDE Left Sidebar */
.ide_left_sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(10, 10, 15, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 12px;
  width: 50px;
  flex-shrink: 0;
}

.ide_side_btn {
  font-size: 16px;
  color: #52525b;
  cursor: pointer;
  transition: all 0.3s;
}

.ide_side_btn:hover, .ide_side_btn.active {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.deck_window_body {
  position: relative;
  flex-grow: 1;
  padding: 25px;
  overflow: hidden;
}

/* Slides Content */
.deck_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97) translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deck_slide.active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.deck_grid_layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 20px;
  height: 100%;
}

/* Deck Cards Inside Deck */
.deck_card_code, .deck_card_stat, .deck_card_feature, .deck_card_phone, .deck_card_cloud, .deck_card_seo {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}

.deck_card_code {
  font-family: monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #d4d4d8;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 15px;
  justify-content: space-between;
}

.code_editor_split {
  display: flex;
  gap: 15px;
  height: calc(100% - 30px);
}

.editor_folder_tree {
  width: 110px;
  font-size: 11.5px;
  color: #52525b;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding-right: 10px;
  user-select: none;
}

.tree_title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #a0a0ab;
}

.tree_item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 4px;
}

.tree_item.active {
  background: rgba(0, 188, 169, 0.08);
  color: #ffffff;
}

.tree_item i {
  font-size: 10px;
}

.text-cyan {
  color: #00bca9;
}

.editor_code_pane {
  flex-grow: 1;
  font-size: 12.5px;
}

.code_line {
  white-space: nowrap;
}

.editor_terminal_footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 8px;
  font-size: 11px;
  color: #71717a;
}

.term_prompt {
  color: var(--brand);
}

.term_success {
  color: #22c55e;
}

.c_keyword { color: #f43f5e; }
.c_func { color: #38bdf8; }
.c_str { color: #10b981; }

.deck_card_stat {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
}

.circular_gauge {
  position: relative;
  width: 120px;
  height: 120px;
}

.circular_gauge svg {
  transform: rotate(-90deg);
}

.gauge_bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 8;
}

.gauge_fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
}

.fill_web { stroke: #00bca9; stroke-dashoffset: 2.5; }     /* 99% */
.fill_mobile { stroke: #38bdf8; stroke-dashoffset: 50; }  /* 80% */
.fill_cloud { stroke: #a855f7; stroke-dashoffset: 12; }   /* 95% */
.fill_seo { stroke: #22c55e; stroke-dashoffset: 25; }     /* 90% */

.gauge_label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge_label strong {
  font-family: 'Ubuntu', sans-serif;
  font-size: 24px;
  color: #ffffff;
}

.gauge_label span {
  font-size: 10px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deck_card_feature {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.deck_card_feature i {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 12px;
}
#slide-mobile .deck_card_feature i { color: #38bdf8; }
#slide-cloud .deck_card_feature i { color: #a855f7; }
#slide-seo .deck_card_feature i { color: #22c55e; }

.deck_card_feature h4,
.deck_card_feature h3,
.deck_card_feature h2 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.deck_card_feature p {
  font-size: 12px;
  color: #a0a0ab;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Slide Specifics */
.deck_card_phone {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-items: center;
  padding: 15px;
}

.phone_inner {
  width: 140px;
  height: 120px;
  border: 6px solid #27272a;
  border-radius: 20px;
  position: relative;
  background: #09090b;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.phone_notch {
  width: 50px;
  height: 10px;
  background: #27272a;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.phone_screen {
  padding: 12px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone_header {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #71717a;
  align-items: center;
}

.phone_status_icons {
  display: flex;
  gap: 4px;
}

.phone_app_body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}

.phone_chart_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #a0a0ab;
}

.phone_chart_header strong {
  color: #38bdf8;
}

.phone_chart {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 35px;
}

.phone_chart .bar {
  flex-grow: 1;
  background: #38bdf8;
  border-radius: 3px;
  transition: height 0.6s ease;
}
.phone_chart .bar.h40 { height: 40%; }
.phone_chart .bar.h60 { height: 60%; }
.phone_chart .bar.h90 { height: 90%; }
.phone_chart .bar.h70 { height: 70%; }

.phone_card_widget {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #d4d4d8;
}

.text-sky {
  color: #38bdf8;
}

/* Cloud Slide Specifics */
.deck_card_cloud {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.cloud_cluster_map {
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cloud_svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.cloud_svg path {
  animation: cloudSignal 3s linear infinite;
}

@keyframes cloudSignal {
  to {
    stroke-dashoffset: -20;
  }
}

.cluster_ping {
  font-family: monospace;
  font-size: 9.5px;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cluster_ping::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
  display: inline-block;
  animation: pulsating 1.5s infinite alternate;
}

/* SEO Slide Specifics */
.deck_card_seo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  justify-content: center;
  padding: 15px;
}

.serp_snippet_card {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.serp_header {
  font-size: 9px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.serp_query {
  font-size: 11px;
  color: #d4d4d8;
  font-family: monospace;
  margin-bottom: 8px;
}

.serp_result {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.serp_url {
  font-size: 10px;
  color: #a0a0ab;
}

.serp_url i {
  font-size: 8px;
}

.serp_title {
  font-size: 12px;
  color: #22c55e;
  font-weight: 700;
  text-decoration: none;
}

.serp_desc {
  font-size: 10px;
  color: #71717a;
  line-height: 1.4;
}

/* Floating Particles Background */
.hero_animated_particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(0, 188, 169, 0.15);
  border-radius: 50%;
  filter: blur(1px);
}

.particle.p1 { top: 20%; left: 15%; animation: particleFloat 12s infinite ease-in-out; }
.particle.p2 { top: 40%; left: 85%; animation: particleFloat 18s infinite ease-in-out 2s; width: 8px; height: 8px; }
.particle.p3 { top: 75%; left: 20%; animation: particleFloat 15s infinite ease-in-out 4s; }
.particle.p4 { top: 15%; left: 75%; animation: particleFloat 14s infinite ease-in-out 1s; width: 4px; height: 4px; }
.particle.p5 { top: 85%; left: 80%; animation: particleFloat 20s infinite ease-in-out 3s; }

/* Keyframe Animations */
@keyframes floatUp {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatDown {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatLeft {
  0% { transform: translateX(0px) translateY(0px); }
  50% { transform: translateX(-10px) translateY(-5px); }
  100% { transform: translateX(0px) translateY(0px); }
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

@keyframes spinSlow {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 188, 169, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 188, 169, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 188, 169, 0); }
}

@keyframes pulsating {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

@media (max-width: 991px) {
  .hero_split_title_creative {
    font-size: 3.5rem;
    text-align: center;
    line-height: 1.2;
  }
  .services_hero_section_split {
    height: auto !important;
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero_deck_left {
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .deck_selector_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px auto;
  }
  .deck_menu_item {
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
  }
  .item_meta {
    justify-content: center;
    gap: 8px;
  }
  .item_title {
    font-size: 13.5px;
  }
  .item_desc {
    display: none !important;
  }
  .item_progress {
    display: none !important;
  }
  .hero_split_actions_creative {
    margin-left: 0;
    width: 100%;
    max-width: 500px;
    justify-content: center;
  }
  .cyber_deck_container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero_split_title_creative {
    font-size: 2.5rem;
  }
  .deck_selector_menu {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .deck_menu_item {
    padding: 10px 12px;
  }
  .item_num {
    font-size: 11px;
  }
  .item_title {
    font-size: 12px;
  }
  .ide_left_sidebar {
    display: none !important;
  }
  .deck_card_stat {
    display: none !important;
  }
  .deck_card_feature {
    display: flex !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 14px;
    margin-top: 5px;
  }
  .deck_grid_layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  .cyber_deck_container {
    height: 380px !important;
    min-height: auto;
    padding: 16px;
    overflow: hidden;
  }
  .editor_folder_tree {
    display: none !important;
  }
  .deck_card_code, .deck_card_phone, .deck_card_cloud, .deck_card_seo {
    width: 100%;
    margin: 0;
    padding: 16px;
    border-radius: 16px;
    min-height: auto;
  }
  .deck_card_code {
    font-size: 11px !important;
  }
  .editor_code_pane, .editor_terminal_footer {
    white-space: normal !important;
    word-break: break-all !important;
  }
  .phone_inner {
    width: 100%;
    max-width: 160px;
    height: 120px;
    margin: 0 auto;
  }
  .hero_split_actions_creative {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero_split_actions_creative a {
    width: 100%;
    max-width: 240px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 12px;
    border-radius: 8px;
  }
  .accordion-header h1 {
    font-size: 2.4rem;
  }
  .accordion-header p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

/* Ambient Background Glow & Watermark */
.service-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0, 188, 169, 0.15) 0%, transparent 70%), url('../images/Alan_impression.png') center center no-repeat;
  background-size: 100% 100%, 60% auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.accordion-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tech category tag comment */
.accordion-header::before {
  content: '// CAPABILITIES';
  color: var(--brand);
  font-family: monospace;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-weight: 700;
  display: block;
  text-shadow: 0 0 10px rgba(0, 188, 169, 0.3);
}

.accordion-header h1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 0;
}

.accordion-header h1 span {
  background: linear-gradient(135deg, #00bca9 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.accordion-header p {
  color: #a0a0ab;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-top: 15px;
  max-width: 600px;
  line-height: 1.6;
  font-family: 'Ubuntu', sans-serif;
}

/* Glowing layout separator line */
.accordion-header::after {
  content: '';
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin-top: 20px;
  display: block;
}

.accordion-container {
  display: flex;
  width: 96vw;
  max-width: 1600px;
  height: 70vh;
  margin: 0 auto;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.accordion-panel {
  position: relative;
  flex: 1;
  border-radius: 40px;
  background: #111;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Subtle individual panel gradients with transparent background images */
.panel-1 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(0,26,23,0.7) 100%), url('../images/website-developement-saudi-bg.png') center/cover no-repeat; }
.panel-2 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(23,11,36,0.7) 100%), url('../images/mobile-apps-developement-bg.png') center/cover no-repeat; }
.panel-3 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(36,19,5,0.7) 100%), url('../images/domain-web-hosting-saudi-bg.png') center/cover no-repeat; }
.panel-4 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(38,5,21,0.7) 100%), url('../images/domain-registration-img.png') center/cover no-repeat; }
.panel-5 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(5,25,38,0.7) 100%), url('../images/digital-marketing-bg.png') center/cover no-repeat; }
.panel-6 { background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(10,33,17,0.7) 100%), url('../images/outdoor-advertising-in-saudi-arabia.png') center/cover no-repeat; }

.accordion-panel:hover {
  flex: 10;
  border-color: rgba(0, 188, 169, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.panel-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.1);
  transition: opacity 0.5s;
  z-index: 1;
}

.accordion-panel:hover .panel-overlay {
  opacity: 0;
}

/* The vertical text shown when collapsed */
.panel-title-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  white-space: nowrap;
  letter-spacing: 3px;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 45px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
  z-index: 2;
  text-transform: uppercase;
}

.accordion-panel:hover .panel-title-vertical {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.5);
}

/* The content shown when expanded */
.panel-content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.5s ease 0.1s;
  z-index: 3;
  position: absolute;
}

.accordion-panel:hover .panel-content-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.panel-left-icon {
  flex: 0 0 150px;
  display: flex;
  justify-content: center;
}

.panel-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0, 188, 169, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--brand);
  animation: spinSlow 20s linear infinite;
}

.panel-icon-circle img {
  width: 50px;
  filter: brightness(0) invert(1);
  animation: spinSlowReverse 20s linear infinite;
}

@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes spinSlowReverse { 100% { transform: rotate(-360deg); } }

.panel-text-content {
  flex: 1;
  padding-left: 50px;
}

.panel-text-content h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
}

.panel-text-content h2 span {
  color: var(--brand);
}

.panel-text-content h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 25px;
  font-weight: 400;
}

.panel-text-content p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 800px;
}

.btn-explore {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 40px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 30px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0%; height: 100%;
  background: var(--brand);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-explore:hover::before {
  width: 100%;
}

.btn-explore:hover {
  color: #000;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 188, 169, 0.3);
}

/* Responsive Fallback to Vertical Accordion */
@media (max-width: 1024px) {
  .accordion-container {
    flex-direction: column;
    height: auto;
  }
  .accordion-panel {
    min-height: 100px;
    flex: none;
    border-radius: 20px;
  }
  .accordion-panel:hover {
    min-height: 600px;
    flex: none;
  }
  .panel-title-vertical {
    transform: none;
    left: 40px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
  }
  .accordion-panel:hover .panel-title-vertical {
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
  }
  .panel-content-wrapper {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  .panel-left-icon {
    flex: 0 0 120px;
    margin-bottom: 30px;
  }
  .panel-text-content {
    padding-left: 0;
  }
  .panel-text-content h2 {
    font-size: 2.5rem;
  }
}

/* Redesigned Light Accordion FAQ Section */
.service_faq_section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Ubuntu', sans-serif;
  z-index: 2;
  background: #f8fafc !important;
  width: 100%;
}

.faq_section_header {
  margin-bottom: 60px;
}

.faq_section_header h2 {
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 3.5rem;
  color: #0f172a;
  margin-top: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq_section_header h2 span {
  color: var(--brand);
}

.faq_section_header .section_subtitle {
  text-align: center;
  font-size: 16px;
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq_accordion_wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.faq_accordion_item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq_accordion_item:hover {
  border-color: rgba(0, 188, 169, 0.4);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.faq_accordion_item.active {
  background: #f0fdfa;
  border-color: var(--brand);
  box-shadow: 0 15px 35px rgba(0, 188, 169, 0.06);
}

.faq_accordion_header {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  gap: 20px;
}

.faq_question_num {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.8;
}

.faq_question_title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  flex-grow: 1;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq_accordion_item:hover .faq_question_title,
.faq_accordion_item.active .faq_question_title {
  color: var(--brand);
}

/* Morphing Icon */
.faq_action_icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.faq_accordion_item:hover .faq_action_icon,
.faq_accordion_item.active .faq_action_icon {
  background: rgba(0, 188, 169, 0.1);
  border-color: var(--brand);
}

.faq_icon_plus,
.faq_icon_minus {
  position: absolute;
  font-size: 12px;
  color: #475569;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq_icon_plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq_icon_minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq_accordion_item.active .faq_icon_plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq_accordion_item.active .faq_icon_minus {
  opacity: 1;
  transform: rotate(0deg);
  color: var(--brand);
}

/* Accordion Content Panel */
.faq_accordion_content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, padding 0.4s ease;
  padding: 0 40px 0 78px;
}

.faq_accordion_item.active .faq_accordion_content {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 30px;
}

.faq_accordion_content p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Premium CTA Section Styles (Asymmetric Split - Dark Theme) */
.premium_cta_section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  font-family: 'Ubuntu', sans-serif;
  background: transparent !important;
  width: 100%;
}

.cta_wrapper {
  position: relative;
  background: radial-gradient(circle at 0% 0%, rgba(0, 188, 169, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border: 1px solid #00bca9 !important;
  border-radius: 32px;
  padding: 80px 60px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

.cta_glow_element {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 188, 169, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(50px);
}

.cta_grid_align {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta_tag {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
  background: rgba(0, 188, 169, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
}

.cta_text_col h2 {
  color: #ffffff !important;
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.cta_text_col p {
  color: #cbd5e1 !important;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta_benefits_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta_benefits_list li {
  color: #ffffff !important;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.cta_benefits_list li i {
  color: var(--brand);
  font-size: 16px;
}

/* Right Column Capsule Card */
.cta_capsule_card {
  position: relative;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta_capsule_card:hover {
  border-color: rgba(0, 188, 169, 0.25) !important;
  box-shadow: 0 25px 50px rgba(0, 188, 169, 0.05) !important;
}

.capsule_inner h3 {
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.capsule_inner p {
  color: #a0a0ab !important;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cta_action_btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn_cta_primary {
  background: var(--brand);
  color: #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 16px 28px;
  border-radius: 12px;
  border: 1px solid var(--brand);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 188, 169, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn_cta_primary i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn_cta_primary:hover {
  background: transparent;
  color: var(--brand) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 169, 0.5);
}

.btn_cta_primary:hover i {
  transform: translateX(4px);
}

.btn_cta_secondary {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 16px 28px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn_cta_secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .cta_grid_align {
    flex-direction: column;
    align-items: stretch;
  }
  .cta_text_col {
    margin-bottom: 40px;
    text-align: center;
  }
  .cta_tag {
    margin-bottom: 12px;
  }
  .cta_benefits_list {
    display: inline-block;
    text-align: left;
  }
  .cta_wrapper {
    padding: 50px 30px;
  }
  .faq_accordion_header {
    padding: 20px 25px;
    gap: 15px;
  }
  .faq_question_num {
    font-size: 16px;
  }
  .faq_question_title {
    font-size: 16px;
  }
  .faq_accordion_content {
    padding: 0 25px 0 56px;
  }
  .faq_accordion_item.active .faq_accordion_content {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .service_faq_section {
    padding: 80px 0;
  }
  .premium_cta_section {
    padding: 80px 0;
  }
  .cta_text_col h2 {
    font-size: 32px;
  }
  .cta_capsule_card {
    padding: 30px 20px;
  }
  .faq_section_header h2 {
    font-size: 2.8rem;
  }
}

/* ======================= Mobile Creative Enhancements ======================= */
@media (max-width: 991px) {
    /* --- Option 1: Holographic Cyber Deck --- */
    .cyber_deck_container {
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* Digital scanlines background */
    .cyber_deck_container::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
        background-size: 100% 4px, 6px 100%;
        z-index: 10;
        pointer-events: none;
        opacity: 0.8;
    }
    
    /* Hologram flickering animation */
    .cyber_deck_container.glitch-active {
        animation: holoFlicker 0.25s linear infinite;
    }
    
    @keyframes holoFlicker {
        0% { opacity: 0.96; filter: hue-rotate(0deg) brightness(1.2) contrast(1.1); }
        20% { opacity: 0.88; filter: hue-rotate(5deg) brightness(0.8); }
        40% { opacity: 0.98; filter: hue-rotate(0deg) brightness(1.3); }
        60% { opacity: 0.92; filter: hue-rotate(-5deg) brightness(0.9); }
        80% { opacity: 0.99; filter: hue-rotate(0deg) brightness(1.1); }
        100% { opacity: 0.95; filter: hue-rotate(0deg) brightness(1); }
    }

    .deck_menu_item:active {
        transform: scale(0.96) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
}

@media (max-width: 767px) {
    /* --- Option 2: Floating Glassmorphic Scroll Cards & Zoom --- */
    .scroll-services-wrapper {
        background: #05050a !important;
        padding-bottom: 40px !important;
    }

    .scroll-services-wrapper .header h1 {
        color: #ffffff !important;
    }

    .scroll-services-wrapper .header i.fa {
        color: #00bca9 !important;
    }

    .scroll-services-wrapper .section {
        height: auto !important;
        margin-bottom: 60px !important;
        padding: 0 15px !important;
        overflow: visible !important;
    }

    /* Reset absolute positioning, floats, transitions, and transforms causing horizontal sliding animations */
    .scroll-services-wrapper .section .left, 
    .scroll-services-wrapper .section .middle, 
    .scroll-services-wrapper .section .right {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
        width: 100% !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .scroll-services-wrapper .section.animate .left,
    .scroll-services-wrapper .section.animate .right {
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .scroll-services-wrapper .section .left .content, 
    .scroll-services-wrapper .section .middle .content, 
    .scroll-services-wrapper .section .right .content {
        position: static !important;
        transform: none !important;
        top: auto !important;
    }

    .scroll-services-wrapper .section .middle {
        height: 240px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .scroll-services-wrapper .section .middle img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .scroll-services-wrapper .section .title {
        width: calc(100% - 30px) !important;
        margin: -50px auto 0 auto !important;
        float: none !important;
        position: relative !important;
        z-index: 5 !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
        background: rgba(15, 15, 25, 0.75) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        text-align: center !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    }

    /* Transparent colored glowing borders for each service */
    .scroll-services-wrapper .section:nth-child(even) .title {
        background: rgba(15, 15, 25, 0.75) !important;
    }
    
    .scroll-services-wrapper .section:nth-child(3n) .title {
        background: rgba(15, 15, 25, 0.75) !important;
    }

    /* Web Development (Service 1) & Domain (Service 4) */
    .scroll-services-wrapper .section:nth-child(1) .title,
    .scroll-services-wrapper .section:nth-child(4) .title,
    .scroll-services-wrapper .section:nth-child(7) .title {
        border: 1px solid rgba(0, 188, 169, 0.25) !important;
        box-shadow: 0 20px 40px rgba(0, 188, 169, 0.08), 0 0 15px rgba(0, 188, 169, 0.03) !important;
    }

    /* Apps Development (Service 2) & Marketing (Service 5) */
    .scroll-services-wrapper .section:nth-child(2) .title,
    .scroll-services-wrapper .section:nth-child(5) .title,
    .scroll-services-wrapper .section:nth-child(8) .title {
        border: 1px solid rgba(56, 189, 248, 0.25) !important;
        box-shadow: 0 20px 40px rgba(56, 189, 248, 0.08), 0 0 15px rgba(56, 189, 248, 0.03) !important;
    }

    /* Web Hosting (Service 3) & Outdoor Advertising (Service 6) */
    .scroll-services-wrapper .section:nth-child(3) .title,
    .scroll-services-wrapper .section:nth-child(6) .title,
    .scroll-services-wrapper .section:nth-child(9) .title {
        border: 1px solid rgba(168, 85, 247, 0.25) !important;
        box-shadow: 0 20px 40px rgba(168, 85, 247, 0.08), 0 0 15px rgba(168, 85, 247, 0.03) !important;
    }

    .scroll-services-wrapper .section .title h2 {
        font-family: 'Ubuntu', sans-serif !important;
        font-size: 24px !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 12px !important;
    }

    /* Title color branding matching accents */
    .scroll-services-wrapper .section:nth-child(1) .title h2,
    .scroll-services-wrapper .section:nth-child(4) .title h2,
    .scroll-services-wrapper .section:nth-child(7) .title h2 { color: #00bca9 !important; }
    .scroll-services-wrapper .section:nth-child(2) .title h2,
    .scroll-services-wrapper .section:nth-child(5) .title h2,
    .scroll-services-wrapper .section:nth-child(8) .title h2 { color: #38bdf8 !important; }
    .scroll-services-wrapper .section:nth-child(3) .title h2,
    .scroll-services-wrapper .section:nth-child(6) .title h2,
    .scroll-services-wrapper .section:nth-child(9) .title h2 { color: #a855f7 !important; }

    .scroll-services-wrapper .section .title p {
        display: block !important;
        font-size: 13.5px !important;
        color: #a0a0ab !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .scroll-services-wrapper .section .title .btn-primary {
        background: transparent !important;
        padding: 12px 24px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        border-radius: 8px !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
    }

    .scroll-services-wrapper .section:nth-child(1) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(4) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(7) .title .btn-primary {
        border: 1px solid #00bca9 !important;
        color: #00bca9 !important;
    }
    .scroll-services-wrapper .section:nth-child(2) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(5) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(8) .title .btn-primary {
        border: 1px solid #38bdf8 !important;
        color: #38bdf8 !important;
    }
    .scroll-services-wrapper .section:nth-child(3) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(6) .title .btn-primary,
    .scroll-services-wrapper .section:nth-child(9) .title .btn-primary {
        border: 1px solid #a855f7 !important;
        color: #a855f7 !important;
    }

    .scroll-services-wrapper .section .title .btn-primary:active {
        transform: scale(0.95) !important;
    }
}

/* --- Extracted from service.php for W3C compliance --- */
.scroll-services-wrapper {
   font-family: 'Roboto', sans-serif;
   background: #000000;
   width: 100%;
}
.scroll-services-wrapper .header {
   background: transparent;
   color: #0f172a;
   padding: 30px;
   text-align:center;
}
.scroll-services-wrapper .header a {
   color: #0f172a;
}
@media (min-width: 768px) {
  .scroll-services-wrapper .header {
      padding: 50px 30px;
   }
}
.scroll-services-wrapper .header i.fa {
   font-size: 3em;
}
.scroll-services-wrapper .bounce {
   -webkit-animation-name: bounce;
   animation-name: bounce;
   -webkit-transform-origin: center bottom;
   transform-origin: center bottom;
   animation-iteration-count: infinite;
   -webkit-animation-iteration-count: infinite;
}
.scroll-services-wrapper .animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.scroll-services-wrapper {
   font-family: 'Roboto', sans-serif;
}

.scroll-services-wrapper .section {
   width: 100%;
   position: relative;
}

.scroll-services-wrapper .section .left, 
.scroll-services-wrapper .section .middle, 
.scroll-services-wrapper .section .right {
   width:100%;
   display: block;
   color: #fff;
   box-sizing: border-box;
   left: 0;
   padding: 30px;
   text-align:center;
   overflow:hidden;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
}

@media (min-width: 480px) {
   .scroll-services-wrapper .section .left .content, 
   .scroll-services-wrapper .section .middle .content, 
   .scroll-services-wrapper .section .right .content {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
   }
   
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      width: 50%;
      font-size:0.9em;
      padding: 10px;
      left: 0;
      float: left;
      position: absolute;
   }
}

@media (min-width: 768px) {
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      width: 33.33333%;
      left: 33.33%;
      padding: 10px;
   }
}

@media (min-width: 992px) {
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      padding: 30px;
      font-size: 1em;
   }
}

.scroll-services-wrapper .section.animate .left {
   left:0;
}
@media (min-width: 480px) {
   .scroll-services-wrapper .section.animate .left {
      left: 50%;
   }
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section.animate .left {
      left:0;
   }
}

.scroll-services-wrapper .section.animate .right {
   left:0;
}
@media (min-width: 480px) {
   .scroll-services-wrapper .section.animate .right {
      left: 50%;
   }
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section.animate .right {
      left:66.66%;
   }
}

.scroll-services-wrapper .section .title {
   background: #00bca9;
}
.scroll-services-wrapper .section:nth-child(even) .title {
   background: #38bdf8;
}
.scroll-services-wrapper .section:nth-child(3n) .title {
   background: #a855f7;
}
.scroll-services-wrapper .section .title h2 {
   margin-top:0;
}
.scroll-services-wrapper .section .title p {
   line-height:1.55em;
   margin-bottom: 0.75em;
}
@media (max-width: 991px) {
   .scroll-services-wrapper .section .title p {
      display: none;
   }
}
.scroll-services-wrapper .section .title .btn-primary {
   color: #fff;
   background: rgba(0,0,0,0.2);
   padding: 10px;
   text-decoration:none;
   border-radius: 3px;
   display:inline-block;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
}
.scroll-services-wrapper .section .title .btn-primary:hover {
   background: rgba(0,0,0,0.4);
}

.scroll-services-wrapper .section .tiles {
   padding:0;
   background: #fff;
   clear:both;
   display:none;
   float:none;
}
.scroll-services-wrapper .section .tiles img {
   width:50%;
   float:left;
   height:50%;
   object-fit: cover;
   opacity: 0.7;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
   -webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   -o-filter: grayscale(100%);
}
.scroll-services-wrapper .section .tiles img:hover {
   opacity:1;
   -webkit-filter: grayscale(0%);
   -moz-filter: grayscale(0%);
   -o-filter: grayscale(0%);
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section .tiles {
        display:block;
   }
}

.scroll-services-wrapper .section .middle {
   background: slategray;
   z-index: 2;
   padding:0;
}
.scroll-services-wrapper .section .middle img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display:block;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-20px);}
    60% {-webkit-transform: translateY(-10px);}
} 
 
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* --- Extracted from service.php for W3C compliance --- */
.scroll-services-wrapper {
   font-family: 'Roboto', sans-serif;
   background: #000000;
   width: 100%;
}
.scroll-services-wrapper .header {
   background: transparent;
   color: #0f172a;
   padding: 30px;
   text-align:center;
}
.scroll-services-wrapper .header a {
   color: #0f172a;
}
@media (min-width: 768px) {
  .scroll-services-wrapper .header {
      padding: 50px 30px;
   }
}
.scroll-services-wrapper .header i.fa {
   font-size: 3em;
}
.scroll-services-wrapper .bounce {
   -webkit-animation-name: bounce;
   animation-name: bounce;
   -webkit-transform-origin: center bottom;
   transform-origin: center bottom;
   animation-iteration-count: infinite;
   -webkit-animation-iteration-count: infinite;
}
.scroll-services-wrapper .animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.scroll-services-wrapper {
   font-family: 'Roboto', sans-serif;
}

.scroll-services-wrapper .section {
   width: 100%;
   position: relative;
}

.scroll-services-wrapper .section .left, 
.scroll-services-wrapper .section .middle, 
.scroll-services-wrapper .section .right {
   width:100%;
   display: block;
   color: #fff;
   box-sizing: border-box;
   left: 0;
   padding: 30px;
   text-align:center;
   overflow:hidden;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
}

@media (min-width: 480px) {
   .scroll-services-wrapper .section .left .content, 
   .scroll-services-wrapper .section .middle .content, 
   .scroll-services-wrapper .section .right .content {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
   }
   
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      width: 50%;
      font-size:0.9em;
      padding: 10px;
      left: 0;
      float: left;
      position: absolute;
   }
}

@media (min-width: 768px) {
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      width: 33.33333%;
      left: 33.33%;
      padding: 10px;
   }
}

@media (min-width: 992px) {
   .scroll-services-wrapper .section .left, 
   .scroll-services-wrapper .section .middle, 
   .scroll-services-wrapper .section .right {
      padding: 30px;
      font-size: 1em;
   }
}

.scroll-services-wrapper .section.animate .left {
   left:0;
}
@media (min-width: 480px) {
   .scroll-services-wrapper .section.animate .left {
      left: 50%;
   }
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section.animate .left {
      left:0;
   }
}

.scroll-services-wrapper .section.animate .right {
   left:0;
}
@media (min-width: 480px) {
   .scroll-services-wrapper .section.animate .right {
      left: 50%;
   }
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section.animate .right {
      left:66.66%;
   }
}

.scroll-services-wrapper .section .title {
   background: #00bca9;
}
.scroll-services-wrapper .section:nth-child(even) .title {
   background: #38bdf8;
}
.scroll-services-wrapper .section:nth-child(3n) .title {
   background: #a855f7;
}
.scroll-services-wrapper .section .title h2 {
   margin-top:0;
}
.scroll-services-wrapper .section .title p {
   line-height:1.55em;
   margin-bottom: 0.75em;
}
@media (max-width: 991px) {
   .scroll-services-wrapper .section .title p {
      display: none;
   }
}
.scroll-services-wrapper .section .title .btn-primary {
   color: #fff;
   background: rgba(0,0,0,0.2);
   padding: 10px;
   text-decoration:none;
   border-radius: 3px;
   display:inline-block;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
}
.scroll-services-wrapper .section .title .btn-primary:hover {
   background: rgba(0,0,0,0.4);
}

.scroll-services-wrapper .section .tiles {
   padding:0;
   background: #fff;
   clear:both;
   display:none;
   float:none;
}
.scroll-services-wrapper .section .tiles img {
   width:50%;
   float:left;
   height:50%;
   object-fit: cover;
   opacity: 0.7;
   -moz-transition:    0.3s ease-in-out all;
   -o-transition:      0.3s ease-in-out all;
   -webkit-transition: 0.3s ease-in-out all;
   transition:         0.3s ease-in-out all;
   -webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   -o-filter: grayscale(100%);
}
.scroll-services-wrapper .section .tiles img:hover {
   opacity:1;
   -webkit-filter: grayscale(0%);
   -moz-filter: grayscale(0%);
   -o-filter: grayscale(0%);
}
@media (min-width: 768px) {
   .scroll-services-wrapper .section .tiles {
        display:block;
   }
}

.scroll-services-wrapper .section .middle {
   background: slategray;
   z-index: 2;
   padding:0;
}
.scroll-services-wrapper .section .middle img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display:block;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-20px);}
    60% {-webkit-transform: translateY(-10px);}
} 
 
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}
