.elementor-702 .elementor-element.elementor-element-a110dc3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-702 .elementor-element.elementor-element-c3c81e0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-23px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-702 .elementor-element.elementor-element-2f4f9d2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-23px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-28a1316 */.svc-hero {
  position: relative;
  padding: 120px 20px;
  background: #020808;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* BACKGROUND EFFECT */
.svc-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0,255,163,0.08), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(197,163,104,0.06), transparent 50%);
  animation: svcMove 10s ease-in-out infinite;
}

@keyframes svcMove {
  50% { transform: translateY(-30px); }
}

.svc-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* CONTENT */
.svc-content {
  text-align: center;
}

/* TAG */
.svc-tag {
  display: inline-block;
  color: #00ffa3;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TITLE */
.svc-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;

  background: linear-gradient(to right, #ffffff, #00ffa3, #c5a368, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: svcShine 4s linear infinite;
}

@keyframes svcShine {
  to { background-position: 200% center; }
}

/* SUBTEXT */
.svc-sub {
  color: #a0a0a0;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* BUTTONS */
.svc-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.svc-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

/* PRIMARY */
.svc-btn.primary {
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 30px rgba(0,255,163,0.2);
}

.svc-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,255,163,0.4);
}

/* OUTLINE */
.svc-btn.outline {
  border: 1px solid #00ffa3;
  color: #00ffa3;
}

.svc-btn.outline:hover {
  background: #00ffa3;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .svc-sub {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-a110dc3 */.full-stretch{
  width:100vw !important;
  max-width:100vw !important;
  
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  
  padding-left:0 !important;
  padding-right:0 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8cca282 */:root {
    --primary: #00ffa3;
    --dark: #020808;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* =======================
   SECTION BASE
======================= */
.svc-pillar-sync {
    background: var(--dark);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* SUBTLE GLASS DEPTH */
.svc-pillar-sync::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,255,163,0.04));
    pointer-events: none;
}

/* BACKGROUND GLOW */
.svc-blur-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,255,163,0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: bgMove 10s ease-in-out infinite;
}

@keyframes bgMove {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

/* =======================
   LAYOUT
======================= */
.svc-content-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* =======================
   CINEMA CONTENT
======================= */
.svc-cinema {
    position: relative;
}

.cinema-track {
    height: 350px;
    position: relative;
}

.cinema-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(-30px) scale(0.96);
    filter: blur(4px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.cinema-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
    pointer-events: all;
}

/* TEXT */
.slide-cat {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.cinema-slide h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;

    background: linear-gradient(to right, #fff, var(--primary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 5s linear infinite;
}

@keyframes textFlow {
    to { background-position: 200% center; }
}

.cinema-slide p {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    max-width: 500px;
}

/* CTA */
.btn-cinema {
    display: inline-block;
    margin-top: 40px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.btn-cinema::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.btn-cinema:hover::after {
    width: 100%;
}

/* =======================
   PILLARS
======================= */
.svc-pillar-nav {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 400px;
}

.pillar {
    flex: 1;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    padding: 20px;
    overflow: hidden;

    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* HOVER GLOW */
.pillar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,255,163,0.08), transparent);
    opacity: 0;
    transition: 0.4s;
}

.pillar:hover::after {
    opacity: 1;
}

/* ACTIVE */
.pillar.active {
    height: 100%;
    background: rgba(0,255,163,0.05);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,255,163,0.08);
}

/* TEXT */
.p-num {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary);
}

.p-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

.pillar.active .p-label {
    color: #fff;
}

/* PROGRESS */
.pillar-growth {
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.05);
    margin: 20px auto 0;
    position: relative;
}

.growth-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0,255,163,0.6);
    transition: height linear;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 991px) {

    .svc-content-wrap {
        grid-template-columns: 1fr;
    }

    .svc-pillar-nav {
        height: 150px;
    }

    .pillar {
        height: 80px;
    }

    .pillar.active {
        height: 120px;
    }

    .cinema-track {
        height: 280px;
    }

    .p-label {
        display: none;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c3c81e0 */.full-stretch{
  width:100vw !important;
  max-width:100vw !important;
  
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  
  padding-left:0 !important;
  padding-right:0 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-06d8397 */:root {
    --neon: #00ffa3;
    --dark: #020808;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
}

.circuit-process {
    background: var(--dark);
    padding: 120px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.circuit-glow {
    position: absolute;
    bottom: -10%; right: -5%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.circuit-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADER STYLING */
.circuit-header { text-align: center; margin-bottom: 80px; }
.circuit-badge { color: var(--neon); letter-spacing: 5px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.circuit-main-title { font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;

    background: linear-gradient(to right, #fff, var(--primary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 5s linear infinite
}
.circuit-main-title span { color: var(--neon); }
.circuit-desc { color: #888; max-width: 600px; margin: auto; line-height: 1.6; }

/* CIRCUIT TRACK */
.circuit-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.circuit-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: 0.5s;
}

/* NODE MARKERS */
.node-marker {
    width: 60px; height: 60px;
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 5;
    margin-bottom: 30px;
    transition: 0.5s;
}

.marker-inner { font-weight: 900; color: #444; transition: 0.5s; }
.marker-pulse {
    position: absolute; inset: -10px;
    border: 2px solid var(--neon);
    border-radius: 50%;
    opacity: 0; transform: scale(0.8);
    transition: 0.5s;
}

.circuit-node.active .node-marker { border-color: var(--neon); box-shadow: 0 0 20px rgba(0, 255, 163, 0.2); }
.circuit-node.active .marker-inner { color: var(--neon); }
.circuit-node.active .marker-pulse { opacity: 0.3; transform: scale(1); animation: nodePulse 2s infinite; }

@keyframes nodePulse { 
    0% { transform: scale(1); opacity: 0.3; } 
    100% { transform: scale(1.5); opacity: 0; } 
}

/* CONNECTOR LINES */
.circuit-line {
    flex: 0.5; height: 2px;
    background: var(--border);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.line-fill {
    position: absolute; left: 0; top: 0;
    width: 0%; height: 100%;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon);
}

/* CONTENT TRANSITIONS */
.node-content { opacity: 0.3; transform: translateY(10px); transition: 0.5s; }
.circuit-node.active .node-content { opacity: 1; transform: translateY(0); }
.node-content h3 { font-size: 20px; margin-bottom: 12px; font-weight: 800; 
    color:var(--neon);
}
.node-content p { font-size: 14px; color: #888; line-height: 1.6; padding: 0 10px; 
    color:white;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .circuit-track { flex-direction: column; align-items: center; gap: 40px; }
    .circuit-line { width: 2px; height: 40px; margin: 0; }
    .line-fill { width: 100%; height: 0%; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-2f4f9d2 */.full-stretch{
  width:100vw !important;
  max-width:100vw !important;
  
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  
  padding-left:0 !important;
  padding-right:0 !important;
}/* End custom CSS */