.elementor-94 .elementor-element.elementor-element-bc5089a{--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:-10px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94 .elementor-element.elementor-element-974752c{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94 .elementor-element.elementor-element-3040419{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94 .elementor-element.elementor-element-e7726f2{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94 .elementor-element.elementor-element-93286e4{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-94 .elementor-element.elementor-element-fbc55ba{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-93c0d47 *//* =========================================
   🎨 BRAND COLORS & RESET 
   ========================================= */
:root {
  --app-bg: #FAFBFF;          
  --text-dark: #0F172A;       
  --text-muted: #64748B;
  --accent-pink: #FF427F;     
  --accent-blue: #2563EB;     
  --accent-cyan: #06B6D4;
  --gradient-main: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; border: none !important; outline: none !important; }

body { background-color: var(--app-bg); font-family: 'Poppins', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* 1. HERO WRAPPER */
.cyber-hero-section {
  position: relative; 
  min-height: 100svh; /* svh is much better for mobile browsers */
  display: flex; align-items: center; justify-content: center;
  padding: 80px 5%; overflow: hidden;
}

/* Background Grid & Glow Effects */
.ch-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.1;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
}
.ch-bg-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; z-index: 0; }
.glow-pink { width: 50vw; height: 50vw; max-width: 500px; max-height: 500px; background: var(--accent-pink); top: -10%; right: 5%; }
.glow-blue { width: 60vw; height: 60vw; max-width: 600px; max-height: 600px; background: var(--accent-cyan); bottom: -10%; left: -10%; }

/* Container Layout */
.ch-container {
  position: relative; z-index: 10; max-width: 1250px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

/* =========================================
   📝 LEFT SIDE: TYPOGRAPHY & CTA
   ========================================= */
.ch-content { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }

.ch-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 50px;
  background: white; border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  font-size: 14px; font-weight: 600; color: var(--text-muted);
}
.ch-pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-blue); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(37,99,235, 0.5); } 50% { transform: scale(1.1); box-shadow: 0 0 10px rgba(37,99,235, 0.8); } }

.ch-title { font-size: clamp(38px, 5vw, 68px); font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; }
.ch-text-gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ch-desc { font-size: clamp(16px, 2vw, 18px); color: var(--text-muted); line-height: 1.7; max-width: 520px; }

/* The Modern CTA Button */
.ch-btn-start {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; border-radius: 50px;
  background: var(--text-dark); color: white;
  font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
}
.ch-btn-start:hover { transform: translateY(-4px); background: var(--accent-blue); box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3); }
.ch-btn-start svg { transition: transform 0.3s ease; }
.ch-btn-start:hover svg { transform: translateX(6px); }

/* =========================================
   🤖 RIGHT SIDE: CSS 3D ROBOT
   ========================================= */
.ch-3d-stage {
  position: relative; height: 500px; display: flex; justify-content: center; align-items: center;
  perspective: 1000px;
}

/* Wrapper to easily scale the entire robot for mobile */
.robot-wrapper { position: relative; width: 250px; height: 350px; display: flex; flex-direction: column; align-items: center; }

/* Main Robot Animation */
.css-robot {
  position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center;
  animation: floatRobot 4s infinite alternate ease-in-out;
  transform-style: preserve-3d;
}

/* Robot Head */
.bot-head {
  width: 150px; height: 120px; background: white;
  border-radius: 50px 50px 40px 40px;
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.04), inset 10px 10px 20px white, 0 25px 35px rgba(0,0,0,0.08);
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: lookAround 8s infinite ease-in-out;
}

