.icon-container {
    width: 70px;
    height: 70px;
  padding: 0 0 14px 0;
}
.slider-description {
    color: #000000;
    margin-bottom: 50px;
    font-family: 'Neue Plak';
    font-weight: 600;
    font-size: 20.81px;
    line-height: 27.32px;
    text-align: start;
}

.btn-main-container {
    display: grid;
    gap: 20px;
}
.btn-left, .btn-right {
    width: 40px;
}
.btn-left img,
.btn-right img {
  transition: filter 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.btn-left img.disabled,
.btn-right img.disabled {
  filter: grayscale(100%) brightness(70%);
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}



.slider-content-image-container {
    display: flex;
    gap: 20px;
    align-items: center;
}
.slider-photo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;  
}

.slider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.swiper-card-slider-container {
    width: 100%;
    max-width: 483px;
 	min-height:467px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
 	justify-content: center;
}

.swiper {
    width: 100%;
    min-height: 467px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: #f2f2f2; /* Default background */
}

.slider-card {
    width: 100%;
  	min-height: 467px;
    padding: 30px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.slider-content {
    padding: 10px;
}

.slider-name {
    font-family: 'Neue Plak';
    font-weight: 700;
    font-size: 19.51px;
    line-height: 27.32px;
  	margin: 0;
  	text-align: start;
  	color: #000000;
}

.slider-designation {
    color: #000000;
    font-family: 'Neue Plak';
    font-weight: 400;
    font-size: 19.51px;
    line-height: 27.32px;
    margin: 0;
    text-align: start;
  	padding: 5px 0 0 0;
}


/* Optional Navigation Button Styles */
.swiper-button-prev,
.swiper-button-next {
    color: #333;
}

/* Mobile view (max-width 768px) */
@media (max-width: 768px) {
  .swiper-card-slider-container {
  overflow: hidden;
}
  .btn-main-container {
    transform: rotate(-90deg);
    margin-top: -85px;
}
  .swiper-card-slider-container {
  	flex-wrap: wrap;
}
}