
  .container {
    position: relative;
    width: 100%;
    min-height: 100vh;
     /* Contains the scrolling content */
  }
  
  /* Scrolling carousel styles */
  .scrolling-carousel {
    display: flex;
    flex-wrap: nowrap;
    width: max-content; /* Allow content to determine width */
    padding-right: calc(100vw - 100%) !important;
    /* Full height for scrolling area */
  }
  
  @media (max-width: 767px) {
  .scrolling-carousel {
  flex-direction:column;
  gap:20px;
  width:100%;
  }
  
  }
  
  /* Card styles */
  .card {
    width: 500px;
    height: auto;
    margin-right: 30px;
 
    border-radius: 12px;
 
    padding:30px;
   
  }
  
  .card:hover {
    transform: scale(1.02);
  }
  
  .card-details {
    border-radius: 0 0 12px 12px;
    height:100%;
        display: flex;
    align-items: center;
  }
  
  .card-header {
    height:100%
  }
  

  
  .card-icon{
      display: inline-flex;
    background: white;
    padding: 20px;
    border-radius: 100px;
    margin-bottom: 15px;

  }
 
  
  /* ScrollTrigger pin styles */
  .scrolling-carousel.gsap-pinned {
    padding-bottom: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card {
      min-width: 300px;
      width: 100%;
      height: auto;
      margin-right:0px !important;
    }
  
    
  }




  body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  .goals-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .goals-section-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    padding: 2rem;
  }
  
  .goals-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .goals-section p {
    color: #666;
    margin-bottom: 2rem;
  }
  
  .goals-card-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .goals-card {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .goals-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .goals-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .goals-card p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .goals-card-container {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .goals-card {
      position: static;
      opacity: 1;
      transform: none;
    }
  }