* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f5f5f5;
    overflow-x: hidden;
  }
  

  
 
  
        .hero {
            padding: 80px 15px;
            position: relative;
            width: 100%;
            height: 400px;
            background: no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            transition: background-image 1s ease-in-out; /* Smooth transition */
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
  
  .features {
    width: 100vw; 
    background: none;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
  }
  
  .feature-box {
    background: rgb(239, 241, 243);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .feature-box h3 {
    color: rgb(79, 115, 230);
    font-size: 20px;
    font-weight: bold;
  }
  
  .row .feature-box {
    margin: 15px 0;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  @media (max-width: 768px) { 
    .features {
        padding: 40px 15px;
    }
  }
  
  @media (max-width: 480px) { 
    .features {
        padding: 30px 10px;
    }
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .card img {
    height: 200px;
    object-fit: cover;
  }
  
  .card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
  }
  
  .card p {
    font-size: 16px;
  }
  
  .partner-track {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .partner-logos {
    display: inline-block;
    animation: scroll 30s linear infinite;
  }
  
  .partner-img {
    width: 120px;
    height: auto;
    margin: 10px;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
    padding: 10px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