/* Antenna */
.bot-antenna { position: absolute; top: -35px; display: flex; flex-direction: column; align-items: center; }
.antenna-stick { width: 5px; height: 25px; background: #E2E8F0; border-radius: 3px; }
.antenna-ball { width: 16px; height: 16px; background: var(--accent-pink); border-radius: 50%; box-shadow: 0 0 15px rgba(255, 66, 127, 0.6); animation: pulseDot 1.5s infinite alternate; }

/* Visor & Eyes */
.bot-visor {
  width: 100px; height: 50px; background: #0F172A; border-radius: 20px;
  box-shadow: inset 0 5px 12px rgba(0,0,0,0.6), 0 5px 10px rgba(0,0,0,0.1);
  display: flex; justify-content: center; align-items: center; gap: 22px; position: relative; overflow: hidden;
}
/* Cyber Eyes */
.bot-eye { width: 15px; height: 20px; background: var(--accent-cyan); border-radius: 50px; box-shadow: 0 0 20px var(--accent-cyan); animation: blinkBot 4s infinite; }

/* Cheeks */
.bot-cheek { position: absolute; width: 14px; height: 7px; background: var(--accent-pink); border-radius: 50%; top: 65%; filter: blur(3px); opacity: 0.7; }
.cheek-left { left: 15px; } .cheek-right { right: 15px; }

/* Robot Body */
.bot-body {
  width: 110px; height: 90px; background: white;
  border-radius: 20px 20px 45px 45px; margin-top: 15px;
  box-shadow: inset -10px -10px 20px rgba(0,0,0,0.04), 0 20px 30px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; z-index: 4;
}
.bot-core-light { width: 28px; height: 28px; background: var(--accent-cyan); border-radius: 50%; box-shadow: 0 0 25px var(--accent-cyan); border: 4px solid #F1F5F9; }
.bot-body-detail { width: 40px; height: 6px; background: #E2E8F0; border-radius: 10px; }

/* Detached Floating Hands */
.bot-hand {
  position: absolute; width: 32px; height: 55px; background: white;
  border-radius: 20px; top: 150px;
  box-shadow: inset -5px -5px 10px rgba(0,0,0,0.04), 0 10px 20px rgba(0,0,0,0.08);
  animation: floatHand 3s infinite alternate ease-in-out;
}
.hand-left { left: -15px; animation-delay: -1s; }
.hand-right { right: -15px; animation-delay: -2s; }

/* Anti-Gravity Platform Base */
.platform-base {
  position: absolute; bottom: -30px; width: 180px; height: 40px;
  display: flex; justify-content: center; align-items: center;
  transform: rotateX(60deg); /* 3D Perspective */
}
.platform-ring {
  width: 100%; height: 100%; border: 3px solid rgba(37, 99, 235, 0.3); border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2), inset 0 0 20px rgba(37, 99, 235, 0.2);
  animation: spinRing 4s linear infinite;
}
.platform-glow { position: absolute; width: 70%; height: 70%; background: var(--accent-cyan); border-radius: 50%; filter: blur(25px); opacity: 0.4; animation: pulseGlow 4s infinite alternate ease-in-out; }

/* Keyframes */
@keyframes floatRobot { 0% { transform: translateY(0px); } 100% { transform: translateY(-20px); } }
@keyframes floatHand { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
@keyframes blinkBot { 0%, 48%, 52%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
@keyframes lookAround { 0%, 100% { transform: translateX(0) rotate(0deg); } 25% { transform: translateX(6px) rotate(3deg); } 75% { transform: translateX(-6px) rotate(-3deg); } }
@keyframes spinRing { 100% { transform: rotate(360deg); } }
@keyframes pulseGlow { 0% { opacity: 0.3; transform: scale(0.8); } 100% { opacity: 0.6; transform: scale(1.1); } }

/* =========================================
   📱 MOBILE RESPONSIVE (Strictly Perfected)
   ========================================= */
@media (max-width: 992px) {
  .ch-container { grid-template-columns: 1fr; gap: 30px; padding-top: 20px; }
  
  /* Center Left Content */
  .ch-content { align-items: center; text-align: center; }
  .ch-desc { margin: 0 auto; }
  
  /* Scale Robot Proportionality */
  .ch-3d-stage { height: 400px; }
  .robot-wrapper { transform: scale(0.9); }
}

@media (max-width: 600px) {
  .cyber-hero-section { padding: 100px 20px 60px; min-height: auto; } /* Let it grow naturally on very small phones */
  
  .ch-title { font-size: clamp(34px, 10vw, 42px); }
  
  .ch-btn-start { width: 100%; justify-content: center; padding: 18px; } /* Big touch target */
  
  /* Perfect scaling for small screens without breaking CSS art */
  .ch-3d-stage { height: 350px; }
  .robot-wrapper { transform: scale(0.75); transform-origin: top center; } /* Shrinks smoothly */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdc2207 *//* =========================================
   🎨 BRAND COLORS & RESET
   ========================================= */
:root {
  --app-bg: #FAFBFF;          
  --card-bg: #FFFFFF;
  --text-dark: #0F172A;       
  --text-muted: #64748B;
  --accent-pink: #FF427F;     
  --accent-blue: #2563EB;     
  --accent-cyan: #06B6D4;
  --gradient-main: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; }
body { background-color: var(--app-bg); font-family: 'Poppins', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* 1. WRAPPER & BACKGROUND VFX */
.vfx-services { position: relative; padding: 120px 5%; background-color: var(--app-bg); z-index: 1; }

.vfx-bg-particles { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.vfx-particle { position: absolute; background: var(--accent-cyan); border-radius: 50%; filter: blur(50px); opacity: 0.15; animation: driftOrbs 10s infinite alternate ease-in-out; }
.p1 { width: 300px; height: 300px; top: 10%; left: -5%; background: var(--accent-pink); }
.p2 { width: 400px; height: 400px; bottom: 20%; right: -10%; background: var(--accent-blue); animation-delay: -3s; }
.p3 { width: 200px; height: 200px; top: 50%; left: 40%; background: var(--accent-cyan); animation-delay: -5s; }

@keyframes driftOrbs { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, -50px) scale(1.2); } }

.vfx-container { max-width: 1350px; margin: 0 auto; }

/* 2. HEADER & MINI CSS ROBOT */
.vfx-header { text-align: center; margin-bottom: 70px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.vfx-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 50px; background: white; border: 1px solid rgba(37, 99, 235, 0.2); font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.vfx-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-blue); animation: pulseDot 2s infinite; }

.header-title-wrapper { display: inline-flex; align-items: center; gap: 20px; position: relative; }
.vfx-title { font-size: clamp(38px, 4vw, 55px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; }
.vfx-text-gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vfx-desc { font-size: 17px; color: var(--text-muted); max-width: 650px; line-height: 1.6; }

/* Mini Bot CSS Art */
.mini-css-bot { width: 50px; height: 60px; position: relative; animation: hoverBot 3s infinite alternate ease-in-out; }
.m-head { width: 35px; height: 30px; background: white; border-radius: 10px 10px 5px 5px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); position: absolute; top: 10px; left: 7.5px; display: flex; justify-content: center; align-items: center; z-index: 2; }
.m-antenna { width: 4px; height: 8px; background: var(--accent-pink); border-radius: 2px; position: absolute; top: 2px; left: 23px; }
.m-visor { width: 25px; height: 12px; background: #0F172A; border-radius: 5px; display: flex; justify-content: center; align-items: center; gap: 4px; }
.m-eye { width: 4px; height: 6px; background: var(--accent-cyan); border-radius: 2px; box-shadow: 0 0 5px var(--accent-cyan); animation: blinkMini 4s infinite; }
.m-body { width: 25px; height: 15px; background: white; border-radius: 5px 5px 10px 10px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); position: absolute; top: 42px; left: 12.5px; z-index: 1; display: flex; justify-content: center; align-items: center; }
.m-core { width: 6px; height: 6px; background: var(--accent-blue); border-radius: 50%; }
.m-hand { width: 8px; height: 12px; background: white; border-radius: 4px; position: absolute; top: 42px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); animation: handSwing 2s infinite alternate; }
.mh-left { left: 0; } .mh-right { right: 0; animation-delay: -1s; }

@keyframes hoverBot { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes blinkMini { 0%, 48%, 52%, 100% { transform: transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
@keyframes handSwing { 0% { transform: translateY(0); } 100% { transform: translateY(-3px); } }

/* 3. AUTO-RESPONSIVE VFX GRID */
.vfx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* 4. THE VFX CARDS */
.vfx-card {
  position: relative;
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  opacity: 0; transform: translateY(40px);
  animation: fadeUpVFX 0.7s forwards ease-out;
  animation-delay: var(--d); 
}

.c-top { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }

/* The Cybernetic Scanline (VFX Magic) */
.vfx-scanline {
  position: absolute; top: -10px; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  box-shadow: 0 0 20px var(--accent-cyan);
  opacity: 0; pointer-events: none; z-index: 10;
}

/* Card Hover VFX */
.vfx-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15); 
  border-color: rgba(37, 99, 235, 0.3);
}
.vfx-card:hover .vfx-scanline { opacity: 1; animation: scanDown 2s linear infinite; }

@keyframes scanDown { 0% { top: -10px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* 5. ICONS & TYPOGRAPHY */
.vfx-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; justify-content: center; align-items: center; transition: all 0.4s ease; }
.vfx-icon svg { width: 28px; height: 28px; }

.glow-pink { background: rgba(255, 66, 127, 0.1); color: var(--accent-pink); }
.glow-blue { background: rgba(37, 99, 235, 0.1); color: var(--accent-blue); }
.glow-cyan { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); }

.vfx-card:hover .vfx-icon { transform: scale(1.1) rotate(5deg); box-shadow: 0 10px 20px currentcolor; }

.vfx-card-title { font-size: 21px; font-weight: 700; color: var(--text-dark); line-height: 1.3; transition: color 0.3s ease; }
.vfx-card-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.vfx-card:hover .vfx-card-title { color: var(--accent-blue); }

/* 6. THE "START PROJECT" BUTTON */
.vfx-card-btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  width: 100%; padding: 14px 20px;
  border-radius: 12px;
  background: var(--app-bg);
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--text-dark);
  font-size: 15px; font-weight: 600;
  transition: all 0.3s ease;
  position: relative; overflow: hidden; z-index: 1;
}

.vfx-card-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }

/* Button Hover Fill Effect */
.vfx-card-btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
  background: var(--text-dark); z-index: -1; transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.vfx-card:hover .vfx-card-btn { border-color: var(--text-dark); }
.vfx-card-btn:hover { color: white; border-color: var(--text-dark); }
.vfx-card-btn:hover::before { width: 100%; }
.vfx-card-btn:hover svg { transform: translateX(5px); }

/* Entrance Keyframe */
@keyframes fadeUpVFX { to { opacity: 1; transform: translateY(0); } }

/* 7. STRICT MOBILE FIXES */
@media (max-width: 768px) {
  .vfx-services { padding: 80px 20px; }
  .header-title-wrapper { flex-direction: column; gap: 10px; } 
  .vfx-title { font-size: clamp(34px, 8vw, 42px); }
  .vfx-grid { gap: 20px; grid-template-columns: 1fr; } 
  .vfx-card { min-height: auto; padding: 35px 25px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc015fc *//* =========================================
   🎨 BRAND COLORS & VARIABLES
   ========================================= */
:root {
  --bg-main: #FAFBFF;          
  --card-bg: #FFFFFF;
  --text-dark: #0F172A;       
  --text-muted: #64748B;
  --brand-primary: #2563EB;   
  --brand-accent: #FF427F;    
  --brand-cyan: #06B6D4;      
  --f-danger: #EF4444;        
  --brand-gradient: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-main); }

/* --- SECTION & BACKGROUND --- */
.vfx-flip-section { position: relative; padding: 100px 5%; background-color: var(--bg-main); overflow: hidden; z-index: 1; }
.brand-bg-glows { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; filter: blur(120px); opacity: 0.6; }
.glow-orb { position: absolute; border-radius: 50%; }
.orb-1 { width: 50vw; height: 50vw; background: var(--brand-primary); top: -20%; right: -10%; opacity: 0.15; animation: driftOrb1 15s ease-in-out infinite alternate; }
.orb-2 { width: 40vw; height: 40vw; background: var(--brand-accent); bottom: -15%; left: -10%; opacity: 0.1; animation: driftOrb2 12s ease-in-out infinite alternate; }

.flip-container { max-width: 1250px; margin: 0 auto; }

/* --- HEADER ANIMATION --- */
.vfx-header { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 16px; opacity: 0; animation: headerReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.vfx-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; background: white; border: 1px solid rgba(0,0,0,0.05); font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--f-danger); box-shadow: 0 0 10px var(--f-danger); animation: pulseDot 1.5s infinite ease-out; }
.lx-title-massive { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; color: var(--text-dark); margin: 0; }
.text-glitch-prob { color: var(--f-danger); text-decoration: line-through; opacity: 0.9; }
.brand-gradient-text { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.vfx-desc { font-size: 16px; color: var(--text-muted); max-width: 650px; line-height: 1.7; }

/* --- FLIP CARDS GRID & ENGINE --- */
.vfx-flip-grid-v2 { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }

.vfx-flip-card-v2 { width: 360px; height: 310px; perspective: 1500px; cursor: pointer; outline: none; opacity: 0; transform: translateY(40px); animation: fadeUpFlip 0.8s forwards ease-out; animation-delay: var(--d, 0s); transform-style: preserve-3d; }
.vfx-flip-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease; transform-style: preserve-3d; border-radius: 20px; }
.vfx-flip-card-v2:hover .vfx-flip-inner { transform: rotateY(180deg) translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.vfx-flip-front, .vfx-flip-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 20px; padding: 35px 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.4s ease; overflow: hidden; }

/* --- FRONT FACE --- */
.vfx-flip-front { background-color: white; border: 1px dashed rgba(239, 68, 68, 0.25); z-index: 2; }
.vfx-flip-card-v2:hover .vfx-flip-front { border-color: rgba(239, 68, 68, 0.6); box-shadow: 0 0 25px rgba(239, 68, 68, 0.15); }
.vfx-flip-front::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-25deg); transition: all 0.8s ease; z-index: 10; pointer-events: none; }
.vfx-flip-card-v2:hover .vfx-flip-front::before { left: 200%; }

