@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Mansalva&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* #scrollTop{
    position: absolute;
    content: " ";
    inset: 0px;
    background-color: rgb(0, 0, 0);
    z-index: 6;
    opacity: 0;
    transition: all 0.3s ease 0s;
    border-radius: inherit;
    pointer-events: none;
} */
/* .nav-item a{
    transition-duration: 500ms;
} */
#scrollTop{
    background:none;
    outline:none;
    border:none;
    position: fixed;
    bottom: 35px;
    right: -20px;
    animation: scrollToTopAnimation 3s infinite;  
    z-index:5;
}

#scrollTop img{
    width: 100%;
}
#scrollTop #scrollContainer{
    transition-duration: 300ms;
}
#scrollTop #scrollContainer:hover{
    background-color: black;
    color: white;
}

.nav-item a.real-nav:hover{
text-decoration: dashed;
background-color: #AEDBCE;
border-radius: 5px;
color: black;
/* font-size: 20px; */
}
.navbar-toggler{
    color: #faffaf; background-color: #95d1cc;
}
.position-relative div{
    background-color: red;
    width: 50px;
    height: 50px;
    margin: 15px;
}
nav{
    list-style: none;
}

/* Skills Section */
.skills-container div{
    border-radius: 10px;
}

/* .skills-container div{ */
    /* box-shadow: 0px 0px 10px 5px black; */
    /* background-color: whitesmoke;
} */
.skills-container div div{
    /* box-shadow: 0px 0px 10px 5px black; */
    background-color: whitesmoke;
}
.skills-container div:hover{
    /* border: 1px solid #FFA500; */
    /* &&&&&&&&&&&&& in construction */
}



/* Projects Section */
/* I used these for inner space, But I chaned my mind */
.image-box{
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.image-box,.project-image{
    overflow: hidden;
    margin: auto;
    position: relative;
}

.image-box img,.project-image img{
    max-width: 100%;
    transition: all 0.3s;
    transform: scale(1);
}

.image-box:hover img,.project-image:hover img{
    transform: scale(1.1);
}

.preview-btn a,.sendBtn{
    text-decoration: none;
    color: #e39400;
    border: 1px solid #e39400;
    border-radius: 10px;
    transition-duration: 500ms;
}
.preview-btn a:hover,.sendBtn:hover{
 color: white;
 background-color:#e39400;
}
.preview-btn{
    border: 0px transparent;
    /* I overrided the class btn, in which when I hovers over a button, it provides ugly black border*/
}


/* beacause it didnt support transition with bg-light I added to it in index.js (mouseover) and (mouseenter), I just commented it out */
/* .about-info{
    transition-duration: 500ms;
}

/* Contact Section */
#contact #contact-form input{
    height: 3rem;
}



@keyframes scrollToTopAnimation {
    0% {transform: scale(1.0)}
    50% {transform: scale(1.2);}
    100% {transform: scale(1.0);}

  }


  .desc:hover{
    box-shadow: 0px 0px 15px 2px #F5A962;
  }

  .fa-facebook{
    color: #3b5998;
  }
  .fa-linkedin{
    color: #0a66c2;
  }
  .fa-github{
    color: #171515 ;
  }
  .fa-twitter{
    color: #00acee;
  }
.about-info-detail-img{
    /* border: 5px solid #e3862e; */
    box-shadow: 0px 0px 15px 4px #e3862e;
   transition-duration: 500ms ;
}
.about-info-detail-img:hover{
    /* border: 5px solid #e3862e; */
    box-shadow: 0px 0px 25px 4px #e3862e;
    transform: scale(1.03);
}


/* Social Icons */
.social-icons a i{
    transition-duration: 500ms;
}
.social-icons a i:hover{
    transform: scale(1.3);
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #language_and_tools{
        
    }
    #letsGetInTouch {
        font-size:1.3rem;
    }

    /* I copied and pasted the same code for extra small and also in small devices media query, becuase it has max-width and the other one has min-width:600px */
    #projects .project .desc{
        margin-left: 0px;
        margin-top: -150px;
        z-index: 6;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #language_and_tools{
        font-size: 1.5rem;
    }
 #projects .project .desc{
        margin-left: 0px;
        margin-top: -150px;
        z-index: 6;
    }
    #letsGetInTouch {
        font-size:1.4rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    #letsGetInTouch {
        font-size:1.8rem;
    }
    #projects .project .flex-row .desc, #projects .project .flex-row-reverse .desc{
        background-color: rgba(255, 255, 255, 0.7);
        transition-duration: 500ms;
      } 
   
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
#language_and_tools{
    font-size: 2rem;
}
#projects .project .flex-row .desc{
    margin-left: -360px;
}  
#projects .project .desc{
    margin-top: 0px;
}
#projects .project .flex-row-reverse .desc{
    margin-right: -360px;
 }
 #projects .project .flex-row .desc, #projects .project .flex-row-reverse .desc{
    background-color: rgba(0, 0, 0, 0.1);
    transition-duration: 500ms;
  } 
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}