/*
Theme Name: AEO Labs
Theme URI: https://wordpress.org/themes/aeolabs/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: AEO Labs
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/


.char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  font-weight: 600;
}

 h2 {
  overflow: hidden;
}
.hero{
  background: url(./assets/images/hero-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-heading {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
}

.hero-heading span.green {
  color: #94F721;
}

.hero-subtext {
  color: #fff;
  font-size: 24px;
  margin-top: 10px;
  max-width: 900px;
  font-weight: 600;
  line-height: 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.btn-custom {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 0;
  border: none;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
  transition: 0.3s ease;
}

.btn-custom:hover {
  background: #94F721;
  color: #000;
}

.dashboard-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 30px;
  flex-wrap: wrap;
}
.dashboard-container-inner{
  display: flex;
  justify-content: center;
  align-items: center;
/* Glass Morphism (more transparent) */
    background: rgba(255, 255, 255, 0.05); /* very light tint */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(25px);

    border-radius: 20px;

} 

.panel {
 
}


.gif-container {
  width: 100%;
}

.gif-container img {
  width: 550px;
  height: 440px;

}

.center-gif img {
  width: 270px !important;
  height: 410px !important;
}

/* FADE-IN FADE-OUT SUCCESS MESSAGE */
.cta-success {
  opacity: 0;
  transition: opacity 0.8s ease;
  color: #94F721;
  margin-top: 10px;
  font-weight: 600;
  pointer-events: none;
}

.cta-success.show {
  opacity: 1;
}
.hero-cta-bar {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 8px;

  display: flex;
  align-items: center;
  gap: 10px;
  width: 480px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-input {
  flex: 1;
  padding: 14px 18px;
  background: #303030;
  border: none;
  font-size: 14px;
  outline: none;
}

.cta-input::placeholder {
  color: #757575;
}

.cta-btn-green {
  background: #94F721;
  color: #000;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.cta-btn-green:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .hero-cta-bar {
    flex-direction: column;
    padding: 12px;
    padding: 0 60px;
        background: none;
        border: none;
  }
  .cta-btn-green {
    width: 100%;
  }
  .cta-input {
    width: 100%;
  }
}
/* Responsive Styles */

