/* ================= ABOUT HERO ================= */

.about-hero {
  min-height: 100vh;
  
  background: linear-gradient(
    180deg,

    #ffffff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-inner {
  max-width: 820px;
  padding: 0 24px;
  text-align: center;
}

/* TAG */
.work-tag {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #5B6CFF;
  margin-bottom: 18px;

  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* HEADING */
.about-hero h1 {
  margin-top: 18px;
  font-size: 56px;
  line-height: 1.15;
  color: #0f172a;

  
}

.about-hero h1 span {
  color: #5B6CFF;
  

}

/* DESC */
.about-hero p {
  margin-top: 18px;
  font-size: 18px;
  color: #475569;
  line-height: 1.65;
}

/* PILLS */
.about-pills {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-pills span {
  padding: 8px 5px;
  background: #f1f5ff;
  border-radius: 30px;
  font-size: 14px;
  color: #334155;
}

/* CTA */
.work-cta {
  margin-top: 42px;
  display: inline-block;

  padding: 20px 15px;
  border-radius: 40px;

  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 18px 40px rgba(91,108,255,0.35);
  transition: transform 0.3s ease;
}

.work-cta:hover {
  transform: translateY(-3px);
}

/* SUBTLE FADE-UP (same vibe as why-scalevix) */
.about-hero-inner {
  animation: aboutFade 0.8s ease forwards;
}

@keyframes aboutFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 25px;
  }

  .about-hero p {
    font-size: 11px;
  }

}
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 70px; /* ⬅️ neeche ka space kam */
  }
}



/* ================= ABOUT CORE ================= */



.about-core-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.about-tag {
  font-size: 13px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #5B6CFF;
}

.about-core-text h2 {
  margin-top: 16px;
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
}

.about-core-text h2 span {
  color: #5B6CFF;
}

.about-core-text p {
  margin-top: 18px;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

/* RIGHT CARDS */
.about-core-cards {
  display: grid;
  gap: 22px;
}

.about-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  transition: transform 0.35s ease;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Highlight card */
.about-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(91,108,255,0.12),
    rgba(143,155,255,0.04)
  );
}

/* MOBILE */
@media (max-width: 768px) {
  .about-core-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .about-core-text p {
    margin-left: auto;
    margin-right: auto;
  }
   .about-core-cards {
    gap: 18px;
  }
    .about-card {
    padding: 22px;
  }

}

@media (max-width: 768px) {
  .about-core {
    padding: 70px 0 80px; /* balanced */
    margin-top: -10%;
  }
}
@media (max-width: 768px) {
  .about-core-text h2 {
    font-size: 25px;        /* pehle 40 */
    line-height: 1.25;     /* tighter */
  }
}
@media (max-width: 768px) {
  .about-core-text p {
    font-size: 11px;
    max-width: 92%;        /* full edge tak na jaye */
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .about-tag {
    margin-bottom: 8px;
    display: inline-block;
  }
}
/* ================= ABOUT APPROACH ================= */

.about-approach {
  padding: 120px 0;
  background: #ffffff;
}

.about-approach-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.approach-visual {
  position: relative;
}

.approach-img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  display: block;
}


/* TEXT */
.approach-text h2 {
  margin-top: 16px;
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
}

.approach-text h2 span {
  color: #5B6CFF;
}

.approach-text p {
  margin-top: 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

/* POINTS */
.approach-points {
  margin-top: 26px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-points li {
  font-size: 15px;
  color: #334155;
  padding-left: 18px;
  position: relative;
}

.approach-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #5B6CFF;
  font-size: 18px;
}

/* ICON ANIMATION */
@keyframes iconFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .about-approach {
    padding: 80px 0;
  }

  .about-approach-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .approach-text p {
    margin-left: auto;
    margin-right: auto;
	  font-size:11px;
  }

  .approach-text h2 {
    font-size: 25px;
  }


}


/* ================= ABOUT STATS – DARK ================= */

.about-stats.dark {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827
  );
}

.about-stats.dark .about-stats-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

/* STAT */
.about-stats.dark .stat-item h3 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
}

.about-stats.dark .stat-item h3 span {
  color: #8FA2FF;
}

.about-stats.dark .stat-item p {
  margin-top: 8px;
  font-size: 15px;
  color: #cbd5f5;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-stats.dark .about-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-stats.dark .stat-item h3 {
    font-size: 32px;
  }
}


/* ================= CREATIVE TESTIMONIAL ================= */

.testimonial-creative {
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827
  );
  color: #ffffff;
}

.testimonial-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.testimonial-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 90px;
}

.testimonial-head h2 {
  margin-top: 14px;
  font-size: 42px;
}