.f-badge { position: absolute; top: 20px; left: 20px; background: rgba(239, 68, 68, 0.1); color: var(--f-danger); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1.5px; }
.f-icon { width: 55px; height: 55px; border-radius: 14px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; animation: dangerPulse 2s infinite; background: rgba(239, 68, 68, 0.05); color: var(--f-danger); border: 1px solid rgba(239, 68, 68, 0.15); }
.f-icon svg { width: 26px; height: 26px; animation: glitchIcon 4s infinite; } 
.f-title { font-size: 21px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); line-height: 1.3; }
.f-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 15px; }
.f-hint { font-size: 13px; font-weight: 700; color: var(--f-danger); display: flex; align-items: center; gap: 8px; opacity: 0.8; animation: bounceRight 1.5s infinite; }

/* --- BACK FACE --- */
.vfx-flip-back { background-color: white; transform: rotateY(180deg); border: 1px solid rgba(0,0,0,0.05); }
.b-icon, .b-title, .b-desc { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; position: relative; z-index: 5; }
.vfx-flip-card-v2:hover .b-icon { opacity: 1; transform: translateY(0) scale(1.1) rotate(5deg); transition-delay: 0.2s; }
.vfx-flip-card-v2:hover .b-title { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.vfx-flip-card-v2:hover .b-desc { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.b-badge { position: absolute; top: 20px; left: 20px; background: rgba(37, 99, 235, 0.08); color: var(--brand-primary); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1.5px; z-index: 5; }
.b-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.b-title { font-size: 21px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.b-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.brand-border-1 { border-bottom: 5px solid var(--brand-primary); }
.brand-border-1 .b-icon { background: rgba(37, 99, 235, 0.1); color: var(--brand-primary); border: 1px solid rgba(37, 99, 235, 0.2); }
.brand-border-2 { border-bottom: 5px solid var(--brand-accent); }
.brand-border-2 .b-icon { background: rgba(255, 66, 127, 0.1); color: var(--brand-accent); border: 1px solid rgba(255, 66, 127, 0.2); }
.brand-border-3 { border-bottom: 5px solid var(--brand-cyan); }
.brand-border-3 .b-icon { background: rgba(6, 182, 212, 0.1); color: var(--brand-cyan); border: 1px solid rgba(6, 182, 212, 0.2); }


/* =========================================================================
   🤖 STRICTLY SCOPED HELPER BOT CSS (ULTIMATE FIX FOR BOTH ROBOTS)
   ========================================================================= */

/* Ye block sirf unbots ko target karega jo Flip Cards ke andar hain, 
   taaki tera Bada Hero Robot bilkul safe aur apne original size me rahe! */

.vfx-flip-back .helper-bot,
.vfx-flip-back .mini-bot,
.vfx-flip-back .mini-bot-container {
  position: absolute !important; bottom: 20px !important; right: 20px !important;
  width: 40px !important; height: 50px !important; 
  display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px !important;
  animation: floatMiniBot 3s infinite alternate ease-in-out !important;
  z-index: 1 !important;
}

.vfx-flip-back .bot-head,
.vfx-flip-back .mini-bot-head { 
  width: 30px !important; height: 25px !important; 
  background: white !important; border-radius: 8px 8px 4px 4px !important; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important; 
  display: flex !important; justify-content: center !important; align-items: center !important; 
  border: 1px solid rgba(0,0,0,0.02) !important; 
  margin: 0 !important; padding: 0 !important;
}

.vfx-flip-back .bot-eyes,
.vfx-flip-back .mini-bot-eyes { 
  width: 20px !important; height: 10px !important; 
  background: var(--text-dark) !important; border-radius: 3px !important; 
  display: flex !important; justify-content: center !important; align-items: center !important; gap: 3px !important; 
  margin: 0 !important; padding: 0 !important;
  box-shadow: none !important;
}

.vfx-flip-back .bot-eyes::before, .vfx-flip-back .bot-eyes::after,
.vfx-flip-back .mini-bot-eyes::before, .vfx-flip-back .mini-bot-eyes::after { 
  content: '' !important; width: 4px !important; height: 6px !important; 
  background: var(--brand-cyan) !important; border-radius: 1px !important; 
  box-shadow: 0 0 5px var(--brand-cyan) !important; 
  animation: blinkBot 4s infinite !important; 
}

.vfx-flip-back .bot-body,
.vfx-flip-back .mini-bot-body { 
  width: 20px !important; height: 12px !important; 
  background: white !important; border-radius: 4px 4px 8px 8px !important; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important; 
  display: flex !important; justify-content: center !important; align-items: center !important; 
  border: 1px solid rgba(0,0,0,0.02) !important; 
  margin: 0 !important; padding: 0 !important;
}

.vfx-flip-back .bot-core,
.vfx-flip-back .mini-bot-core { 
  width: 6px !important; height: 6px !important; 
  background: var(--brand-primary) !important; border-radius: 50% !important; 
  box-shadow: 0 0 8px var(--brand-primary) !important; 
  animation: botCorePulse 1s infinite alternate !important; 
  margin: 0 !important; padding: 0 !important;
}

.vfx-flip-back .bot-hand,
.vfx-flip-back .mini-bot-hand { 
  position: absolute !important; width: 6px !important; height: 10px !important; 
  background: white !important; border-radius: 3px !important; 
  top: 30px !important; box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important; 
  animation: handSwing 1.5s infinite alternate !important; 
  margin: 0 !important; padding: 0 !important;
}

.vfx-flip-back .h-left, .vfx-flip-back .mh-left { left: 0 !important; right: auto !important; } 
.vfx-flip-back .h-right, .vfx-flip-back .mh-right { right: 0 !important; left: auto !important; animation-delay: -0.7s !important; }

/* --- KEYFRAMES --- */
@keyframes headerReveal { 0% { opacity: 0; transform: translateY(-30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes driftOrb1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-50px, 40px) scale(1.1); } }
@keyframes driftOrb2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -50px) scale(0.9); } }
@keyframes dangerPulse { 0%, 100% { box-shadow: 0 0 0 rgba(239, 68, 68, 0); } 50% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); } }
@keyframes pulseDot { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes glitchIcon { 0%, 98%, 100% { transform: translate(0,0); } 99% { transform: translate(1px, -1px) skewX(-2deg); } }
@keyframes bounceRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@keyframes fadeUpFlip { to { opacity: 1; transform: translateY(0); } }

@keyframes botCorePulse { 0% { transform: scale(1); box-shadow: 0 0 5px var(--brand-primary); } 100% { transform: scale(1.2); box-shadow: 0 0 15px var(--brand-accent); } }
@keyframes floatMiniBot { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes blinkBot { 0%, 48%, 52%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
@keyframes handSwing { 0% { transform: translateY(0); } 100% { transform: translateY(-3px); } }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .vfx-flip-section { padding: 80px 20px; }
  .vfx-flip-grid-v2 { gap: 20px; }
  .vfx-flip-card-v2 { width: 320px; height: 280px; }
}

@media (max-width: 600px) {
  .vfx-flip-section { padding: 100px 16px 60px; }
  .vfx-header { margin-bottom: 40px; }
  .vfx-flip-grid-v2 { gap: 16px; }
  .vfx-flip-card-v2 { width: 100%; height: 270px; } 
  .lx-title-massive { font-size: 34px; }
  .vfx-desc { font-size: 14px; }
  .vfx-flip-front, .vfx-flip-back { padding: 25px 20px; }
  .f-title, .b-title { font-size: 19px; }
  .f-desc, .b-desc { font-size: 13px; }
  .f-hint::before { content: "Tap"; display: inline; } 
  .f-hint { font-size: 13px; }
  
  /* Hiding small bots on mobile to keep layout clean */
  .vfx-flip-back .helper-bot, .vfx-flip-back .mini-bot, .vfx-flip-back .mini-bot-container { display: none !important; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-13edbef *//* =========================================
   🎨 PURE CSS BRAND DESIGN (NO GREEN)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Lato:wght@600;700&display=swap');

.brand-process-section {
  /* YOUR EXACT BRAND COLORS */
  --bg-color: #FEFDFF;
  --purple: #C581F1;
  --blue: #00D4FF; /* Pure electric blue to completely eliminate any green tint */
  --text-dark: #1A1124; /* Dark purple/black for text readability */
  --text-p: #645E6E;
  
  --brand-gradient: linear-gradient(135deg, var(--purple), var(--blue));

  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* BACKGROUND CSS ANIMATED ORBS */
.brand-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.15;
  animation: orbMove 15s infinite alternate ease-in-out;
}
.orb-1 { top: -10%; left: 0; width: 400px; height: 400px; background: var(--purple); }
.orb-2 { bottom: -10%; right: 0; width: 500px; height: 500px; background: var(--blue); animation-duration: 20s; }

@keyframes orbMove {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 100px) scale(1.2); }
}

.brand-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* HEADER */
.brand-header {
  text-align: center;
  margin-bottom: 70px;
  /* Pure CSS Entrance Animation */
  animation: cssFadeUp 1s ease-out forwards;
}

.brand-badge {
  display: inline-block;
  padding: 8px 24px;
  background: white;
  border: 1px solid rgba(197, 129, 241, 0.3);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(197, 129, 241, 0.1);
}

.brand-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.brand-text-glow {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  color: var(--text-p);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID LAYOUT (2x2 on Desktop) */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARDS */
.brand-card {
  opacity: 0; /* Hidden initially for CSS animation */
  animation: cssFadeUp 1s ease-out forwards;
}

/* Staggered CSS Animations (No JS Needed) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes cssFadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.brand-card-inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  /* Pure CSS Animated Border Gradient Hack */
  background-clip: padding-box;
}

/* Animated Border Glow on Hover */
.brand-card-inner::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: var(--brand-gradient);
  z-index: -1;
  opacity: 0.1;
  transition: opacity 0.4s ease;
}

.brand-card:hover .brand-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(197, 129, 241, 0.15);
}

