.img-seal {
	 bottom: 3%;
   left: 75%;
   position: absolute;
   z-index: 99999;
   width: 5rem;
	
	
}

/* FOR HOMEPAGE */

/* Card Wrapper Link */
.ptx-home-card-link {
    text-decoration: none;
    display: inline-block;
}

.ptx-home-card-link:hover {
    transform: translateY(-6px) scale(1.02);
	transition: all 0.1s ease;
}

/* Card Container */
.ptx-home-card {
    height: 320px;
    width: 280px;
    padding: 32px;
    border-radius: 20px 20px 20px 0;
    background: #ffffff;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    cursor: pointer;
    margin: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease; 
}

/* Variant 2 */
.ptx-home-card--alt {
    background: #EDF6FF;
	  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.02);
}


/* Icon (top-right background) */
.ptx-home-card-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.ptx-home-card-icon--alt {
		top: 10px;
    right: 32px;
    width: 32px;
    height: 32px;
}

/* Content */
.ptx-home-card-title {
    margin: 0 0 12px;
    color: #24378B;
}

.ptx-home-card-desc {
    margin: 0 0 20px;
    color: #6b7280;
    line-height: 1.5;
}

.ptx-home-card-link-text {
    color: #1f3a93;
    font-weight: 300;
    font-size: small;
    margin-top: auto;
}

.video-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.logo-section {
    display: inline-block; 
    background-color: #EDF6FF;
    border-radius: 20px;
    padding: 32px 32px; 
}

.client-logos-card {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
		padding-bottom: 24px;
}

.logo-item {
    flex: 0 0 calc(25% - 16px);
    max-width: calc(25% - 16px);

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
		height: 110px; 
		width: auto;
		max-width: 100%;
		object-fit: contain;
}

@media (max-width: 480px) {
    .logo-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .logo-item img {
        height: 80px;
    }
}

/* logo carousel */
.logo-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
	overflow: visible;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.carousel-item {
  padding: 20px 0;
}

.carousel-inner {
  padding: 0 20px;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-wrapper {
  padding: 10px;
}

.logo-card img {
  max-height: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/*
.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
} 
*/

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' fill='%23202020' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 0L1.25 4l4 4 1.5-1.5L4.25 4l2.5-2.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 8 8' fill='%23202020' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.75 0l4 4-4 4-1.5-1.5L3.75 4 1.25 1.5z'/%3E%3C/svg%3E");
}

.carousel-control-prev {
  left: -20px; /* or 0 */
}

.carousel-control-next {
  right: -20px; /* or 0 */
}


/* END FOR HOMEPAGE */

@media (min-width: 768px) {
            .img-seal {
							bottom: 3.5%;
                left: 80%; 
               width: 6rem;
            }
        }

@media (min-width: 1500px) {
            .img-seal {
							bottom: 4%;
                left: 76%; 
               width: 5rem;
            }
        }