/* ═══════════════════════════════════════════════
   NAREDCO ONE — App Landing Page CSS
   File: naredco-one.css
═══════════════════════════════════════════════ */

:root {
  --orange: #E07020;
  --radius-phone: 36px;
}

/* ══════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════ */
.no-hero {
  width: 100%;
  line-height: 0;
}
.no-hero__banner {
  width: 100%;
  height: auto;
  display: block;
}
.no-hero__banner--mobile {
  display: none;
}
.no-hero__banner--desktop {
  display: block;
}

@media (max-width: 1000px) {
  .no-hero__banner--mobile {
    display: block;
  }
  .no-hero__banner--desktop {
    display: none;
  }
}


/* ══════════════════════════════════════════════
   2. FEATURES SLIDER
══════════════════════════════════════════════ */
/* FEATURES SECTION (SLIDER) */
.no-features {
  padding: 150px 0 50px;
  background: #fff;
  position: relative;
  overflow: visible;
}

.no-features__container {
  width: 80%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* Text side with smooth transition */
.no-features__text {
  transition: opacity 0.35s var(--transition-fast), transform 0.4s var(--transition-fast);
  will-change: opacity, transform;
}

.no-features__text.no-animating {
  opacity: 0;
  transform: translateY(18px);
}

.no-features__heading {
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 600;
    color: #E46825;
    line-height: 60px;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

.no-features__body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0px;
}

/* ----- PHONE CLUSTER (3D layered effect with blur & subtle rotation) ----- */
.no-features__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  perspective: 1000px;
}

.no-phone-cluster {
  position: relative;
  width: 400px;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.no-phone-3d {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 270px;
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius-phone);
  /* background: #0f0f0f; */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* border: 1px solid rgba(255, 255, 240, 0.2); */
  cursor: pointer;
  transform-origin: bottom center;
}

.no-phone-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* 3D Positions */
.phone-pos-0 {
  transform: translateX(0) scale(1);
  z-index: 10;
  filter: brightness(1);
  opacity: 1;
}

.phone-pos-1 {
  transform: translateX(160px) scale(0.9);
  z-index: 9;
  filter: brightness(0.75);
  opacity: 1;
}

.phone-pos-2 {
  transform: translateX(300px) scale(0.8);
  z-index: 8;
  filter: brightness(0.5);
  opacity: 1;
}

.phone-pos-hidden-right {
  transform: translateX(420px) scale(0.7);
  z-index: 7;
  filter: brightness(0.2);
  opacity: 0;
  pointer-events: none;
}

.phone-pos-hidden-left {
  transform: translateX(-120px) scale(0.9);
  z-index: 11;
  filter: brightness(1);
  opacity: 0;
  pointer-events: none;
}

/* Dynamic dots — elegant */
.no-features__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 55px;
}

.no-dot {
  width: 20px;
  height: 6px;
  border-radius: 50px;
  border: none;
  /* background: #d4d4d4; */
  background: #D2D2D24D;

  cursor: pointer;
  transition: all 0.25s ease;
}

.no-dot.active {
  background: var(--orange);
  width: 48px;
}

/* Scroll reveal animation */
.no-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.no-reveal.no-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-reveal-delay-1 {
  transition-delay: 0.15s;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .no-features__container {
    gap: 40px;
    padding: 0 30px;
  }
  .no-phone-cluster {
    width: 340px;
    height: 480px;
  }
  .no-phone-3d {
    width: 240px;
    height: 480px;
  }
  .phone-pos-1 {
    transform: translateX(120px) scale(0.9);
  }
  .phone-pos-2 {
    transform: translateX(220px) scale(0.8);
  }
}

@media (max-width: 850px) {
  .no-features__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .no-features__phones {
    order: -1;
    margin-bottom: 20px;
  }
  .no-phone-cluster {
    margin: 0 auto;
    overflow: visible;
    max-width: 100%;
  }
  .no-phone-3d {
    left: 50%;
  }
  .phone-pos-0 {
    transform: translateX(-50%) scale(1);
  }
  .phone-pos-1 {
    transform: translateX(100px) scale(0.92);
  }
  .phone-pos-2 {
    display: none;
  }
}

