@import url('https://fonts.cdnfonts.com/css/plus-jakarta-sans');
:root {
      --primary-purple: #6c2cf5;
      --bg-light: #f9fafb;
      --text-dark: #111827;
      --text-muted: #4b5563;
      --white: #ffffff;
      --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
     /* font-family: 'Inter', sans-serif;*/
      font-family: 'Plus Jakarta Sans', sans-serif;
       -webkit-font-smoothing: antialiased; /* Chrome, Safari */
  -moz-osx-font-smoothing: grayscale;  /* Firefox on macOS */
  text-rendering: optimizeLegibility;
  }

  body {
      background-color: var(--bg-light);
      color: var(--text-dark);
      overflow-x: hidden;
       font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* --- Scroll Animation --- */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: var(--transition);
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  /* --- Navigation --- */
  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 8%;
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 2000;
      border-bottom: 1px solid #eee;
  }

  .logo {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary-purple);
      text-decoration: none;
      z-index: 2101;
  }

  .nav-links {
      display: flex;
      align-items: center;
  }

  .nav-links a {
      margin: 0 15px;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 14px;
  }

  .btn-waitlist {
      padding: 10px 20px;
      border: 1px solid var(--text-dark);
      border-radius: 6px;
      background: none;
      cursor: pointer;
      font-weight: 600;
  }

  /* Burger Menu Icon */
  .burger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      z-index: 2101;
  }

  .burger div {
      width: 25px;
      height: 3px;
      background: var(--text-dark);
      transition: var(--transition);
  }

  /* --- Hero Section --- */
  .hero {
      display: flex;
      align-items: center;
      padding: 80px 8%;
      gap: 60px;
      min-height: 80vh;
  }

  .hero-text {
      flex: 1.2;
  }

  .hero-text h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 800;
  }

  .hero-text p {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.6;
  }

  .hero-img img {
      width: 100%;
      max-width: 500px;
      filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
  }

  /* --- Value Props Section --- */
  .section-header {
      text-align: center;
      padding: 80px 8% 40px;
  }

  .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding: 0 8%;
  }

  .info-card {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      border: 1px solid #f0f0f0;
      height: 400px;
  }

  .info-card h3 {
      color: var(--primary-purple);
      margin-bottom: 15px;
      font-size: 30px;
  }
  h1,h2,h3,h4{
    line-height: 1.5;
  }

  .different-box {
      grid-column: span 2;
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      margin-top: 30px;
      border: 1px solid #f0f0f0;
      height: 400px;
  }
   .different-box h3{
     color: var(--primary-purple);
     font-size: 30px;
     font-weight: bold;
     font-weight: 900;
   }

  /* --- Philosophy Section --- */
  .philosophy {
      text-align: center;
      padding: 100px 8%;
      background: #f3f4f6;
      margin-top: 80px;
  }

  .philosophy .quote-mark {
      font-size: 80px;
      color: var(--primary-purple);
      line-height: 0;
      display: block;
      margin-bottom: 30px;
  }

  .philosophy h2 {
      font-size: 2.2rem;
      font-weight: 400;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.4;
  }

  /* --- Why Ladaar? Banner --- */
  .purple-banner {
      background: var(--primary-purple);
      margin: 80px 8%;
      border-radius: 20px;
      padding: 60px 60px 0px 60px;
      display: flex;
      color: white;
      align-items: center;
      gap: 40px;
  }

  .banner-text {
      flex: 1.5;
  }

  .banner-img {
      flex: 1;
      text-align: center;
  }

  .banner-img img {
      width: 100%;
      max-width: 300px;
  }

  /* --- Services Section --- */
  .services-section {
      padding: 100px 8%;
  }

  .services-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 30px;
      align-items: center;
      margin-top: 60px;
  }

  .service-item {
      background: var(--white);
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 25px;
      border-left: 4px solid var(--primary-purple);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  }

  .service-item h4 {
      margin-bottom: 8px;
      font-size: 1.1rem;
  }

  .service-item p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
  }

  /* --- Footer --- */
  footer {
      padding: 80px 8% 40px;
      border-top: 1px solid #e5e7eb;
      background: var(--white);
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
  }

  .footer-bottom {
      border-top: 1px solid #eee;
      margin-top: 40px;
      padding-top: 20px;
      font-size: 13px;
      color: #9ca3af;
      display: flex;
      justify-content: space-between;
  }

  /* --- Mobile Responsive --- */
  @media (max-width: 1024px) {
      .services-grid {
          grid-template-columns: 1fr;
      }

      .center-mockup {
          order: -1;
          text-align: center;
      }

      .purple-banner {
          flex-direction: column;
          text-align: center;
      }
  }

  @media (max-width: 768px) {
      .burger {
          display: flex;
      }

      .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          height: 100vh;
          width: 75%;
          background: var(--white);
          flex-direction: column;
          justify-content: center;
          transition: 0.4s ease-in-out;
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
      }

      .nav-links.nav-active {
          right: 0;
      }

      .hero {
          flex-direction: column;
          text-align: center;
          padding-top: 40px;
      }

      .grid-container {
          grid-template-columns: 1fr;
      }

      .different-box {
          grid-column: span 1;
      }

      .hero-text h1 {
          font-size: 2.5rem;
      }

      .toggle .line1 {
          transform: rotate(-45deg) translate(-5px, 6px);
      }

      .toggle .line2 {
          opacity: 0;
      }

      .toggle .line3 {
          transform: rotate(45deg) translate(-5px, -6px);
      }
  }