/* For screens 1400px and below */
@media (max-width: 1400px) {
  .hero-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1200px) {
  .gif-container img {
  width: 450px;
  height: 340px;

}

.center-gif img {
  width: 230px !important;
  height: 370px !important;
}
}
/* For screens 992px and below */
@media (max-width: 992px) {
  .hero-section {
    justify-content: center;
    padding-top: 50px;
  }
  .hero-heading {
    font-size: 38px;
  }
  .hero-subtext {
    font-size: 18px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .dashboard-container {
    flex-direction: column; /* Stacks the panels vertically on smaller screens */
  }
   .gif-container img {
  width: 350px;
  height: 240px;

}

.center-gif img {
  width: 130px !important;
  height: 270px !important;
}
}

/* For screens 767px and below */
@media (max-width: 767px) {
  .hero-heading {
    font-size: 32px;
    line-height: 1.1;
  }
  .hero-subtext {
    font-size: 16px;
    line-height: 22px;
  }
  .btn-custom {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
  .dashboard-container {
    gap: 20px; /* Adds spacing between stacked panels */
  }
  .gif-container img {
  width: 250px;
  height: 140px;
 
}

.center-gif img {
  display: none;
}
}

/* For screens 575px and below */
@media (max-width: 575px) {
  .hero-section {
    padding-top: 50px;
    gap: 20px;
  }
  .hero-heading {
    font-size: 28px;
    padding: 0 20px;
  }
  .hero-subtext {
    font-size: 14px;
    padding: 0 40px;
  }
  .panel {
    flex: 1 1 100%; /* Makes panels take up full width on small screens */
    margin: 10px 0;
  }
  .gif-container img {
  width: 200px;
  height: 140px;
 
}
}
/*=========================================================================================
===========================================================================================
===============================brands-section============================================*/
   /* --- Original User CSS START --- */
        .brands-section {
            max-width: 950px;
            margin: 0 auto;
            text-align: center;
            padding: 80px 0;
            overflow-x: hidden; /* Prevent horizontal scrollbar from marquee */
        }

        .brands-section img.logo-main {
            width: 120px;
            margin-bottom: 5px;
        }

        .quote {
            font-size: 32px;
            font-weight: 600;
            line-height: 58px;
            color: #fff;
            margin-bottom: 0px;
        }

        .author {
            color: #94F721;
            font-size: 24px;
            font-weight: 600;
        }

        .sub-heading {
            font-size: 16px;
            line-height: 14px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
            margin: 40px 0 20px;
        }

        /* Marquee structure replaces the original flex container setup */
        .brand-box, .platform-box {
            /* border: 1px solid #222; */
            /* Important for Marquee: fixed width and prevent shrinking */
            width: 220px;
            flex-shrink: 0; 
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
            box-sizing: border-box;
            /* Removed original max-width and flex properties */
        }

        .brand-box:hover, .platform-box:hover {
            border-color: #94F721;
        }

        .brand-box img, .platform-box img {
            max-height: 45px;
            width: auto;
            max-width: 90%;
            object-fit: contain;
            opacity: 0.8;
            transition: 0.3s ease;
        }

        .brand-box img:hover,
.platform-box img:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(83%) sepia(92%) saturate(440%) hue-rotate(36deg) brightness(105%) contrast(104%);
  /* transform: scale(1.05); */
}

        .platforms {
            margin-top: 50px;
        }
        
        /* Media Queries adjusted for the new fixed-width marquee items */
        @media (max-width: 992px) {
             /* No need for max-width percentage change here, as items have fixed width (220px) */
        }

        @media (max-width: 576px) {
            .quote {
                font-size: 18px; /* Adjusted slightly down from 16px for better mobile impact */
                line-height: 1.4;
            }
            .brand-box, .platform-box {
                width: 150px; /* Smaller width on mobile */
            }
            .brands-section{
              padding-top: 0;
            }
        }
        /* --- Original User CSS END --- */

        /* --- Marquee Specific CSS START --- */
        .marquee-wrapper {
            overflow: hidden;
            
            /* Apply a fading mask at the edges for a smoother look */
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .marquee-track {
            display: flex;
            width: fit-content; 
            white-space: nowrap;
            /* Animation properties: duration (from CSS variable), linear speed, infinite loop */
            animation: scroll-left var(--duration) linear infinite;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                /* Moves the track exactly half of its content width to loop perfectly */
                transform: translateX(-50%);
            }
        }
        
        /* Pause on hover */
        .marquee-wrapper:hover .marquee-track {
            animation-play-state: paused;
        }


/* Reverse direction animation */
@keyframes scroll-right {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
}


/* Target only the second marquee */
.platforms .marquee-track {
animation: scroll-right var(--duration) linear infinite;
}
        /* --- Marquee Specific CSS END --- */

/*=========================================================================================
===========================================================================================
===============================case-section============================================*/
        .btn_custom {
          position: relative;
          background: #94F721;
          color: #000;
          font-weight: 600;
          border: none;
          border-radius: 0;
          padding: 12px 30px;
          clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
          transition: 0.3s ease;
        }
        .card-opensea { background: url('./assets/images/case/case1.png'); background-position: center;background-repeat: no-repeat;background-size: cover; }
        .card-create {  background: url('./assets/images/case/case2.png'); background-position: center;background-repeat: no-repeat;background-size: cover; }
        .card-enter {  background: url('./assets/images/case/case3.png'); background-position: center;background-repeat: no-repeat;background-size: cover; }
        .display-3{
          font-size: 48px;
          font-weight: 600 !important;
          line-height: 58px;
        }
        .display-3 span{
          font-size: 48px;
          font-weight: 600 !important;
          line-height: 58px;
          color: #94F721;
        }
        .lead{
          font-size: 24px;
          line-height: 32px;
          font-weight: 400;
          color: #7A7A7A;
        }
        .latest-work-badge {
            background-color: #1f351e;
            color: #76ff5c;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .case-study-card {
            min-height: 558px;
            /* border-radius: 0.75rem; */
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .case-study-card:hover {
            transform: translateY(-4px);
        }

        .card-preview-content {
            position: absolute;
            inset: 0;
            padding: 1rem;
            transition: opacity 0.3s ease;
            z-index: 10;
        }
        .card-content h3{
          font-size: 42px;
          font-weight: 600;
        }
        .card-content p{
          font-size: 12px;
          font-weight: 400;
        }
        
        .case-study-card:hover .card-preview-content {
            opacity: 0;
        }

        .card-hover-details {
            position: absolute;
            inset: 0;
            padding: 2rem;
            color: #000;
            background-color: rgba(255, 255, 255, 1);
            z-index: 20;
            opacity: 0;
            transform: translateY(100%);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .case-study-card:hover .card-hover-details {
            opacity: 1;
            transform: translateY(0);
        }

        .detail-block {
            border-bottom: 1px solid #343a40;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .list-unstyled li {
            position: relative;
            padding-left: 1rem;
        }
        /*.list-unstyled li::before {*/
        /*    content: "→";*/
        /*    position: absolute;*/
        /*    left: 0;*/
        /*    color: #76ff5c;*/
        /*    font-weight: bold;*/
        /*}*/


/*=========================================================================================
===========================================================================================
===============================Why-section============================================*/
 /* ==============================
   WHY SECTION STYLING
   ============================== */
.why-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 15px ;
}

/* Section Titles */
.section-label {
  display: inline-block;
  background-color: #94F721;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: #94F721;
}

/* Grid Layout */
.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.2fr;
  gap: 5px;
  align-items: center;
}

/* ==============================
   WHY CARD STYLING
   ============================== */
.why-card {
  background-color: #070707;
  padding: 32px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #111;
  position: relative;
  transition: color 0.4s ease-in-out, background 0.4s ease-in-out;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.why-card div {
  width: 60px;
  height: 60px;
  background-color: #94F721;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.why-card .icon {
    margin-top: 8px;
  width: 28px;
  height: 28px;
  transition: all 0.4s ease-in-out;
  filter: brightness(0) invert(0); /* Normal state */
}

.why-card h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.why-card p {
  color: #7A7A7A;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

/* Hover Effect */
.why-card:hover {
  background-color: #94F721;
  color: #000;
  transform: translateY(-5px);
}

.why-card:hover div {
  background-color: #000;
}

.why-card:hover h4,
.why-card:hover p {
  color: #000;
}

.why-card:hover .icon {
  filter: brightness(0) invert(1); /* Makes white icon inside black box */
  transform: scale(1.05);
}

/* ==============================
   MIDDLE IMAGE SECTION
   ============================== */
.why-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* Guarantee Box */
.guarantee-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: #000;
  padding: 25px 30px;
  /* border-radius: 4px; */
  /* box-shadow: 0 0 15px rgba(0,0,0,0.6); */
  will-change: transform, opacity;
  transition: color 0.4s ease-in-out , background 0.4s ease-in-out;
}
.guarantee-box:hover{
  background-color: #94F721;
  color: black;
}
.guarantee-box:hover .btn-green{
  background: black;
  color: white;
}

.guarantee-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.guarantee-box p {
  color: #7A7A7A;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

/* Button */
.btn-green {
  display: inline-block;
  background-color: #94F721;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background-color: #000;
  color: #94F721;
  transform: translateY(-2px);
}

/* Right Stack */
.right-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.divider-line {
  height: 1px !important;
  width: 100% !important;
  background-color: #94F721;
  opacity: 0.6;
  margin: 25px 0 0 0;
}

/* ==============================
   RESPONSIVE STYLING
   ============================== */
@media (max-width: 992px) {
  .why-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 40px;
  }

  .why-card {
    padding: 24px;
  }

  .why-card div {
    width: 50px;
    height: 50px;
  }

  .why-card h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .why-card p {
    font-size: 15px;
  }

  .guarantee-box {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
  }
}



/*=========================================================================================
===========================================================================================
===============================How it works-section============================================*/

 .wrapper {
            width: 100%;
            min-height: 100vh;
        }
        /* Gradual blur overlays for horizontal scroll section */
.gradual-blur {
  position: absolute;
  top: 0;
  height: 100%;
  width: 8rem; /* adjust width of fade area */
  pointer-events: none;
  z-index: 50;
  opacity: 1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.3s ease;
}

.left-blur {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.right-blur {
  right: 75%;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}


        .horizontal-scroll-container {
            display: flex;
            width: 400vw;
            height: 100vh;
            overflow: hidden;
        }

        .horizontal-scroll-panel {
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .how-it-works {
            /* max-width: 900px; */
            margin: 0 auto;
            text-align: center;
            position: relative;
            padding: 0 20px;
        }

         /* Background logo positioned behind all slides */
        .bg-logo {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 400px;
            height: 400px;
            transform: translate(-50%, -50%) rotate(0deg);
            background: url('./assets/images/how/how-it-works-bg.png') no-repeat center center/contain;

            opacity: 1;
            z-index: 1;
            pointer-events: none;
            transition: transform 0.2s linear;
        }

        .how-it-works h2 {
            font-size: 133px;
            color: #fff;
            font-weight: 600;
            z-index: 2;
            line-height: 160px;
            position: relative;
            letter-spacing: -4px;
        }

        .how-it-works .loop {
            font-size: 94px;
            color: #94F721;
            font-weight: 400;
            line-height: 97px;
            margin-top: 10px;
            z-index: 2;
            position: relative;
            letter-spacing: 0px;
        }

        /* Step sections */
        .ai-train-section {
            width: 70%;
            height: 70%;
            position: relative;
            display: flex;
            align-items: center;
        }

        .ai-train-image {
            position: relative;
            background: url('./assets/images/how/1.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .IMG2 {
            background: url('./assets/images/how/2.jpg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .IMG3 {
            background: url('./assets/images/how/3.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

  .ai-train-overlay {
  position: absolute;
  left: 4%;
  top: 48%;
  background: rgba(0, 255, 0, 0.05);
  padding: 32px;
  max-width: 446px;
  height: 251px;
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(148, 247, 33, 0.2);
  box-shadow: 0 0 30px rgba(148, 247, 33, 0.1);
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.ai-train-overlay h3,
.ai-train-overlay p,
.ai-train-overlay .step-label,
.ai-train-overlay .btn_custom_how {
  transition: all 0.4s ease-in-out;
}

/* Hover effect on overlay */
.ai-train-overlay:hover {
  background: #94F721;
  color: #000;
  border-color: #94F721;
  box-shadow: 0 0 30px rgba(148, 247, 33, 0.3);
  transform: translateY(-4px);
}

/* Invert text colors inside on hover */
.ai-train-overlay:hover h3,
.ai-train-overlay:hover p {
  color: #000;
}

/* Step label switches to dark background */
.ai-train-overlay:hover .step-label {
  background-color: #000;
  color: #94F721;
}

/* Button also inverts */
.ai-train-overlay:hover .btn_custom_how {
  background: #000;
  color: #94F721;
  transform: translateY(-2px);
}

/* Base button styling */
.btn_custom_how {
  position: relative;
  background: #94F721;
  color: #000;
  width: 142px;
  height: 32px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
  transition: 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Base hover */
.btn_custom_how:hover {
  background: #b0ff4d;
  transform: translateY(-2px);
}

        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .scroll-indicator i {
            color: #94F721;
            font-size: 20px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 14px;
            color: #94F721;
        }

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

        .progress-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(148, 247, 33, 0.2);
            z-index: 100;
        }

        .progress-bar-fill {
            height: 100%;
            background: #94F721;
            width: 0%;
            transition: width 0.3s ease;
        }
@media (max-width: 992px) {
  .right-blur {
  right: 71%;
  }
  .left-blur {
    left: -60px;}

  .how-it-works h2{
    font-size: 80px
  }
  .how-it-works .loop {
    font-size: 50px;
  }
}
        @media (max-width: 768px) {
            .how-it-works h2 {
                font-size: 36px;
                line-height: 1.2;
            }
            
            .how-it-works .loop {
                font-size: 24px;
                line-height: 1.2;
            }
            
            .bg-logo {
                width: 300px;
                height: 300px;
            }
            
            .ai-train-overlay {
                left: 8%;
                padding: 20px 25px;
                max-width: 300px;
            }

            .ai-train-overlay h3 {
                font-size: 18px;
            }

            
            
            .horizontal-scroll-container {
                height: 80vh;
            }
            .right-blur {
  right: 69.1%;
  }
  .left-blur {
    left: -100px;}
    /* .ai-train-section {
    width: 80%;
    height: 55%;
    position: relative;
    display: flex;
    align-items: center;
} */

        }
         @media (max-width: 508px) {
             .ai-train-section{
                 width: 90%;
             }
             .ai-train-overlay {
        left: 9%;
        top: 25%;
             }
             /*.main-img img{*/
             /*    width: 100% !important;*/
             /*}*/
         }

/*=========================================================================================
===========================================================================================
===============================-video-testimonials-section============================================*/



    .video-testimonials-section {
      max-width: 1300px;
      margin: 100px auto;
      text-align: center;
    }

    .video-section-label {
      position: relative;
      background: #94F721;
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 0;
      width: 210px;
      padding: 12px 30px;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
      transition: 0.3s ease;
    }
    .video-section-label-head {
      display: flex;
      /* justify-content: center; */
      align-items: center;
      gap: 10px;
    }
    .video-testimonials-section div h2 {
      font-size: 48px !important;
      font-weight: 800;
      margin: 10px 0 5px;
      line-height: 58px;
      letter-spacing: -1.44px;
      color: #94F721 ;
      text-align: left;
    }

    

    .video-testimonials-section p.subtext {
      color: #aaa;
      font-size: 16px;
      margin-bottom: 60px;
      width: 36%;
    }

    .testimonial-card {
      background-color: #111;
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card img,
    .testimonial-card video {
      width: 100%;
      height: 550px;
      object-fit: cover;
      border-radius: 6px;
      transition: transform 0.4s ease;
      display: block;
    }

    .testimonial-card video {
      display: none;
    }

    .testimonial-card.playing img {
      display: none;
    }

    .testimonial-card.playing video {
      display: block;
    }

    .testimonial-card:hover img {
      transform: scale(1.05);
    }

    .play-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: #7BFF00;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}

    .testimonial-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
      text-align: left;
      z-index: 3;
    }

    .company-label {
      display: inline-block;
      background-color: #7BFF00;
      color: #000;
      font-weight: 700;
      font-size: 12px;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .testimonial-info p {
      font-size: 14px;
      color: #ccc;
      margin: 0;
    }

    .cta-button-test {
         /* position: absolute;
    bottom: 560px;
    left: 40%; */
      background: #94F721;
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 0;
      padding: 12px 30px;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
      transition: 0.3s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .cta-button-test:hover {
      background-color: white;
      color: black;
      /* border: 1px solid #fff; */
      transform: translateY(-2px);
    }

    .testimonial-info,
    .play-btn {
      transition: opacity 0.4s ease;
    }

.testimonial-card video {
  /* display: block; */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card.playing video {
  opacity: 1;
}


    @media (max-width: 992px) {
      .testimonial-card img,
      .testimonial-card video {
        height: 320px;
      }
    }

    @media (max-width: 768px) {
      .video-testimonials-section h2 {
        font-size: 32px;
      }
    }        
@media (max-width: 500px) {
    .video-section-label-head
    {
      flex-direction: column;
      justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
    }
    .video-testimonials-section p.subtext{
      width: 100%;
    text-align: left;
    }
    .team-section-label-head{
      display: flex;
      flex-direction: column;
      width: 100%;
      text-align: left;
    }
    .cta-button-test {
      margin-left: -50px;
    }
    .video-testimonials-section{
        margin-top: 0px;
    }
  }


/*=========================================================================================
===========================================================================================
===============================-product-testimonials-section============================================*/
.subtext-product {
  text-align: left;
}
.product-carousel-section { background:#000; overflow:hidden; transform:rotate(-5deg); margin-top:30px; }
.embla { overflow:hidden; position:relative; }
.embla__container { display:flex; gap:30px; will-change:transform; }
.product-card { display:flex; flex-direction:column; justify-content:space-between; gap: 20px; position:relative; width:360px; aspect-ratio:0.9; text-decoration:none; color:#072929; padding:20px; background-size:cover; background-position:center;  flex-shrink:0; transition:transform .4s ease; }
.product-card:hover { transform:scale(1.05); }
.product-card__content h3 { font-size:12px; line-height:22px; font-weight:500; margin-bottom:10px; color:#fff; }
.product-card__content p { font-size:10px; font-weight:400; line-height:15px; margin-bottom:15px; color:#fff; }
.product-card__logo { width:100px; height:auto; }
@media (max-width:768px){ .product-card{ width:300px; } }


/*=========================================================================================
===========================================================================================
===============================counter-section============================================*/
/* Fully Responsive + Bigger + Bolder + Improved Layout */

.stats-section {
  max-width: 1300px;
  margin: 9% auto;
  display: flex;
  justify-content: center;
  gap: 1px;
  background-color: #000;
  flex-wrap: wrap;
}

/* Each box */
.stat-box {
  background-color: #050505;
  border: 1px solid #111;
  flex: 1;
  padding: 45px 35px;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background-color: #0f0f0f;
  transform: translateY(-3px);
}

/* Text Alignment */
.stat-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-info small {
  color: #ccc;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Numbers */
.stat-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 60px;
  line-height: 60px;
  font-weight: 800 !important;
  color: #94f721;
}

.star-icon {
  color: #94f721;
  font-size: 32px;
  margin-top: 5px;
  font-weight: 900;
}

.stat-info small i {
  font-size: 14px;
  color: #94f721;
  font-weight: 700;
}

/* ---------------------------- */
/* TABLET RESPONSIVE            */
/* ---------------------------- */
@media (max-width: 992px) {
  .stats-section {
    padding: 20px;
  }

  .stat-box {
    padding: 40px 30px;
  }

  .stat-number {
    font-size: 50px;
  }

  .star-icon {
    font-size: 28px;
  }
}

/* ---------------------------- */
/* MOBILE RESPONSIVE            */
/* ---------------------------- */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    gap: 10px;
  }

  .stat-box {
    width: 100%;
    padding: 35px 25px;
  }

  .stat-info small {
    font-size: 16px;
  }

  .stat-number {
    font-size: 42px;
    line-height: 42px;
  }

  .star-icon {
    font-size: 24px;
  }
}

/* ---------------------------- */
/* SMALL MOBILE                 */
/* ---------------------------- */
@media (max-width: 480px) {
  .stat-box {
    padding: 28px 20px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-info small {
    font-size: 14px;
  }

  .star-icon {
    font-size: 20px;
  }
}

/*=========================================================================================
===========================================================================================
===============================team-section============================================*/


      /* 3. Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-section-label-head  {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 10px;
        }
        .section-header  div h3 {
          font-size: 48px !important;
          font-weight: 800;
          margin: 10px 0 5px;
          line-height: 58px;
          letter-spacing: -1.44px;
          /* color: #94F721 ; */

        }

        /* 4. Profile Card Styling */
        .profile-card {
            text-align: left;
            padding: 0 15px; /* Use Bootstrap padding */
        }

        .profile-img-wrap {
            position: relative;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1; /* Ensure square container */
            margin-bottom: 30px;
            overflow: hidden;
            background-color: var(--dark-black);
        }

        /* Create the crucial slanted neon gradient background effect */
        .profile-img-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 150%;
            height: 150%;
            /* Apply the gradient diagonally (approx. 45 degrees) */
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 1) 10%,          /* Dark start */
                var(--neon-green) 50%,         /* Strong green middle */
                rgba(0, 0, 0, 0.9) 90%         /* Dark end */
            );
            /* Slant the gradient for the visual effect */
            transform: translate(-10%, -10%) skewY(-8deg); 
            z-index: 1;
        }
        
        /* The image sits on top of the gradient background */
        .profile-img {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            /* Apply filter to match the high-contrast/darkened look */
            filter: grayscale(100%) brightness(0.9);
            /* Use mix-blend-mode to merge the image with the neon background */
            mix-blend-mode: luminosity; 
            transition: all 0.3s ease;
        }

        .profile-img-wrap:hover .profile-img {
             mix-blend-mode: normal;
             filter: grayscale(0%) brightness(1);
        }
        .text-content img{
          width: 100%;
          filter: grayscale(100%) brightness(0.9);
          mix-blend-mode: luminosity;
          transition: all 0.3s ease;
        }
        .text-content:hover img{
          mix-blend-mode: normal;
             filter: grayscale(0%) brightness(1);
        }



       

        /* Responsive Adjustments for Mobile */
        @media (max-width: 991.98px) {
            .testimonials-section {
                padding: 40px 0;
            }
            .profile-card {
                margin-bottom: 40px;
            }
            .main-title {
                font-size: 36px;
            }
            .main-title .neon-word {
                display: inline; /* Keep the neon word inline on smaller screens */
            }
        }
        @media (max-width: 500.98px) {
            .testimonials-section {
                padding-bottom: 0px;
            }}
/*=========================================================================================
===========================================================================================
===============================cta-section============================================*/

  .cta-section {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px 0;
      text-align: center;
      color: #fff;
    }

    .cta-overlay {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 1330px;
      height: 532px;
      background: url('./assets/images/cta-bg.png') center/cover no-repeat;
      z-index: 1;
      gap: 30px;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .cta-heading {
      font-size: 48px;
      font-weight: 700;
      line-height: 74px;
      letter-spacing: -1.92px;
      /* margin-bottom: 20px; */
      color: #fff;
    }

    .cta-subtext {
      color: #7A7A7A;
      font-size: 16px;
      line-height: 35px;
      letter-spacing: 0px;
      max-width: 500px;
      margin: 0 auto 30px auto;
    }

    .btn-cta {
      background-color: #94f721;
      color: #000;
      font-size: 12px;
      font-weight: 600;
      padding: 10px 25px;
      border: none;
      border-radius: 3px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(148, 247, 33, 0.5);
    }

    .btn-cta:hover {
      background-color: #b8ff57;
      transform: translateY(-3px);
      box-shadow: 0 0 30px rgba(148, 247, 33, 0.8);
    }
.cta-overlay {
  position: relative;
  overflow: hidden; /* ⭐ Clipping glow inside card */
}

.cta-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  background: rgba(148, 247, 33, 0.45);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  z-index: 0; /* behind content */
}


    @media (max-width: 768px) {
      .cta-heading {
        font-size: 28px;
      }
      .cta-section {
        padding: 80px 0;
        padding-top: 0px;
      }
      
    }
/*=========================================================================================
===========================================================================================
===============================text-marquee-section============================================*/

  .marquee-wrapper {
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }

    .marquee-inner {
      display: flex;
      width: max-content;
      animation: marquee 35s linear infinite;
    }

    .marquee-text {
      font-family: 'Tektur', sans-serif;
      font-size: 64px;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      margin-right: 80px; /* space between loops */
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .marquee-text { font-size: 42px; }
    }




/*=========================================================================================
===========================================================================================
===============================sprint-section============================================*/
/* ---------------------------------- */
/* MAIN SECTION BACKGROUND */
/* ---------------------------------- */
.sprint-section {
  background: url('./assets/images/pricingbg.png') center/cover no-repeat;
  padding: 60px 0 0px;
  color: #fff;
}

/* ---------------------------------- */
/* MAIN TOP HERO IMAGE */
/* ---------------------------------- */
.main-img {
  display: flex;
  justify-content: center;
}
.main-img img {
  width: 40%;       /* MORE ZOOMED OUT */
  max-width: 800px;
}

/* ---------------------------------- */
/* CARD */
/* ---------------------------------- */
.sprint-wrapper {
  margin-top: 50px;
}

.sprint-card {
  background: url('./assets/images/cardbg.png') top center/contain no-repeat;
  padding: 32px;
  max-width: 780px;              /* REDUCED WIDTH */
  margin: auto;
  text-align: left;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}

/* Logo */
.logo-container {
  width: 60px;
  height: 60px;
  /* background: #000; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: auto; */
}
.aeo-logo {
  width: 65%;
  height: auto;
}

/* ---------------------------------- */
/* TITLE */
/* ---------------------------------- */
.sprint-title {
  color: #94F721;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  margin: 10px 0 10px;
}

/* ---------------------------------- */
/* CTA BUTTON */
/* ---------------------------------- */
.cta-button-sprint {
  display: inline-block;
  background: #94F721;
  color: #000;
  font-weight: 600;
  padding: 12px 35px;
  margin: 10px 20px 0px 20px;
  width: auto;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
  text-decoration: none;
  transition: 0.3s ease;
}

/* ---------------------------------- */
/* BULLET LIST */
/* ---------------------------------- */
.sprint-list {
  text-align: left;
  max-width: 100%;       /* LESS SCREEN WIDTH */
  /* margin: auto; */
  padding-left: 25px;
  font-size: 16px;      /* Smaller bullets */
  /* line-height: 1.7; */
  margin: 0;
}
.sprint-list li {
  margin-bottom: 8px;
}

/* ---------------------------------- */
/* RESPONSIVE */
/* ---------------------------------- */
@media (max-width: 1200px) {
  .main-img img { width: 65%; }
  .sprint-card { padding: 50px 35px; }
}

@media (max-width: 992px) {
  .main-img img { width: 70%; }
  .sprint-title { font-size: 32px; }
  .sprint-list { max-width: 90%; }
}

@media (max-width: 768px) {
  .main-img img { width: 80%; }
  .sprint-card { padding: 40px 25px; }
  .sprint-title { font-size: 28px; }
  .sprint-list { font-size: 15px; }
}

@media (max-width: 576px) {
  .main-img img { width: 95%; }
  .sprint-title { font-size: 24px; }
  .sprint-card { padding: 30px 20px; 
  background: none; }
  .sprint-section{
    padding-bottom: 0px;
}
}

     
/*=========================================================================================
===========================================================================================
===============================chart-section============================================*/


    .authority-section {
      max-width: 1300px;
      margin: 100px auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 60px 80px;
      position: relative;
    }
    .authority-left-head{
      margin-top: 30px;
      margin-bottom: 30px;
      display: flex;
      justify-content: space-between;
    }
    .cta-button-know {
    background: #94F721;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    transition: 0.3s 
ease;
    text-decoration: none;
    margin-bottom: 30px;
}

    .authority-left h2 {
      font-size: 42px;
      font-weight: 700;
      margin: 0;
      
    }

    .authority-left h2 span {
      color: #94F721;
    }

    .authority-left h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #94F721;
    }

    .step {
      margin-bottom: 30px;
    }
    .step h5{
      display: flex;
      align-items: center; 
      gap: 10px;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
    }
    .step h5 span{
      color: #94F721;
      font-size: 46px;
      font-weight: 700;
    }

    .step p {
      color: #b5b5b5;
      font-size: 16px;
      line-height: 27px;
      margin-bottom: 0;
    }

    .chart-box {
      border-radius: 16px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: none;
      box-shadow: none;
      background: #030305;
    }

    canvas {
      width: 500px !important;
      height: 500px !important;
    }
    .authority-section-label-head {
      display: flex;
      /* justify-content: center; */
      align-items: left;
      gap: 10px;
    }
    .authority-section-label-head h2 {
      font-size: 48px !important;
      font-weight: 800;
      margin: 10px 0 5px;
      line-height: 58px;
      letter-spacing: -1.44px;
      color: #94F721 ;

    }
 
    @media (max-width: 1920px) {
  .chart-bottom{
    bottom: 13% !important;
    right: 20% !important;
    }
    .chart-top{
    right: 15% !important;
    
    }
}
@media (max-width: 1500px) {
  .chart-bottom{
    bottom: 13% !important;
    right: 20% !important;
    }
    .chart-top{
    right: 15% !important;
    
    }
}
   @media (max-width: 1200px) {
  .chart-bottom{
    bottom: 13% !important;
    right: 23% !important;
    }
    .chart-top{
    right: 20% !important;
    
    }
}
    @media (max-width: 992px) {
      .authority-section {
        grid-template-columns: 1fr;
        padding: 40px 30px;
      }
      .chart-box {
        margin-top: 40px;
      }
      canvas {
      width: 900px !important;
      height: 500px !important;
    }
    .chart-bottom{
        right: 42% !important;
        top: 100%;
    }
    .chart-top{
        right: 37% !important;
        top: 55%;
    }
    }
 @media (max-width: 768px) {
    canvas {
      margin-left: -150px;
    }
    .chart-top {
        right: 30% !important;
        top: 55%;
    }

 }
 @media (max-width: 568px) {
canvas {
      width: 400px !important;
      height: 400px !important;
      margin-left: 0;
    }
    .chart-top {
        right: 25% !important;
        top: 62%;
    }
    .chart-bottom {
        right: 35% !important;
        top: 99%;
    }
    .authority-section{
        margin-top: 0px;
    }
 }


/*=========================================================================================
===========================================================================================
===============================faq-section============================================*/




  .faq-section {
  background: #000;
  color: #fff;
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 100px 0;
  overflow: hidden;
}
.faq-row{
  /* gap: 200px; */
}

.faq-label {
  color: #94F721;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.faq-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.highlight {
  color: #94F721;
}

/* Custom Accordion — ORIGINAL PERFECT VERSION */
.custom-accordion {
  border-top: 1px solid #222;
  margin-top: 30px;
}

.acc-item {
  border-bottom: 1px solid #222;
  padding: 18px 0;
  cursor: pointer;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acc-header p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ccc;
}

.acc-item.active .acc-header p {
  color: #94F721;
}

.acc-symbol {
  color: #94F721;
  font-weight: 700;
  font-size: 18px;
  width: 20px;
  display: inline-block;
}

.acc-body {
  padding-left: 32px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  max-width: 95%;
  margin-top: 12px;
  display: none;
}

.acc-item.active .acc-body {
  display: block;
}

.faq-section-label {
      position: relative;
      background: #94F721;
      color: #000;
      font-weight: 600;
      border: none;
      border-radius: 0;
      width: 100px;
      padding: 12px 30px;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
      transition: 0.3s ease;
    }










