#projectsPage {
    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 */
}

#projectsPage > p{
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    z-index: 100;
    margin-top: 30px;
}


.projectsContainer1{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 30px;
}

#viewMoreProjectsContainer{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 30px;    
}

.hidden {
  display: none !important;
}


#viewMoreBtn {
    width: 200px;
    align-items: center;
    align-self: center;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
   font-size: clamp(1rem, 1.5vw + 0.8rem, 1.2rem);
    font-weight: bold;
    color: white;
    border: 2px solid transparent; /* 👈 base border defined */
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    border-style: solid; 
    border-color: rgba(102, 166, 255, 0.723);
    border-width: 2px;
    background-color: rgba(102, 166, 255, 0.141);
      transition: all 1s ease; /* transition everything in 2 seconds */

}

#viewMoreBtn:hover {
      transition: all 1s ease; /* transition everything in 2 seconds */

    background-color:rgba(102, 166, 255, 0.6) ;
     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;
}



.projectsCard{
    display: flex;
    align-items: center;
    width: 250px;
}

.projectsCard {
    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 */
.projectsCard: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 */
}
    
 
.atom-border {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 5px; /* thickness of orbit (border) */
  background: linear-gradient(45deg, #4257f5, #478ed1, #6dd5ed) border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atom-border img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white; /* keeps inside clean */
  display: block;
}




@keyframes moveUpDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}

#proTitleOfServices {
    text-align: center;
   color: rgb(255, 179, 15);
    font-size: larger;
    margin-top: 10px;
    font-weight: bolder;

    text-shadow: 
        1px 1px 0 #999,   
        2px 2px 0 #777,   
        3px 3px 0 #555, 
        4px 4px 5px rgba(0, 0, 0, 0.5); /* blurred deep shadow */
}


#proDescriptionOfServices{
    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;
}


