
/* Section Layout */
#exp-circle {
  position: relative;
  width: 180px;
  height: 180px;
  margin: auto;
}

#exp-circle svg {
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite reverse;
}

#exp-circle text {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  fill: #eaecf0;
}

.exp-number {
  position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.exp-number h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #e3e7ed;
  margin: 0;
}

.exp-number p {
  font-size: 1rem;
  color: #e3e7ed;
  margin: 5px 0 20;
  text-align: center;
}

@keyframes rotate {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

/*--------------------- Slider Container --------------------*/
/* Skills row */





.skill_box
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Divider & Section headings */
/* .Siders {
    margin-top: 35px;
    padding: 25px 15px;
} */



.types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.list_types {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}
/* .list_types:hover {
    background: #1e2023;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
} */

.list_types>span {
    color: black;
}

.types {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    animation: Slider_container 15s linear infinite;
    overflow: hidden;
    width: 1201px;
    text-align: center;
}

.abt {
    margin-left: 186px;
    font-family: "Tapestry", serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 2px 2px rgba(54, 10, 10, 0.426);
    font-size: 60PX;
    text-align: justify;
    color:  #ECF0F1;
}

.Siders {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    overflow: hidden;

}

@keyframes Slider_container {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(25%);
        /* move half width since content is duplicated */
    }

}
.type_box {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    animation: Slider_box 15s linear infinite;
    overflow: hidden;
    width: 1201px;
}
@keyframes Slider_box {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
        /* move half width since content is duplicated */
    }

}


