.elementor-6 .elementor-element.elementor-element-35b24ad{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5404b2c */:root {
      --acid-green: #8ffe09;
      --silver-chalice: #acacac;
      --heavy-metal: #2b2b2b;
      --onyx: #111111;
      --ivory: #f8f8f0;
      --transition: 0.3s cubic-bezier(.4,0,.2,1);
    }
    
    #contact .container{
        max-width: 700px!important;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { background: var(--onyx); color: var(--ivory); font-family: 'Montserrat', Arial, sans-serif; scroll-behavior: smooth; scroll-padding-top: 64px; /* Extra smooth for all scrolls */ overscroll-behavior-y: none; overflow-x: hidden; }
    body { min-height: 100vh; }
    a { color: var(--acid-green); text-decoration: none; transition: color var(--transition); }
    a:hover { color: var(--silver-chalice); }
    header {
      background: var(--heavy-metal);
      padding: 1.5rem 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.2);
      position: sticky;
      top: 0;
      z-index: 100;
      transition: background 0.3s, backdrop-filter 0.3s;
    }
    header.scrolled {
      background: rgba(20, 20, 20, 0.55);
      backdrop-filter: blur(12px) brightness(0.7);
      -webkit-backdrop-filter: blur(12px) brightness(0.7);
      box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    }
    .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
    nav { display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; font-size: 2.2rem; font-weight: 700; color: var(--acid-green); letter-spacing: 2px; }
    .logo img { height: 50px; width: auto; display: block; }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a { font-weight: 500; font-size: 1.1rem; position: relative; color: #fff !important; }
    .nav-links a::after { content: ''; display: block; width: 0; height: 2px; background: var(--acid-green); transition: width var(--transition); position: absolute; left: 0; bottom: -4px; }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--acid-green) !important; }
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 80vh;
      text-align: center;
      background: linear-gradient(120deg, rgba(17,17,17,0.95) 60%, rgba(143,254,9,0.15) 100%), url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
      background: rgb(57 57 57 / 31%);
      color: var(--acid-green);
      font-weight: 700;
      font-size: 0.92rem;
      border-radius: 1.5em;
      padding: 0.22em 0.95em 0.22em 0.7em;
      margin-bottom: 1.1rem;
      box-shadow: 0 2px 8px rgba(143,254,9,0.08);
      position: relative;
      z-index: 2;
      letter-spacing: 0.01em;
      transition: background 0.3s;
      border: none;
    }
    .hero-badge i {
      color: var(--acid-green);
      font-size: 1em;
      margin-right: 0.4em;
      filter: drop-shadow(0 0 2px var(--acid-green));
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      color: transparent;
      margin-bottom: 1rem;
      -webkit-text-stroke: 2px var(--acid-green);
      text-stroke: 2px var(--acid-green);
      text-shadow: none;
      position: relative;
    }
    .hero .highlight {
      color: #fff;
      background: linear-gradient(90deg, var(--acid-green) 30%, #fff 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      filter: drop-shadow(0 0 8px var(--acid-green));
      padding: 0 0.2em;
      -webkit-text-stroke: 2px var(--acid-green);
      text-stroke: 2px var(--acid-green);
    }
    .hero p { font-size: 1.5rem; color: var(--ivory); margin-bottom: 2rem; max-width: 600px; }
    .cta-btn {
      background: var(--acid-green);
      color: var(--onyx);
      font-weight: 700;
      font-size: 1.2rem;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      box-shadow: 0 2px 16px rgba(143,254,9,0.2);
      transition: background 0.35s cubic-bezier(.4,0,.2,1), color 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), border 0.35s cubic-bezier(.4,0,.2,1);
    }
    .cta-btn:hover {
      background: var(--onyx);
      color: var(--acid-green);
      transform: scale(0.97);
      border: 2px solid var(--acid-green);
    }
    section { padding: 5rem 0; }
    .section-title { font-size: 2.2rem; color: var(--acid-green); margin-bottom: 2rem; text-align: center; font-weight: 700; letter-spacing: 1px; }
    .services { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
    .service-card { background: var(--heavy-metal); border-radius: 18px; padding: 2rem; flex: 1 1 220px; max-width: 260px; min-width: 220px; box-shadow: 0 2px 16px rgba(0,0,0,0.12); display: flex; flex-direction: column; align-items: center; transition: transform var(--transition), box-shadow var(--transition); text-align: center; }
    .service-card:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 8px 32px rgba(143,254,9,0.15); }
    .service-card i { font-size: 2.5rem; color: var(--acid-green); margin-bottom: 1rem; }
    .service-card h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; text-align: center; }
    .service-card p { color: var(--silver-chalice); font-size: 1rem; text-align: center; }
    .testimonials {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }
    .testimonial-slider {
      display: flex;
      width: 100%;
      transition: transform 0.7s cubic-bezier(.4,0,.2,1);
    }
    .testimonial {
      background: var(--heavy-metal);
      border-radius: 18px;
      padding: 2.5rem;
      flex: 0 0 100%;
      max-width: 100%;
      box-sizing: border-box;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      text-align: center;
      position: relative;
      margin: 0 auto;
    }
    .testimonial::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-size: 4rem;
      color: var(--acid-green);
      opacity: 0.2;
      font-family: serif;
    }
    .testimonial i {
      font-size: 2rem;
      color: var(--acid-green);
      margin-bottom: 1.5rem;
    }
    .testimonial p {
      color: var(--ivory);
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .testimonial .author {
      color: var(--silver-chalice);
      font-size: 1.1rem;
      font-style: italic;
    }
    .slider-controls {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
    .slider-btn {
      background: var(--heavy-metal);
      border: 2px solid var(--acid-green);
      color: var(--acid-green);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .slider-btn:hover {
      background: var(--acid-green);
      color: var(--onyx);
    }
    .case-studies {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem 0;
    }
    .case-card {
      background: var(--heavy-metal);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .case-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 32px rgba(143,254,9,0.15);
    }
    .case-image {
      height: 200px;
      background: var(--onyx);
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }
    .case-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--acid-green), transparent);
      opacity: 0.1;
    }
    .case-card:nth-child(1) .case-image {
      background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }
    .case-card:nth-child(2) .case-image {
      background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }
    .case-card:nth-child(3) .case-image {
      background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    }
    .case-content {
      padding: 2rem;
    }
    .case-card h4 {
      color: var(--acid-green);
      font-size: 1.3rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .case-card p {
      color: var(--ivory);
      font-size: 1rem;
      line-height: 1.6;
    }
    .case-stats {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(172,172,172,0.1);
    }
    .stat {
      flex: 1;
      text-align: center;
    }
    .stat-value {
      color: var(--acid-green);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      color: var(--silver-chalice);
      font-size: 0.9rem;
    }
    .process-steps {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background: var(--acid-green);
      opacity: 0.3;
      z-index: 0;
    }
    .timeline-step {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin: 2.5rem 0;
      min-height: 120px;
      z-index: 1;
    }
    @media (min-width: 900px) {
    .timeline-step.left {
      flex-direction: row;
      justify-content: end;
    }}
    .timeline-step.right {
      flex-direction: row-reverse;
      justify-content: flex-end;
    }
    .timeline-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      background: var(--onyx);
      border: 4px solid var(--acid-green);
      border-radius: 50%;
      z-index: 2;
      box-shadow: 0 0 0 4px var(--onyx), 0 0 0 6px var(--acid-green);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow var(--transition);
    }
    .timeline-step:hover .timeline-dot {
      box-shadow: 0 0 0 8px var(--acid-green), 0 0 0 12px var(--onyx);
    }
    .step-card {
      background: var(--heavy-metal);
      border-radius: 18px;
      padding: 2rem;
      max-width: 340px;
      min-width: 220px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
      position: relative;
      z-index: 2;
      transition: transform var(--transition), box-shadow var(--transition);
      margin: 0 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .timeline-step.right .step-card {
      align-items: flex-end;
    }
    .step-card i {
      font-size: 2rem;
      color: var(--acid-green);
      margin-bottom: 1rem;
    }
    .step-card h5 {
      color: var(--ivory);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
    }
    .step-card p {
      color: var(--silver-chalice);
      font-size: 1rem;
    }
    .about-content { display: flex; flex-direction: column; align-items: center; max-width: 700px; margin: 0 auto; text-align: center; }
    .about-content p { color: var(--ivory); font-size: 1.2rem; margin-bottom: 1rem; }
    .about-content ul { list-style: none; display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
    .about-content li { color: var(--acid-green); font-size: 1.1rem; }
    .contact-form { background: var(--heavy-metal); border-radius: 18px; padding: 2.5rem; max-width: 500px; margin: 0 auto; box-shadow: 0 2px 16px rgba(0,0,0,0.10); display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-form input, .contact-form textarea { background: var(--onyx); border: 1px solid var(--silver-chalice); border-radius: 8px; padding: 1rem; color: var(--ivory); font-size: 1rem; transition: border var(--transition); }
    .contact-form input:focus, .contact-form textarea:focus { border: 1.5px solid var(--acid-green); outline: none; }
    .contact-form button { background: var(--acid-green); color: var(--onyx); font-weight: 700; font-size: 1.1rem; padding: 1rem; border: none; border-radius: 8px; cursor: pointer; transition: background var(--transition), color var(--transition); }
    .contact-form button:hover { background: var(--onyx); color: var(--acid-green); }
    .cta-section { background: linear-gradient(120deg, var(--acid-green) 60%, var(--onyx) 100%); padding: 4rem 0; text-align: center; }
    .cta-section h2 { color: var(--onyx); font-size: 2.2rem; margin-bottom: 1.5rem; font-weight: 800; }
    .cta-section .cta-btn { background: var(--onyx); color: var(--acid-green); border: 2px solid var(--acid-green); }
    .cta-section .cta-btn:hover { background: var(--acid-green); color: var(--onyx); }
    footer { background: var(--heavy-metal); color: var(--silver-chalice); text-align: center; padding: 2rem 0; font-size: 1rem; }
    @media (max-width: 900px) {
      .services, .testimonials, .case-studies, .process-steps { flex-direction: column; align-items: center; }
      .service-card, .testimonial, .case-card, .step-card { max-width: 100%; min-width: 0; }
      .process-steps {
        max-width: 100%;
      }
      .step-card {
        max-width: 90vw;
        min-width: 0;
        margin: 0 1rem;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex !important;
      }
      section {
        padding: 4rem 1rem;
      }
      #temoignages {
        padding: 4rem 1rem 0rem!important;
      }
      .testimonial-slider {
        width: 100%;
      }
      .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
      }
    }
    @media (max-width: 700px) {
      .timeline-step,
      .timeline-step.right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .step-card {
        margin: 1.5rem 0 0 0;
        align-items: center !important;
        text-align: center;
      }
      .timeline-dot {
        position: static;
        margin: 0 auto;
        left: auto;
        top: auto;
        transform: none;
      }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 2rem; }
      .section-title { font-size: 1.4rem; }
      .container { width: 98%; }
    }
    /* Animations */
    [data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
    [data-animate].visible { opacity: 1; transform: none; }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 400;
      background: rgba(34, 34, 34, 0.85); /* semi-transparent background for visibility */
      border: none;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.18);
      padding: 0;
      position: relative;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: var(--acid-green);
      margin: 4px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background: var(--heavy-metal);
      box-shadow: -2px 0 16px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      padding: 2rem 1.5rem;
      transition: right 0.3s cubic-bezier(.4,0,.2,1);
      z-index: 3000;
      overflow-y: auto;
      visibility: hidden;
      opacity: 0;
    }
    .sidebar.open {
      right: 0;
      visibility: visible;
      opacity: 1;
    }
    .sidebar a {
      color: var(--acid-green);
      font-size: 1.2rem;
      margin: 1rem 0;
      text-decoration: none;
      font-weight: 700;
      transition: color 0.3s ease;
      color: #fff !important;
    }
    .sidebar a:hover {
      color: var(--silver-chalice);
    }
    .sidebar a:hover { color: var(--acid-green) !important; }
    .close-sidebar {
      background: none;
      border: none;
      color: var(--acid-green);
      font-size: 2rem;
      align-self: flex-end;
      cursor: pointer;
      margin-bottom: 2rem;
      transition: transform 0.3s ease;
    }
    .close-sidebar:hover {
      transform: rotate(90deg);
    }
    @media (min-width: 901px) {
      .timeline-step.left .step-card {
        margin-right: 3rem;
        margin-left: 0;
        align-items: flex-start;
        text-align: left;
      }
      .timeline-step.right .step-card {
        margin-left: 3rem;
        margin-right: 0;
        align-items: flex-end;
        text-align: right;
      }
    }
    /* Overlay for sidebar */
    .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.55);
      z-index: 2000;
      transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
      opacity: 0;
    }
    .sidebar-overlay.active {
      display: block;
      opacity: 1;
    }/* End custom CSS */