/* Core Values Section */
#core-values {
    text-align: center;
    /* padding: 50px 20px; */
    min-height: 100vh; /* Ensures the section takes up at least the full viewport height */
    padding: 8% 0; /* Adjust padding for better spacing */
    background-color: white;
  }
  
  #core-values h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: black;
  }
  
  .core-values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .core-value-card {
    background: white;
    /* border: 5px solid #d90990; */
    border-radius: 8px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.367);
    padding: 50px;
    width: 550px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }


  .core-value-card:hover::before {
      width: 100%;
  }
  
  .core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, rgb(127, 66, 232), rgb(191, 78, 219), rgb(229, 83, 124)); /* Gradient background */
  }


  .core-value-card:hover .icon {
    color: white;
  }
  .core-value-card:hover h3 {
    color: white;
  }
  .core-value-card:hover p {
    color: white;
  }
  
  .core-value-card .icon {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 15px;
  }
  
  .core-value-card h3 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
  }

  .gradient-text {
    font-size: 2.5rem; /* Adjust font size */
    font-weight: bold;
    background: linear-gradient(to right, rgb(127, 66, 232), rgb(191, 78, 219), rgb(229, 83, 124)); /* Gradient applied to text */
    -webkit-background-clip: text; /* Clips the gradient to the text */
    background-clip: text; /* Standard property for compatibility */
    -webkit-text-fill-color: transparent; /* Makes the text transparent to show the gradient */
    margin-bottom: 20px;
}
  
  .core-value-card p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 2rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 1.3rem;
    }
  
    .core-value-card p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 1.2rem;
    }
  
    .core-value-card p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 425px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 1.1rem;
    }
  
    .core-value-card p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 414px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 1.05rem;
    }
  
    .core-value-card p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 375px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 1rem;
    }
  
    .core-value-card p {
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 360px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 0.95rem;
    }
  
    .core-value-card p {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 320px) {
    .core-value-card {
      width: 80%;
      padding: 30px;
    }
  
    #core-values h2 {
      font-size: 1.5rem;
    }
  
    .gradient-text {
      font-size: 2rem;
    }
  
    .core-value-card h3 {
      font-size: 0.9rem;
    }
  
    .core-value-card p {
      font-size: 0.75rem;
    }
  }
  