/* -------------------- Root Variables -------------------- */
  :root {
    --primary-color: #13ec6d;
    --secondary-color: #0b3e99;
    --accent-color: #06b6d4;
    --text-color: #222;
    --bg-color: #f9fafc;
    --card-bg: #fff;
    --hover-color: rgba(19,88,236,0.1);
    --transition: all 0.3s ease;
    --radius: 10px;
    --feature-bg: #f0f4f8;
    --feature-hover-bg: #e0f2ff;
  }

  /* -------------------- Reset & Base -------------------- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
  }

  /* -------------------- Hero Section -------------------- */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5faff, #ffffff);
    min-height: 80vh;
    text-align: left;
  }

  .hero .text {
    flex: 1 1 400px;
    max-width: 600px;
  }

  .hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    /* color: var(--primary-color); */
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #444;
  }


  .next-btn {
    display: flex;
    padding: 10px 30px;
    font-size: 20px;
    color: white;
    background: #3ad553e5;
    box-shadow: 6px 6px 0 #4e56c0;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    transform: skewX(-15deg);
    transition: 1s;
    text-decoration: none;
    align-items: center;
  }

  .next-btn:focus {
    outline: none;
  }

  .next-btn:hover {
    box-shadow: 10px 10px 0 #fbc638;
    transition: 0.5s;
  }

  .next-text {
    transform: skewX(15deg);
  }

  .next-icon {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
    transition: 0.5s;
  }

  .next-btn:hover .next-icon {
    margin-right: 45px;
  }

  .arrow-one {
    transition: 0.4s;
    transform: translateX(-60%);
  }

  .arrow-two {
    transition: 0.5s;
    transform: translateX(-30%);
  }

  .next-btn:hover .arrow-three {
    animation: arrow-color 1s infinite 0.2s;
  }

  .next-btn:hover .arrow-one {
    transform: translateX(0%);
    animation: arrow-color 1s infinite 0.6s;
  }

  .next-btn:hover .arrow-two {
    transform: translateX(0%);
    animation: arrow-color 1s infinite 0.4s;
  }

  @keyframes arrow-color {
    0% { fill: white; }
    50% { fill: #fbc638; }
    100% { fill: white; }
  }

  /* --- Mobile Responsive --- */
  @media (max-width: 768px) {
    .next-btn {
      padding: 8px 20px;
      font-size: 18px;
    }
    .next-icon {
      width: 15px;
      margin-left: 15px;
      top: 15%;
    }
    .next-btn:hover .next-icon {
      margin-right: 25px;
    }
  }

  @media (max-width: 480px) {
    .next-btn {
      padding: 6px 15px;
      font-size: 16px;
    }
    .next-icon {
      width: 12px;
      margin-left: 10px;
      top: 15%;
    }
    .next-btn:hover .next-icon {
      margin-right: 20px;
    }
  }

  /* .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero .btn {
    background: #6aed8c;
    color: #000;
    border: 5px solid #60c14f;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .hero .btn:hover {
    background: #ffffff;
    border: 5px solid #60c14f;

  } */

  /* .hero .secondary {
    border: 5px solid #60c14f;
    color: var(--primary-color);
    background: transparent;
    padding: 18px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
  }

  .hero .secondary:hover {
    background: #6aed8c;
    color: #fff;
  } */

  .hero img {
    flex: 1 1 300px;
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    transform: rotateY(-10deg) rotateX(3deg);
  }

  .hero img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
  }

  /* -------------------- Features -------------------- */
  section h2 {
    font-size: 2rem;
    /* color: var(--primary-color); */
    margin-bottom: 20px;
    text-align: center;
    position: relative;
  }

  section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    margin: 8px auto 0 auto;
    border-radius: 2px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }

  .card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  ul {
    padding-left: 20px;
    margin-top: 10px;
  }

  ul li {
    margin-bottom: 8px;
    color: #555;
  }

  /* -------------------- Feature Highlights -------------------- */
  .highlights-section {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .highlights-section h3 {
    text-align: center;
    /* color: var(--primary-color); */
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    animation: fadeInDown 1s ease;
  }

  .feature-list {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* .feature {
    display: flex;
    align-items: flex-start;
    background: var(--feature-bg);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: default;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
  } */

  .feature-icon {
    flex-shrink: 0;
    width: 50px;
    margin-right: 15px;
  }

  .feature-icon img {
    width: 100%;
    height: 100%;
  }

  .feature-text strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.1rem;
  }

  .feature-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
  }

  .feature:hover {
    transform: translateY(-6px);
    background: var(--feature-hover-bg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }

  @keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }

  @keyframes fadeInDown {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @media (max-width: 900px) {
    .feature-list {
      grid-template-columns: repeat(2, 1fr); 
    }
  }

  @media (max-width: 600px) {
    .feature-list {
      grid-template-columns: 1fr; 
    }
  }
  /* .feature:nth-child(1) { animation-delay: 0.1s; }
  .feature:nth-child(2) { animation-delay: 0.2s; }
  .feature:nth-child(3) { animation-delay: 0.3s; }
  .feature:nth-child(4) { animation-delay: 0.4s; }
  .feature:nth-child(5) { animation-delay: 0.5s; }
  .feature:nth-child(6) { animation-delay: 0.6s; } */

  /* -------------------- FAQ Section -------------------- */
  .faq {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 16px;
    background: var(--bg-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .faq h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
  }

  .accordion .item {
    background: var(--card-bg);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
  }

  .accordion-button {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
  }

  .accordion-button:hover {
    background: var(--hover-color);
  }

  /* + for closed, – for open */
.accordion-button::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
  content: "";
}

  dd {
    margin: 0;
    padding: 0 18px 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    background: var(--card-bg);
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  dd[hidden] {
    display: block !important;
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
  }

  dd:not([hidden]) {
    max-height: 400px;
    opacity: 1;
  }

  /* -------------------- Responsive -------------------- */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 60px 20px;
    }
    .hero img {
      max-width: 320px;
      order: 1;
    }
    .hero .text { order: 2; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .faq { max-width: 95%; padding: 15px; }
  }

  @media (max-width: 600px) {
    .hero {
      padding: 40px 15px;
      gap: 20px;
    }
    .hero img { max-width: 100%; }
    .hero h1 { font-size: 1.7rem; }
    .faq h3 { font-size: 1.5rem; }
    .accordion-button { font-size: 1rem; padding: 14px; word-wrap: break-word; }
    dd { font-size: 0.9rem; }
    .feature { flex-direction: row; }
  }