.brand-card:hover .brand-card-inner::after {
  opacity: 1; /* Brightens border on hover */
}

/* BIG BACKGROUND NUMBER */
.brand-watermark {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 129, 241, 0.3);
  z-index: 0;
  transition: all 0.4s ease;
}

.brand-card:hover .brand-watermark {
  -webkit-text-stroke: 1.5px var(--blue);
  transform: scale(1.1) rotate(5deg);
}

/* HAPPY CARTOON SVGs (PURE CSS ANIMATION) */
.brand-visual {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  position: relative;
  z-index: 10;
}

.css-float {
  width: 100%; height: 100%;
  animation: svgFloat 3s infinite alternate ease-in-out;
}
.css-float-reverse {
  width: 100%; height: 100%;
  animation: svgFloat 3s infinite alternate-reverse ease-in-out;
}

@keyframes svgFloat {
  0% { transform: translateY(0px) rotate(-2deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

.css-pulse {
  animation: cssBlink 2s infinite alternate;
}

@keyframes cssBlink {
  0% { opacity: 0.3; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* TEXT CONTENT */
.brand-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  position: relative;
  z-index: 10;
}

.brand-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-p);
  margin: 0;
  position: relative;
  z-index: 10;
}

/* =========================================
   📱 MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  .brand-header { margin-bottom: 40px; }
  .brand-title { font-size: 38px; }
  .brand-grid { grid-template-columns: 1fr; gap: 25px; } /* 1 Column on Mobile */
  .brand-card-inner { padding: 30px; border-radius: 20px; }
  .brand-visual { width: 70px; height: 70px; }
  .brand-watermark { font-size: 60px; top: 15px; right: 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d6f7cca *//* =========================================
   🚀 ULTRA-ANIMATED CSS (PURE MAGIC)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Lato:wght@600;700&display=swap');

.mst-benefits-section {
  --bg-color: #FEFDFF;
  --purple: #C581F1;
  --blue: #00D4FF; /* Electric Blue */
  --text-dark: #1A1124;
  --text-muted: #645E6E;
  --brand-grad: linear-gradient(135deg, var(--purple), var(--blue));

  background-color: var(--bg-color);
  font-family: 'Lato', sans-serif;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* --- BACKGROUND ANIMATED ORBS --- */
.mst-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.15;
  animation: orbDrift 15s infinite alternate ease-in-out;
}
.mst-orb-1 { top: -10%; left: -5%; width: 500px; height: 500px; background: var(--blue); }
.mst-orb-2 { bottom: -10%; right: -5%; width: 400px; height: 400px; background: var(--purple); animation-delay: -5s; }

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 80px) scale(1.2); }
}

