 /* ------------------------------------------------------------
         3) WorthScore Section
         ------------------------------------------------------------ */
         .worthscore-section {
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            width: 100vw;
            background: #050038; 
            padding: 2rem 0; /* Add some vertical padding */
          }
      
          .worthsection-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
          }
      
          .worthscore-section h2 {
            margin-top: 0;
            font-size: 44px;
            background: linear-gradient(90deg, #BC42B9 4%, #4BC7E8 96%);
            -webkit-background-clip: text;  /* Safari/Chrome support */
            -webkit-text-fill-color: transparent; 
            margin-bottom: 1rem;
            text-align: center;
          }
          .worthscore-section p.subheading {
            max-width: 650px;
            margin: 0 auto 0 auto;
            color: #F1F3FD;
            line-height: 1.5;
            text-align: center;
            font-size: 16px;
          }
      
          .worthscore-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
          }
          .worthscore-left {
            display: flex;
            justify-content: center;
            margin-top: -10%;
          }
          .gradient-card {
            width: 1248px;
            margin-top: 9%;
          }
          .gradient-card img {
            width: 100%;
            scale: 0.8;
    
          }
    
      
          .worthscore-right {
            display: flex;
            gap: 1.5rem;
          }
          .feature-card {
            flex: 1 1 300px; /* Ensures cards grow/shrink to the same width (300px is an example) */
            max-width: 300px; /* Sets the maximum width */
            height: 490px; /* Ensures all cards are the same height */
            box-sizing: border-box; /* Ensures padding is included in the height/width calculation */
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: left;
            display: flex; /* Allows inner alignment */
            flex-direction: column; /* Aligns content vertically */
            background: transparent; /* No background initially */
            transition: background 1s ease, box-shadow 0.3s ease;
          }
          
          .feature-card:hover {
            background: linear-gradient(118.33deg, #4B128B -13.09%, #050038 93.56%);
          }
          
          .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
          }
          .feature-icon img {
            width: 100%;
            height: auto;
            display: block;
          }
          .feature-card h3 {
            font-size: 22px;
            margin-bottom: 0.5rem;
            color: #B896FF;
          }
          .feature-card p {
            font-size: 16px;
            line-height: 1.5;
            color: #F1F3FD;
          }



@media (max-width: 768px) {
  .worthscore-content {
      flex-direction: column;
      align-items: center;
  }
  .worthscore-left {
      margin-bottom: 5%;
  }
  .gradient-card {
      width: 100%; /* Make the image as wide as possible */
      max-width: 500px; /* Limit the max size for mobile */
      margin-top: 5%;
  }
  .gradient-card img {
    width: 100%;
    display: block;
    margin-top: 18%;
    margin-bottom: 5%;
    scale: 1.3;
    padding-right: 60px;
 }
  .feature-card {
      flex: 1 1 100%;
      max-width: 100%;
      height: auto;
      text-align: center;
      background: linear-gradient(118.33deg, #4B128B -13.09%, #050038 93.56%);
  }
  .worthscore-right {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
  }
  .worthscore-section p.subheading {
    font-size: 16px !important;
    max-width: 100% !important;
}
}


/* 📱📲 Mobile Horizontal & iPad-Friendly Layout */
@media (max-width: 1024px) {
  .worthscore-section {
      padding: 3rem 0;
  }

  .worthsection-container {
      max-width: 95%;
      padding: 0 1.5rem;
  }

  .worthscore-section h2 {
      font-size: 38px;
  }

  .worthscore-section p.subheading {
      font-size: 18px;
      max-width: 80%;
  }

  .worthscore-content {
      flex-direction: column;
      align-items: center;
  }

  .worthscore-left {
      margin-bottom: 5%;
  }

  .gradient-card {
      width: 90%;
      max-width: 700px;
      margin-top: 5%;
  }

  .feature-card {
      flex: 1 1 100%;
      max-width: 100%;
      height: auto;
      text-align: center;
      background: linear-gradient(118.33deg, #4B128B -13.09%, #050038 93.56%);

  }

  .worthscore-right {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .worthscore-section {
      padding: 2.5rem 0;
  }

  .worthsection-container {
      padding: 0 1rem;
  }

  .worthscore-section h2 {
      font-size: 34px;
  }

  .worthscore-section p.subheading {
      font-size: 16px;
      max-width: 85%;
  }

  .worthscore-content {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
  }

  .worthscore-left {
      margin-bottom: 3%;
  }

  .gradient-card {
      width: 80%;
      max-width: 600px;
      margin-top: 3%;
  }

  .feature-card {
      flex: 1 1 48%;
      max-width: 45%;
      height: auto;
      text-align: left;
      background: linear-gradient(118.33deg, #4B128B -13.09%, #050038 93.56%);
  }

  .worthscore-right {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }
}
