* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}


.techology-container{
    margin-top: 40px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.techology-title{
    color: #254B72;
    text-align: center;
    margin: 60px 0px;
  
    font-weight: 600;
}
.icons-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    width: 130px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon {
    width: 60px;
    height: 60px;
    background-color: #DDEFF9;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-item .icon img{
    width: 30px;
}



.icon-mechanisms {
    background-color: #dce8f3;
}



.icon-name {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
    color: #254B72;
    font-weight: 600;
}

.description-container {
    border-radius: 10px;
    padding: 20px;
    min-height: 120px;
    margin-top: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #254B72;
    font-weight: 500;
}

.description ol {
    margin-left: 20px;
    margin-top: 10px;
}

.description li {
    margin-bottom: 8px;
}

.active {
   background-color: #32A3E5;
}


.material-icons {
    font-size: 24px;
}

/* ---------Responsive--------- */

@media(max-width:768px){
    .description{
        text-align: center;
    }
}


@media(max-width:425px){
    .description-container{
        min-height: 80px;
    }

    .techology-title {
        margin: 40px 0px;
    }
}


/* ------------Dark mode --------------- */
body.dark-mode {
    background-color: #010A16;  }

    body.dark-mode   .techology-title,body.dark-mode .description {
        color: rgb(255, 255, 255,0.7);
    } 