#eudcationPage {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: transparent; /* or whatever you need */
    z-index: 1; /* lower so it doesn't cover other sections */
}

#eudcationPage > p{
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    z-index: 100;
    margin-top: 30px;
}


.educationContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 30px;
}

.educationCard{
    display: flex;
    align-items: center;
    width: 250px;
}

.educationCard {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background: rgba(102, 166, 255, 0.2); /* light transparent blue */
    border-radius: 16px;
    backdrop-filter: blur(10px); /* blur for glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
    padding: 10px;
    color: white;

    /* Glowing shadow effect */
    box-shadow:
        0 0 5px rgba(102, 166, 255, 0.6),
        0 0 10px rgba(102, 166, 255, 0.4),
        0 0 20px rgba(102, 166, 255, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Optional: Glow intensifies on hover */
.educationCard:hover {
    box-shadow:
        0 0 15px rgba(102, 166, 255, 0.6),
        0 0 30px rgba(102, 166, 255, 0.4),
        0 0 60px rgba(102, 166, 255, 0.2);
      transition: box-shadow 1s ease, transform 0.3s ease;
    transform: translateY(-10px); /* lift up */
}
    
 
#eduImge{
    width: 70px;
    height: 70px;
    position: relative; 
    animation: moveUpDown 2s infinite ease-in-out alternate;
}

@keyframes moveUpDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(5px);
  }
}


#eduTitleOfServices{
    text-align:center;
    color: lightgreen;
    font-size: larger;
    margin-top: 10px;
    font-weight: bolder;
}

#eduDescriptionOfServices{
    width: 100%;
    text-align: center;
    font-size: medium;
    word-spacing: 4px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    font-weight: 100;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
}
