

/* partner  Page  css */

  .partner-section {
      padding: 80px 0;
     
    }
    
    .partner-box {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      height: 150px;
      width: auto;
      overflow: hidden;
      margin-bottom: 20px;
      text-align: center;
      background: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .partner-box:hover{
          box-shadow: 0 0 20px rgba(0, 0, 255, 0.123), 0 0 40px #2574fc5e, 0 0 60px rgb(128, 128, 128);

    }
    
      .partner-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
       background: conic-gradient(
        #15253d,
        #1f7aff,
        #094577,
        #1b9894,
        #ab7917
      );
      transform: rotate(0deg);
      transition: opacity 0.3s ease;
      animation: rotateBorder 2s linear infinite;
      opacity: 0;
    }

    .partner-box:hover::before {
      opacity: 1;
    }

    /* Inner mask to keep border only */
    .partner-box::after {
      content: "";
      position: absolute;
      inset: 4px;
      background: #fff;
      border-radius: 12px;
      z-index: 1;
    }

    @keyframes rotateBorder {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }


    .partner-box img {
     
      max-width: 100%;
      height: auto;
      position: relative;
      z-index: 2;
      color: #000;
    
    }
   
    .sticky-content {
      position: sticky;
      top: 20px;
      text-align: left;
    }

    .partner-content h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .partner-content p {
      margin-bottom: 20px;
      color: #555;
    }

    .partner-section .marquee{
        margin-bottom: 3rem;
    }
    
    .partner-section .marquee__content h2 {
        -webkit-text-stroke: 1px var(--primary);
    }
    
    .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee__content li {
    display: inline-flex;
    align-items: center;
    margin-right: 60px;
    list-style: none;
}

.marquee__content h2 {
    font-size: 65px;
    font-weight: bold;
    color: transparent !important;
    margin: 0;
    -webkit-text-stroke: 1px #000;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.marquee:hover h2 {
    color: var(--primary);
    transition: color 0.3s ease;
}

.marquee__content {
    display: inline-block;
    animation: scroll-left 120s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-1000%);
    }

}

.marquee__content img {
    width: 100px;
    height: 100px;
    margin-right: 45px;
}

/* Partner page Responsive */
@media (max-width: 991px){
    .partner-section {
        padding: 40px 0;
    }
}

@media (max-width: 667px) {
    .partner-section .marquee {
        margin-bottom: 1rem;
    }
}