@media (max-width: 550px) {
  .no-features {
    padding: 40px 0 30px;
  }
  .no-phone-cluster {
    width: 240px;
    height: 420px;
    overflow: visible;
    max-width: 100%;
  }
  .no-phone-3d {
    left: 50%;
    width: 220px;
    margin: 0 auto;
  }
  .phone-pos-0 {
    transform: translateX(-50%) scale(1);
  }
  .phone-pos-1,
  .phone-pos-2,
  .phone-pos-hidden-left,
  .phone-pos-hidden-right {
    display: none;
  }
  .no-features__heading {
    font-size: 18px;
    line-height: 34px;
  }

 
}


/* ══════════════════════════════════════════════
   3. CTA / DOWNLOAD SECTION
══════════════════════════════════════════════ */
.no-cta {
    padding: 150px 0px 100px;
    background: #fff;
}

.no-cta__card {
    width: 80%;
    margin: 0 auto;
    background: #F6F6F6;
    border-radius: 0px;
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
    overflow: hidden;
    padding-right: 0px;
    gap: 100px;
}

/* Phone image — sits flush at bottom-left, slightly overflows top */
.no-cta__phone-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-left: 100px;
    padding-top: 100px;
}

.no-cta__phone-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0px;           /* flush to card bottom edge */
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.18));
}

/* Content */
.no-cta__content {
    padding: 50px 0 50px 20px;
    color: #1a1a1a;
    width: 80%;
}

.no-cta__heading {
    font-family: 'Poppins';
    font-size: 40px;
    font-weight: 600;
    color: #e46825;
    line-height: 60px;
    margin-bottom: 14px;
}

.no-cta__body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    margin-bottom: 28px;
    font-weight: 400;
}

/* Store buttons — solid black */
.no-cta__buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.no-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 11px 30px;
  border-radius: 3px;
  text-decoration: none;
  background: #111;
  color: #fff;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}
.no-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color: #fff;
  text-decoration: none;
}

.no-btn__icon {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
}

.no-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.no-btn__text small {
  font-size: 12px;
  color: #ffffff;
}
.no-btn__text span {
  font-size: 16px;
  font-weight: 600;
}


/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.no-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.no-reveal.no-visible {
  opacity: 1;
  transform: translateY(0);
}
.no-reveal-delay-1 { transition-delay: 0.15s; }
.no-reveal-delay-2 { transition-delay: 0.3s; }


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .no-features__container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  .no-features__text,
  .no-features__phones {
    width: 100%;
  }
  .no-features__phones {
    order: -1;
    margin: 0 auto;
  }
  .no-features__dots {
    justify-content: center;
    padding: 0 16px;
  }

  .no-cta {
    padding: 50px 16px 60px;
  }
  .no-cta__card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    padding: 30px 22px;
    text-align: center;
    gap: 24px;
  }
  .no-cta__phone-wrap { display: none; }
  .no-cta__content {
    padding: 0;
    width: 100%;
  }
  .no-cta__buttons { justify-content: center; }
  .no-btn {
    flex: 1 1 160px;
    min-width: 150px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .no-features { padding: 120px 0 40px; }
  .no-cta { padding: 30px 16px 60px; }
  .no-phone-cluster { width: 100%;  }
  .no-phone--front { width: 170px; height: 330px; }
  .no-phone--back  { width: 136px; height: 264px; }
  .no-features__container {
    padding: 0 0px;
  }
  .no-cta__card {
    padding: 24px 18px;
  }
  .no-btn {
    flex: 1 1 140px;
  }

  .no-features__body {
    font-size: 14px;
    line-height: 26px;
}

button {
    padding: 7px;
}

.no-dot.active {
    width: 12px;
}
.no-features__dots {
    gap: 6px;
}

.no-cta__heading {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 25px;
}

.no-cta__body {
    font-size: 14px;
    line-height: 24px;
}
}