.mst-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  perspective: 1000px; /* Enables 3D Hover Effect on Grid */
}

/* --- HEADER ANIMATIONS --- */
.mst-header {
  text-align: center;
  margin-bottom: 70px;
  animation: popUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mst-badge {
  display: inline-block;
  padding: 8px 24px;
  background: white;
  border: 1px solid rgba(197, 129, 241, 0.4);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(197, 129, 241, 0.15);
  animation: bounceSoft 3s infinite ease-in-out;
}

.mst-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.mst-gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite; /* Text Color Motion */
  background-size: 200% auto;
}

@keyframes shineText { to { background-position: 200% center; } }

.mst-subtitle { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* --- 4-CARD GRID --- */
.mst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* --- 3D ANIMATED CARDS --- */
.mst-card-wrapper {
  opacity: 0;
  transform: translateY(50px) rotateX(-10deg);
  animation: popUp3D 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Staggering */
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes popUp3D {
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.mst-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 40px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  /* Continuous very slow float */
  animation: idleFloat 6s infinite alternate ease-in-out;
}

/* Hover: 3D Lift & Deep Glow */
.mst-card-wrapper:hover .mst-card {
  transform: translateY(-20px) scale(1.03) rotateX(5deg) rotateY(-5deg);
  box-shadow: -10px 20px 40px rgba(197, 129, 241, 0.15), 10px 20px 40px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
}

/* --- INFINITE SHIMMER LIGHT BEAM --- */
.mst-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: sweepGlass 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}
@keyframes sweepGlass { 0% { left: -100%; } 50%, 100% { left: 200%; } }

/* --- SVG ANIMATIONS (THE SOUL OF THE CARDS) --- */
.mst-icon-box {
  width: 100px; height: 100px;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 10;
}

.mst-svg { width: 100%; height: 100%; overflow: visible; }

/* SVG Keyframes Classes */
.mst-float-up { animation: floatElem 3s infinite alternate ease-in-out; }
.mst-float-down { animation: floatElem 3s infinite alternate-reverse ease-in-out; }
@keyframes floatElem { 0% { transform: translateY(-5px); } 100% { transform: translateY(5px); } }

.mst-spin-slow { transform-origin: center; animation: spin 10s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.mst-blink { transform-origin: center; animation: blinkEye 4s infinite; }
@keyframes blinkEye { 0%, 45%, 55%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } } /* Winks! */

.mst-pulse-fast { animation: pulseOp 1s infinite alternate; }
.mst-pulse-slow { animation: pulseOp 2s infinite alternate; }
@keyframes pulseOp { 0% { opacity: 0.3; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.2); } }

