
  .growth-section {
    background: url('img/irv1.jpg') center/cover fixed no-repeat;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: -1;
  }

  .growth-section::before {
    /* Optional: dark overlay for readability */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }

  .growth-header h1 {
    font-size: 2.4rem;
   /* color: #00bcd4;*/
     color: #00e5ff;
    margin-bottom: 10px;
    z-index: 5;
  }

  .growth-header p {
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
  }

  .growth-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
  }

  .growth-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 35px 25px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  .growth-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
  }

  .progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    height: 14px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .progress-fill {
    background: linear-gradient(90deg, #00e5ff, #00bcd4);
    height: 100%;
    width: 0%;
    border-radius: 20px;
  }

  .progress-value {
    font-size: 18px;
    color: #00e5ff;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
  }

  .growth-card p {
    font-size: 1.3rem;
    color: white;
    line-height: 1.5;
  }

  /* ✅ Tablet layout (2 per row) */
  @media (max-width: 1024px) {
    .growth-container {
      gap: 30px;
    }
    .growth-card {
      width: 45%;
    }
  }

  /* ✅ Mobile layout (1 per row) */
  @media (max-width: 768px) {
    .growth-container {
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
    .growth-card {
      width: 100%;
      max-width: 400px;
    }
  }

  /* ✅ For small phones */
  @media (max-width: 480px) {
    .growth-header h1 {
      font-size: 1.8rem;
    }
    .growth-header p {
      font-size: 15px;
    }
    .growth-card {
      padding: 25px 20px;
    }
  }

  @media(min-width:720px){
    .growth-section {
      height: 80vh;
      align-content: center;
    }
  }
