.slider-section {
    width: 100%;
    padding: 60px 40px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.left-title h2 {
    font-size: 32px;
    line-height: 1.4;
    padding-left: 20px;
    position: relative;
}

.left-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: black;
}

.slider {
    width: 70%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.slide img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    transition: 0.3s;
}

.slide img:hover {
    transform: scale(1.1);
}

.slide p {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.image-box img {
    height: 600px;
    width: 100%;
    display: block;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
}

.image-box:hover img {
    filter: brightness(1.08) contrast(1.05);
}

.image-box:hover::before {
    opacity: 1;
}

/**/
.logo-card {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s;
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #000;
}

.logo-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.logo-card:hover img {
    transform: scale(1.07);
}

@keyframes scrollSlider {
    0% {

        transform: translateX(0);
    }

    100% {

        transform: translateX(-20%);
    }
}

.product-card {

    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* LEFT IMAGE */


.certificate-wrapper {
    display: flex;
    gap: 60px;
}

/* LEFT IMAGE */

.certificate-image {

    position: relative;
    border-radius: 20px;
}

.certificate-image img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
    display: block;
}

.certificate-image:hover img {
    transform: scale(1.05);
}

.certificate-content {
    flex: 1;
}

.cs_list_info {
    border-bottom: 1px solid black;
}

.csr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csr-list li {
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
}

.csr-list li i {
    color: #b78b47;
    font-size: 18px;
}

/* IMAGE SIDE */
.csr-image-wrapper {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.csr-main-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 25px;
}

.csr-side-images {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.csr-side-images img {
    width: 190px;
    height: 225px;
    object-fit: cover;
    border-radius: 22px;
}

.csr-main-image {
    width: 270px;
}

/* HOVER */

.csr-image-wrapper img {
    transition: 0.4s ease;
}

.csr-image-wrapper img:hover {
    transform: translateY(-8px);
}


.info-section h2{
    margin-bottom: 40px;
}

.workshop-masonry {
  column-count: 4;
  column-gap: 15px;
  width: 100%;
}

.workshop-item {
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.workshop-item img {
  width: 100%;
  height: auto;
  display: block;
}

.workshop-item:hover {
  transform: scale(1.03);
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  object-fit: contain;
}

.modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-height: 85vh;
  max-width: 85vw;
  border-radius: 5px;
  animation: zoomIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
  transition: 0.3s;
}

.close-btn:hover {
  color: black;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  cursor: pointer;
  padding: 20px;
  z-index: 100000;
  transition: 0.3s;
  background: transparent;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

