.background-photo{
    width: 100%;
    height: 800px;
    background-image: url("images/");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
}

:root{
    --primary-text-color:#13bbff;
}

body{
    background-color: #1E2330;
}

/* ...........my-galery................ */


.my-gallery-box{
    height: auto;
    width: 400px;
    margin: auto;
}



/* .gallery{
    display: flex;
    align-items: center;
    justify-content: center;
} */

.image-box{
    width: 100px;
    height: 500px;
    margin: 10px;
    border-radius: 80px;
    background-image: url(image_gallery/image-1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    transform: rotate(10deg);
    box-shadow: 1px 1px 3px black;
    display: inline-block;

}

.image-box:nth-child(2){
    background-image: url(image_gallery/image-2.jpg);
    background-size: cover;
    background-position: center;

}

.image-box:nth-child(3){
    background-image: url(image_gallery/image-3.jpg);
    background-size: cover;
    background-position: center;

}

.image-box:nth-child(4){
    background-image: url(image_gallery/image-4.png);
    background-size: cover;
    background-position: center;

}

.image-box:nth-child(5){
    background-image: url(image_gallery/code.jpg);
    background-size: cover;
    background-position: center;

}

.image-box h3{
    color:rgb(255, 255, 255);
    position: absolute;
    bottom: 0;
    left: 30px;
    opacity: 0;
    transition: bottom 0.5s, opacity 0.5s ;
    text-shadow: 1px 2px black;
}

.image-box:hover{
    width: 300px;
    cursor: pointer;
    transform: rotate(360deg);

}

.image-box:hover h3{
    opacity: 1;
    bottom: 25px;
    font-size: 30px;
}



/* ....................first-pic............ */

.first-pic img{
    /* width:300px;
    height:300px; */
    border-radius:50%;
   
    /* border: 2px solid var(--primary-text-color); */
    padding:0px;
    background: var(--primary-text-color);
    box-shadow: 0 0 60px var(--primary-text-color);
    
  
}

.first-pic img:hover{
    box-shadow: 0 0 60px fuchsia;
    transition: 0.5s;
    rotate:calc(360deg);
    /* transform: translateY(15px); */
    transform: scale();

}

.logo{
    background: var(--primary-text-color);
    box-shadow: 0 0 60px var(--primary-text-color);
    
    
}

.logo:hover{
    box-shadow: 0 0 60px fuchsia;
    transition: 0.5s;
    transform:rotate(360deg);
}

.contact-image{
   
    rotate:calc(360deg);
    background: var(--primary-text-color);
    box-shadow: 0 0 60px var(--primary-text-color);
}

.contact-image:hover{
    box-shadow: 0 0 60px fuchsia;
    transition: 0.5s;
    transform:rotate(360deg);
}
.about-me-box{
    border-radius: 0px 30px 0px 30px;
    box-shadow: 10px 10px 5px rgb(255, 238, 1);

}

.tools{
    background-color:#13bbff;
    width: 150px;
    height: 50px;
    margin: 50px 0px 30px 0px;
    box-shadow: 5px 5px 5px rgb(255, 238, 1);
    border-radius: 0px 20px 0px 20px;
    font-family: sans-serif;
    font-size: 20px;
}

.tools:hover{
    background-color: red;
    color:white;

}

.about-pic{
    border-radius: 0px 50px 0px 50px;
    filter: drop-shadow(5px 5px 2px rgb(0, 0, 0));

}

.about-pic:hover{
    transform: translateY(-10px);
    transition: 0.5s;
}

.nav-border{
    border: 1px solid #13bbff;
    border-radius: 20px;
}

.nav-border li:hover{
    color: #e7f706;
    transform: scale(10x);
}

.service-boxa{
    background-image: url(image_gallery/code.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(10px 10px 20px #000000);
    border-radius: 0px 30px 0px 30px;
    width: 290px;
    height: 290px;
}

.service-boxb{
    background-image: url(images/cyberworksamu.png);
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(10px 10px 20px #000000);
    border-radius: 0px 30px 0px 30px;
    width: 290px;
    height: 290px;
    background-position: center;
    
}

.service-boxc{
    background-image: url(images/video-editing.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(10px 10px 20px #000000);
    border-radius: 0px 30px 0px 30px;
    width: 290px;
    height: 290px;
}

.service-boxd{
    background-image: url(images/photography.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    filter: drop-shadow(10px 10px 20px #000000);
    border-radius: 0px 30px 0px 30px;
    width: 290px;
    height: 290px;
    background-position: center;
}

.service-boxa:hover, .service-boxb:hover, .service-boxc:hover, .service-boxd:hover{
    transform:translateY(10px);
    background-position: right;
    transition-duration:0.9s;
}

.service-name{
    border-radius: 0px 0px 0px 30px;

}

.social-media{
    height: 50px;
    width: 200px;
    display: flex;
    margin:auto;
    justify-content: center;
    gap: 20px;
    margin-top: -5px;
    margin-bottom: 20px;
}