.aboutContainer{
    margin-left: 6rem;
    margin-right: 6rem;
    position: relative;
    z-index: 1;
}

.fade-in-scale {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    background-color: rgba(0, 255, 255, 0.18);
    color: white; 
}
 
.fade-in-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1); 
}

.rounded-3xl {
    border-width: 2px; 
    border-style: solid;
    border-color: rgba(16, 97, 173, 0.581); 
    box-shadow: 0 1px 10px rgba(49, 11, 162, 0.664);

}  

.aboutHeading{
    background-color: transparent;
    font-weight: bolder;
    text-shadow: 
        0px 0px 10px cyan,
        0px 0px 10px cyan,
        0px 0px 10px cyan; 
}


h2 {
    text-align: center; 
}

ul {
    margin: 0; 
    margin-left: 1rem;
}

.row-span-4 {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 300px; 
    width: 100%; 
    overflow: hidden; 
    position: relative;
}

.developer-image {
    height: 100%; 
    width: auto; 
    object-fit: contain; 
    transition: transform 0.3s ease; 
}




.scroll-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  width: 50px; 
  height: 50px; 
  color: white;
  background-color: transparent; 
  border-radius: 10px; 
  border: 2px solid rgba(255, 255, 255, 0.54);
  text-decoration: none; 
  position: relative;
  left: 48%;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.scroll-button:hover {
  background-color: rgba(0, 255, 255, 0.7);
  border-color: rgba(0, 204, 255, 0.7); 
  transform: scale(1.1); 
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.5); 
}
.scroll-button:hover .scrollArrow {
  fill: black; 
}

.aboutSectionMobile{
    display: none;
}

@media (min-width: 1300px) {
    .developer-image {
        width: 100%; 
        height: auto; 
        object-fit: cover !important; 
        object-position: top !important;    
    }
}
@media (min-width: 641px) and (max-width: 1025px){
    #About {
        display: none; 
    }
    .scroll-button{
        display: none;
    }

    .aboutSectionMobile {
        display: block;
        margin-top: -50px;
        margin-right: 6rem;
        margin-left: 6rem;
    }

    .aboutContainerMobile {
        margin: 0 auto;
        max-width: 90%;
    }

    .fade-in-scale {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        background-color: rgba(0, 255, 255, 0.18);
        color: white;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
    }

    .fade-in-scale.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .rounded-3xl {
        border-width: 1px;
        border-style: solid;
        border-color: rgba(16, 97, 173, 0.581);
        box-shadow: 0 1px 8px rgba(49, 11, 162, 0.664);
    }

    .aboutHeadingMobile {
        background-color: transparent;
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 20px;
        margin-bottom: 8px;
        text-shadow: 
            0px 0px 10px cyan,
            0px 0px 10px cyan,
            0px 0px 10px cyan; 
       
    }


    .about-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: auto; 
        min-height: 200px;
    }
    .developer-image {
        width: 35%;
        height: 200%; 
        object-fit: cover; 
        margin-right: 2rem;
    }
    .about-text{
        display: none;
    }
    .about-text-tablets {
        flex: 1;
        font-size: 14px;
        padding-right: 12px;
        padding-left: 1rem;
    }

    .about-text-tablets ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .about-text ul li {
        display: flex;
        align-items: center;
        padding: 4px 0;
    }
    .skills-block,
    .languages-block {
        display: none;
    }
    
    .certifications-block {
        padding: 12px;
        border-radius : 8px;
        margin-bottom : 12px;
        padding-top : 0%;
        
    }

    .certifications-block ul{
        margin-left : 1rem;
        margin-left : 3rem;
    }

    h2 {
        text-align: center;
        font-size: 18px;
        margin: 12px 0;
    }
    ul {
        list-style-type: disc; 
        padding-left: 20px; 
    }
    .certifications-block ul{
        padding-left: 2rem; 
    }

    .Skills-Labguages-Tablets {
        display: flex; 
        justify-content: space-between; 
        gap: 20px; 
    }
    
    .skills-block-Tablets,
    .languages-block-Tablets {
        flex: 1; 
        background-color: rgba(0, 255, 255, 0.18);
        color: white;
        font-weight: bold;
        text-align: center;
        font-size: 20px;
       
    }
    
    h2 {
        margin-bottom: 10px; 
    }
    
    .bulletsTablet {
        list-style-type: disc; 
        padding: 0; 
        font-weight: normal;
        text-align: left;
    }
    
    li {
        margin-bottom: 8px; 
    }
    
}

@media (max-width: 768px) {
    #About {
        display: none; 
    }
    .scroll-button{
        display: none;
    }
}

@media (max-width: 480px) {
    .aboutSectionMobile {
        display: block;
        margin-top: -50px;
        margin-right: 1rem;
        margin-left: 1rem;
    
    }

    .aboutContainerMobile {
        margin: 0 auto;
        max-width: 90%;
    }

    .fade-in-scale {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        background-color: rgba(0, 255, 255, 0.18);
        color: white;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
    }

    .fade-in-scale.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .rounded-3xl {
        border-width: 1px;
        border-style: solid;
        border-color: rgba(16, 97, 173, 0.581);
        box-shadow: 0 1px 8px rgba(49, 11, 162, 0.664);
    }

    .aboutHeadingMobile {
        background-color: transparent;
        color: white;
        font-weight: bolder;
        text-align: center;
        font-size: 30px;
        margin-bottom: 8px;
        -webkit-text-stroke: 0.5px  rgb(2, 80, 80); 
        text-shadow: 
            0px 0px 10px cyan,
            0px 0px 10px cyan,
            0px 0px 10px cyan; 
       
    }

    
    .about-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: auto; 
        min-height: 200px;
    }
    .developer-image {
        display: none;
    }
    .about-text-tablets{
        display: none;
    }
    .about-text {
        flex: 1;
        font-size: 14px;
        padding-right: 12px;
    }

    .about-text ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .about-text ul li {
        display: flex;
        align-items: center;
        padding: 4px 0;
    }
    .Skills-Labguages-Tablets{
        display: none;
    }
    
    .certifications-block,
    .skills-block,
    .languages-block {
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 12px;
        padding-top: 0%;
    }

    .certifications-block ul,
    .skills-block ul,
    .languages-block ul {
        margin-left: 1rem;
    }

    h2 {
        text-align: center;
        font-size: 18px;
        margin: 12px 0;
    }
    ul {
        list-style-type: disc; 
        padding-left: 20px; 
    }
    .certifications-block ul{
        padding-left: 0; 
    }

}