.mst-dash-move { stroke-dasharray: 10; animation: dashRun 1s linear infinite; }
.mst-dash-move-alt { stroke-dasharray: 10; animation: dashRun 0.8s linear infinite reverse; }
@keyframes dashRun { to { stroke-dashoffset: -20; } }

.mst-bounce-heart { animation: jumpHeart 2s infinite cubic-bezier(0.28, 0.84, 0.42, 1); }
@keyframes jumpHeart { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px) scale(1.2); } }

.mst-card:hover .mst-shake-hover { animation: shakeVFX 0.5s ease-in-out infinite; }
@keyframes shakeVFX { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-3px) rotate(-2deg); } 75% { transform: translateX(3px) rotate(2deg); } }

/* --- TEXT STYLES --- */
.mst-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  position: relative; z-index: 10;
}

.mst-card-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
  margin: 0; position: relative; z-index: 10;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
  .mst-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .mst-header { margin-bottom: 40px; }
  .mst-title { font-size: 38px; }
  .mst-grid { grid-template-columns: 1fr; gap: 25px; }
  .mst-card-wrapper { transform: translateY(20px); } /* Lighter animation for mobile */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc00f39 *//* =========================================
   🚀 CTA & POPUP FORM STYLES (PURE CSS)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Lato:wght@400;600;700&display=swap');

