.header{
    padding: 30px 0 50px;
    background: #fff;
    overflow: hidden;
}

.header .title-5 {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.header .title-1 {
    font-size: clamp(2.01rem, calc(.5rem + 2.9004vw), 3.247rem);
    font-family: var(--third-font);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 30px;
}


.div-company-text-img {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    background-color: #FFB93E;
    padding: 40px;
    border-radius: 20px;
}

.div-company-text-img:nth-child(even) {
    flex-direction: row-reverse;
}

.comapny-main {
    flex: 1;
    min-width: 320px;
    background-color: #FFE082;
    padding: 20px 20px;
    border-radius: 20px;
}

.comapny-main h2 {
    font-size: 2rem;
    color: #2d3e50;
    margin-bottom: 20px;
}

.comapny-main p {
    color: #555;
    font-size: 1rem;
}

.company-main-image {
    flex: 1;
    text-align: center;
}

.company-main-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0px 10px 105px #ffffffb3;
}

@media (max-width: 768px) {
    .div-company-text-img {
    flex-direction: column !important;
    text-align: center;
    }

    .comapny-main h2 {
    font-size: 1.5rem;
    }

    .con-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub-div {
        max-width: 45%;
    }
}

@media screen and (max-width: 992px) {
    .media-none{
        display: none;
    }
}

.con-main {
    display: flex;
    gap: 20px;
}

.img-div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.img-div img{
    width: 30px;
}

.bg-color{
    background-color: white;
    padding-bottom: 50px;
}

.sub-div{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e2e9ee;
    background-color: #f4f8fb;
    border-radius: 12px;
    color: var(--text-gray);
    box-shadow: 0px 10px 105px #0000002e;
    transition: 0.3s ease;
}

.para-text{
    font-size: 13px;
}

.text-head{
    font-weight: 600;
}

.para-text-part{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    border-color: 1px solid #e2e9ee;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 30px;
}


/*PARTNERS SECTION CSS*/

.partner-infinite-scroll-container {
  overflow: hidden;
  width: 100%;
}

.partner-infinite-scroll-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: infiniteScroll 25s linear infinite;
}

.partner-icon-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border, #eee);
  width: 250px;
  height: 125px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.partner-icon-card-img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-icon-card:hover .partner-icon-card-img{
    cursor:pointer;
    transform: scale(1.05);
    /*filter: brightness(1.05);*/
    
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .partner-infinite-scroll-track {
    gap: 30px;
    animation-duration: 30s;
  }
  .partner-icon-card {
    width: 200px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .partner-infinite-scroll-track {
    gap: 20px;
    animation-duration: 35s;
  }
  .partner-icon-card {
    width: 160px;
    height: 90px;
  }
}
/*PARTNERS SECTION CSS*/