/* ---------- UNIQUE CSS CLASSES WITH NUMBERS ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.heroSlider1000 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide1000 {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1.4s ease;
}

.slide1000.active1000 {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slideImg1000 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content1000,
.content2000,
.content3000 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 470px;
}

.content1000 { left: 5%; }
.content2000 { right: 5%; }
.content3000 { right: 5%; font-size: 45px; }

/* Dots */
.dots1000 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dots1000 div {
  width: 8px;
  height: 2px;
  background: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

.dots1000 .activeDot1000 {
  background: #fff;
  transform: scale(1.3);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .heroSlider1000 {
    height: 70vh;
  }

  .content1000,
  .content2000,
  .content3000 {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 60px;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
  }

  .content3000 {
    font-size: 26px;
  }

  .dots1000 {
    bottom: 20px;
  }
}

/* <!-- slider end --> */

/* About section start */
/* --------------------------------- BASE STYLES ---------------------------------- */
.common_about1000 {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #ffffff;
}

.quoteBox1000 {
  max-width: 900px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp1000 1.2s ease-out forwards;
}

/* --------------------------------- TITLE ---------------------------------- */
.quoteTitle1000 h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeIn1000 1.5s ease-out;
}

/* --------------------------------- LINE ANIMATION ---------------------------------- */
.quoteTextWrap1000 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.quoteFirst1000,
.quoteLast1000 {
  width: 0;
  height: 4px;
  background: #000;
}

.quoteFirst1000 {
  animation: expandLine1000 1.6s ease forwards;
}

.quoteLast1000 {
  margin-left: 10px;
  animation: expandLine1000 1.9s ease forwards;
}

/* --------------------------------- DESCRIPTION ---------------------------------- */
.quoteDesc1000 p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInSlow1000 2s ease forwards;
  animation-delay: 0.5s;
  padding: 0 58px;
}

/* --------------------------------- ANIMATIONS ---------------------------------- */
@keyframes fadeUp1000 {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn1000 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInSlow1000 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes expandLine1000 {
  from { width: 0; }
  to { width: 100px; }
}

/* --------------------------------- RESPONSIVE ---------------------------------- */
@media (max-width: 768px) {
  .quoteTitle1000 h2 {
    font-size: 2.1rem;
  }

  .quoteDesc1000 p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .quoteFirst1000,
  .quoteLast1000 {
    height: 3px;
  }
}

@media (max-width: 480px) {
  .quoteTitle1000 h2 {
    font-size: 1.7rem;
  }

  .common_about1000 {
    padding: 50px 15px;
  }
}

/* <!-- about end --> */

/* <!-- parallax hero Start --> */
/* ---------------- PARALLAX HERO BASE ---------------- */

/* ================= PARALLAX HERO BASE ================= */
.parallaxHero1000 {
  position: relative;
  width: 100%;
  height: 608px;
  overflow: hidden;
  background: #000;
}

/* ================= PARALLAX LAYERS ================= */
.parallaxLayer1000 {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

/* BACKGROUND */
.layerBack1000 {
  /* background-image: url("https://kineticev.in/-/images/og-ganster-returns-d-new.jpg"); */
   background-image: url("/-/images/bikes-5-new.jpg");
  transform: scale(1.05);
}

/* MID LAYER (OPTIONAL DEPTH) */
.layerMid1000 {
  /* background-image: url("https://kineticev.in/-/images/og-ganster-returns-d-new.jpg"); */
  background-image: url("/-/images/bikes-5-new.jpg");
  opacity: 0.15;
}

/* ================= FOREGROUND ================= */
.floatingElements1000 {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.bike1000 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;
}

/* ================= DESKTOP PARALLAX ================= */
@media (min-width: 769px) {
  .layerBack1000 {
    background-attachment: fixed;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .parallaxHero1000 {
    height: 520px;
  }
}

@media (max-width: 768px) {
  .parallaxHero1000 {
    height: 420px;
  }

  .layerBack1000 {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .parallaxHero1000 {
    height: 360px;
  }
}

/* <!-- parallax hero end --> */

/* <!-- ================= PICK YOUR KINETIC EV SECTION ================= --> */

/* ===================== END OF PICK YOUR KINETIC EV SECTION ===================== */


/* ================== START KINETIC PREMIUM FEATURES SECTION ================== */

/* ================== END KINETIC PREMIUM FEATURES SECTION ================== */



/* <!-- Parallax 2 Start --> */
/* =====================================================
   BASIC PARALLAX BLOCK (STATIC)
===================================================== */
/* =====================================================
   KINETIC PARALLAX SECTION 9021
===================================================== */

.kxParallaxSec_9021 {
    width: 100%;
    overflow: hidden;
}

/* ---------------- MAIN WRAPPER ---------------- */
.kxParallaxHero_9021 {
    position: relative;
    width: 100%;
    height: 608px;
    perspective: 1px;
    overflow: hidden;
    background: #000;
}

/* ---------------- PARALLAX LAYERS ---------------- */
.kxLayer_9021 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: center;
}

/* Back Layer */
.kxLayerBack_9021 {
    background-image: url("https://kineticev.in/-/images/og-ganster-returns-d-new.jpg");
    transform: translateZ(-2px) scale(3);
    opacity: 0.7;
}

/* Mid Layer */
.kxLayerMid_9021 {
    background-image: url("https://kineticev.in/-/images/og-ganster-returns-d-new.jpg");
    transform: translateZ(-1px) scale(2);
    opacity: 0.85;
}

/* ---------------- FLOATING ELEMENTS ---------------- */
.kxFloating_9021 {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.kxBike_9021 {
    position: absolute;
    width: 300px;
    bottom: 10%;
    left: -360px;
    animation:
        kxBikeMove_9021 12s linear infinite,
        kxBikeFloat_9021 4s ease-in-out infinite alternate;
}

/* ---------------- TEXT (OPTIONAL) ---------------- */
.kxText_9021 {
    position: absolute;
    z-index: 20;
    color: #fff;
    text-align: center;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
}

.kxText_9021 h2 {
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.kxText_9021 p {
    font-size: 1.4rem;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes kxBikeMove_9021 {
    0% { transform: translateX(0); }
    100% { transform: translateX(1600px); }
}

@keyframes kxBikeFloat_9021 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* =====================================================
   RESPONSIVE FALLBACK (TABLET & MOBILE)
===================================================== */

@media (max-width: 1024px) {
    .kxParallaxHero_9021 {
        height: 520px;
    }
}

@media (max-width: 768px) {

    .kxParallaxHero_9021 {
        perspective: none;
        height: 420px;
    }

    .kxLayer_9021 {
        transform: none;
        background-attachment: scroll;
    }

    .kxBike_9021 {
        width: 190px;
        bottom: 8%;
    }

}

@media (max-width: 480px) {

    .kxParallaxHero_9021 {
        height: 360px;
    }

    .kxBike_9021 {
        width: 160px;
    }

}

/* <!-- Parallax 2 end --> */