.mst-cta-section {
  --bg-color: #FEFDFF;
  --purple: #C581F1;
  --blue: #00D4FF;
  --text-dark: #1A1124;
  --text-muted: #645E6E;
  --brand-grad: linear-gradient(135deg, var(--purple), var(--blue));

  background-color: var(--bg-color);
  font-family: 'Lato', sans-serif;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Base CTA Styles (From Previous) */
.mst-cta-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.2; animation: orbDrift 15s infinite alternate ease-in-out; }
.orb-1 { top: -20%; left: -10%; width: 600px; height: 600px; background: var(--blue); }
.orb-2 { bottom: -20%; right: -10%; width: 500px; height: 500px; background: var(--purple); animation-delay: -5s; }
@keyframes orbDrift { to { transform: translate(60px, 60px) scale(1.1); } }

.mst-cta-container { width: 100%; max-width: 1000px; position: relative; z-index: 10; perspective: 1200px; }
.mst-cta-card {
  background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.8); border-radius: 40px; padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.04);
  transition: box-shadow 0.4s ease;
}
.mst-cta-card:hover { box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15); }

.mst-cta-shimmer {
  position: absolute; top: 0; left: -150%; width: 50%; height: 100%; pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); animation: sweepGlass 5s infinite;
}
@keyframes sweepGlass { 0% { left: -100%; } 50%, 100% { left: 200%; } }