.testimonial-head h2 span {
  color: #8FA2FF;
}

/* STAGE */
.testimonial-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CARD */
.testimonial.main {
  max-width: 520px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05)
  );
  padding: 40px 36px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);

  opacity: 0;
  transform: scale(0.92);
}

/* TEXT */
.testimonial.main p {
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
}

.client {
  margin-top: 26px;
}

.client strong {
  display: block;
  font-size: 16px;
}

.client span {
  font-size: 14px;
  color: #c7d2fe;
}

/* GHOSTS */
.testimonial.ghost {
  position: absolute;
  width: 260px;
  font-size: 14px;
  color: #cbd5f5;
  opacity: 0.35;
}

.testimonial.ghost.left {
  left: 0;
  transform: translateX(-40px);
}

.testimonial.ghost.right {
  right: 0;
  transform: translateX(40px);
}

/* ACTIVE ANIMATION */
.testimonial-creative.active .testimonial.main {
  animation: popIn 0.8s ease forwards;
}

.testimonial-creative.active .testimonial.ghost.left {
  animation: slideLeft 0.8s ease forwards;
}

.testimonial-creative.active .testimonial.ghost.right {
  animation: slideRight 0.8s ease forwards;
}

/* KEYFRAMES */
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  to {
    transform: translateX(0);
    opacity: 0.35;
  }
}

@keyframes slideRight {
  to {
    transform: translateX(0);
    opacity: 0.35;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-stage {
    flex-direction: column;
  }

  .testimonial.ghost {
    display: none;
  }

  .testimonial-head h2 {
    font-size: 30px;
  }
}
/* ================= CREATIVE TESTIMONIAL ================= */

.testimonial-creative {
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #0f172a,
    #111827
  );
  color: #ffffff;
}

.testimonial-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */
.testimonial-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 90px;
}

.testimonial-head h2 {
  margin-top: 14px;
  font-size: 42px;
}

.testimonial-head h2 span {
  color: #8FA2FF;
}

/* STAGE */
.testimonial-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CARD */
.testimonial.main {
  max-width: 520px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.05)
  );
  padding: 40px 36px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);

  opacity: 0;
  transform: scale(0.92);
}

/* TEXT */
.testimonial.main p {
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
}

.client {
  margin-top: 26px;
}

.client strong {
  display: block;
  font-size: 16px;
}

.client span {
  font-size: 14px;
  color: #c7d2fe;
}

/* GHOSTS */
.testimonial.ghost {
  position: absolute;
  width: 260px;
  font-size: 14px;
  color: #cbd5f5;
  opacity: 0.35;
}

.testimonial.ghost.left {
  left: 0;
  transform: translateX(-40px);
}

.testimonial.ghost.right {
  right: 0;
  transform: translateX(40px);
}

/* ACTIVE ANIMATION */
.testimonial-creative.active .testimonial.main {
  animation: popIn 0.8s ease forwards;
}

.testimonial-creative.active .testimonial.ghost.left {
  animation: slideLeft 0.8s ease forwards;
}

.testimonial-creative.active .testimonial.ghost.right {
  animation: slideRight 0.8s ease forwards;
}

/* KEYFRAMES */
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  to {
    transform: translateX(0);
    opacity: 0.35;
  }
}

@keyframes slideRight {
  to {
    transform: translateX(0);
    opacity: 0.35;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-stage {
    flex-direction: column;
  }

  .testimonial.ghost {
    display: none;
  }

  .testimonial-head h2 {
    font-size: 25px;
  }
	  .testimonial.main p{
    font-size: 12px;
  }
}


/* ================= WOW CTA ================= */

.cta-wow {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #ffffff;
  overflow: hidden;
}

.cta-inner {
  max-width: 800px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TAG */
.cta-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #8FA2FF;
}

/* HEADING */
.cta-wow h2 {
  margin-top: 18px;
  font-size: 48px;
  line-height: 1.15;
}

.cta-wow h2 span {
  color: #8FA2FF;
}

/* TEXT */
.cta-wow p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* ACTIONS */
.cta-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(135deg, #5B6CFF, #8F9BFF);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(91,108,255,0.45);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
}

/* GHOST */
.cta-btn.ghost {
  border: 2px solid #8FA2FF;
  color: #8FA2FF;
}

.cta-btn.ghost:hover {
  background: #8FA2FF;
  color: #0f172a;
}

/* GLOW */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(91,108,255,0.35),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: glowPulse 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-wow {
    padding: 120px 0;
  }

  .cta-wow h2 {
    font-size: 25px;
  }

  .cta-wow p {
    font-size: 11px;
  }
}
