* {
  box-sizing: border-box;
}
.img-cover {
    border:1px solid rgb(185, 185, 185);
    height: 108px;
    width: 108px;
    border-radius: 5px;
    position: absolute;

}
.img-cover .editor-in-cheif-photo {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: relative;
}

ul.editor-in-cheif-profile-contant {
    list-style-type: none;
    margin-top: 10px;
    margin-left: 55px;
    line-height: 28px;
}
ul.reviewers-profile-contant {
    list-style-type: none;
}


img.indexing-logo-size {
    height: 100px;
    width: 300px;

}

.slider_container {
  position: relative;
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 400%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  animation: 30s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
}
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
}
img {
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-o-user-select:none;
user-select:none;
pointer-events:none
}
.slide .caption {
  position: absolute;
  left: 0;
  bottom: 5%;
  font-size: 5rem;
  font-weight: 600;
  color: white;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.348);
  backdrop-filter: blur(10px);
  padding: 1rem 5rem;
  border-radius: 0 2rem 2rem 0;
}
@keyframes sliding {
  0% {
    transform: translateX(0%);
  }
  20% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }

}
/* for indexing banner ......*/
.ijss_indexing_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
    padding: 1rem;
    max-width: 800px;
    align-content: center;
}
.ijss_indexing_page_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    padding: 1rem;
    max-width: 800px;
    align-content: center;
      margin: auto;
}

.ijss-cursor-box {
    width: 205px;
    height: 70px;
    background-color: #333;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
.ijss-page-cursor-box {
    width: 170px;
    height: 60px;
    background-color: #333;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.ijss-cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(8, 158, 71, 0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}
.ijss-page-cursor-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(8, 158, 71, 0.1), transparent);
    top: -100%;
    left: -100%;
    transition: all 0.5s ease;
}

.ijss-cursor-box:hover::before {
    top: 100%;
    left: 100%;
}
.ijss-page-cursor-box:hover::before {
    top: 100%;
    left: 100%;
}

/* Unique styles for each cursor type */
.ijss-pointer {
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff, #fffefe);
    border: 2px solid #089E47
}
.ijss-pointer-page {
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff, #fffefe);
    border: 2px solid #089E47
}
.ijss-pointer:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #55c483
}
.ijss-pointer-page:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #55c483
}


/* Animations */
@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.05); }
    25% { transform: translateX(-5px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.05); }
}

@keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}

@media (max-width: 768px) {
    .ijss_indexing_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .ijss-cursor-box {
     width: 170px;
     height: 50px;
    }
}

@media (max-width: 480px) {
    .ijss_indexing_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .ijss-cursor-box {
      width: 170px;
      height: 50px;
    }

}
@media (max-width: 768px) {
    .ijss_indexing_page_container {
        grid-template-columns: repeat(3, 1fr);
    }
    .ijss-page-cursor-box {
     width: 150px;
     height: 50px;
    }
}

@media (max-width: 480px) {
    .ijss_indexing_page_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .ijss-page-cursor-box {
      width: 150px;
      height: 50px;
    }

}
