
.edu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f0f8ff;
}
.edu-box {
    background-color: white;
    border: 2px solid #123897;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.edu-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #123897;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -25px;
    left: 20px;
    border: 2px solid white;
}
.edu-box.lkg .edu-icon { background-color: #00bcd4; } 
.edu-box.ukg .edu-icon { background-color: #ff9800; }
 .edu-box.class1 .edu-icon { background-color: #4caf50; }
  .edu-box.sat .edu-icon { background-color: #9c27b0; }
.edu-content {
    margin-top: 40px;
}
.edu-skills {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.edu-skills div {
    color: #123897;
}