.mst-cta-visual { width: 130px; height: 130px; margin: 0 auto 10px auto; }
.mst-svg-float { width: 100%; height: 100%; animation: floatHeavy 4s infinite alternate ease-in-out; }
@keyframes floatHeavy { to { transform: translateY(8px); } }
.mst-eye-blink { transform-origin: center; animation: eyeBlink 4s infinite; }
@keyframes eyeBlink { 0%, 45%, 55%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
.mst-heart-beat { animation: jumpAndFade 2s infinite ease-in-out; transform-origin: center; }
.delay-1 { animation-delay: 0s; } .delay-2 { animation-delay: 1s; }
@keyframes jumpAndFade { 50% { opacity: 1; transform: translateY(-10px) scale(1.1); } 100% { opacity: 0; transform: translateY(-20px) scale(0.8); } }

.mst-cta-title { font-family: 'Montserrat', sans-serif; font-size: 46px; font-weight: 800; color: var(--text-dark); margin: 0 0 20px 0; line-height: 1.2; }
.mst-gradient-text { background: var(--brand-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textShine 3s linear infinite; background-size: 200% auto; }
@keyframes textShine { to { background-position: 200% center; } }
.mst-cta-subtitle { font-size: 18px; color: var(--text-muted); max-width: 650px; margin: 0 auto 40px auto; }

.mst-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.mst-btn {
  display: flex; align-items: center; gap: 10px; padding: 16px 32px; font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 800; border-radius: 50px; text-decoration: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mst-btn svg { width: 22px; height: 22px; transition: transform 0.4s ease; }
.mst-btn:hover { transform: translateY(-5px); }
.mst-btn:hover svg { transform: scale(1.2) rotate(-10deg); }

.btn-wa { background: var(--brand-grad); color: #ffffff; box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3); border: none; }
.btn-wa:hover { box-shadow: 0 15px 30px rgba(197, 129, 241, 0.5); }
.btn-call { background: var(--blue); color: #ffffff; box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2); border: none; }
.btn-email { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-email:hover { background: var(--purple); color: #ffffff; box-shadow: 0 10px 25px rgba(197, 129, 241, 0.3); }

/* =========================================
   🌟 POPUP MODAL (FORM) DESIGN
   ========================================= */
.mst-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(26, 17, 36, 0.5); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 999999; display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.mst-modal-overlay.active { opacity: 1; visibility: visible; }

.mst-modal-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px; padding: 40px; width: 90%; max-width: 500px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(197, 129, 241, 0.2);
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mst-modal-overlay.active .mst-modal-box { transform: scale(1) translateY(0); opacity: 1; }

/* Close Button */
.mst-close-btn {
  position: absolute; top: 20px; right: 25px;
  background: rgba(197, 129, 241, 0.1); border: none; width: 40px; height: 40px;
  border-radius: 50%; color: var(--purple); cursor: pointer;
  display: flex; justify-content: center; align-items: center;
  transition: all 0.3s ease;
}
.mst-close-btn svg { width: 24px; height: 24px; }
.mst-close-btn:hover { background: var(--purple); color: #fff; transform: rotate(90deg); }

/* Header */
.mst-modal-header { text-align: center; margin-bottom: 25px; }
.mst-modal-title { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: var(--text-dark); margin: 0 0 5px 0; }
.mst-modal-subtitle { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Inputs Customization */
.mst-form { display: flex; flex-direction: column; gap: 15px; }
.mst-input-group input, .mst-input-group select, .mst-input-group textarea {
  width: 100%; padding: 14px 18px;
  background: #F8F6FA;
  border: 2px solid transparent; border-radius: 16px;
  font-family: 'Lato', sans-serif; font-size: 15px; color: var(--text-dark);
  transition: all 0.3s ease; outline: none; box-sizing: border-box;
}
.mst-input-group select { cursor: pointer; -webkit-appearance: none; appearance: none; }

/* Focus Glow (The Magic) */
.mst-input-group input:focus, .mst-input-group select:focus, .mst-input-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

/* Submit Button */
.mst-submit-btn {
  background: var(--brand-grad); color: #fff;
  border: none; border-radius: 50px; padding: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800;
  display: flex; justify-content: center; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(197, 129, 241, 0.3);
  margin-top: 10px;
}
.mst-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}
.mst-submit-btn:hover svg { transform: translateX(5px) translateY(-5px); }

/* Mobile Adjustments */
@media (max-width: 768px) {
  .mst-cta-title { font-size: 34px; }
  .mst-cta-buttons { flex-direction: column; }
  .mst-btn { width: 100%; justify-content: center; }
  .mst-modal-box { padding: 30px 20px; width: 95%; }
  .mst-modal-title { font-size: 26px; }
}/* End custom CSS */