/*All*/
* {
    margin: 0;
    padding: 0;
}

/*HTML*/
html{
    scroll-behavior: smooth;
}

/*Body*/
body {
    margin: 0;
    padding: 0;
    background-color: #222831;
}

/*Navbar And Home*/
#navbarAndHome {
    position: relative;
    margin-bottom: 20px;
}

#navbarAndHome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../IMG/homeBack.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
}

/*Navbar*/
#navbar {
    color: rgba(243, 243, 243, 0.7);
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}

.logoAndMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
}

.logo img {
    width: 70px;
}

.menu img {
    width: 30px;
    cursor: pointer;
}

.menu {
    display: none;
    cursor: pointer;
}

.services{
    display: flex;
    justify-content: center;
    align-items: center;
}

.services a {
    text-decoration: none;
    color: rgba(243, 243, 243, 0.7);
    transition: all 0.5s;
    font-size: 17px;
}

.services a:not(:last-child) {
    margin-right: 30px;
}

.services a:hover {
    text-decoration: underline;
    color: white;
}

nav .active {
    color: #5555f3 !important;
    text-decoration: underline !important;
}

/*Message pop up*/
#messagePopUp{
    padding: 0.5% 3%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: sticky;
    top: 0;
    border-radius: 5px;
}
#cross{
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: 'Segoe UI Symbol';
}
#cross:hover{
    color: blue;
}
#messagePopUp p{
    margin-right: 50px;
}
.success{
    background-color: rgb(75, 243, 75);
}
.failure{
    background-color: rgb(233, 98, 98);
}

/*Home Section*/
#homeSection {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    grid-gap: 5%;
    color: white;
}

#homeSection img {
    width: 100%;
}

.profile {
    font-size: 1.4rem;
}


/*Container*/
#container {
    margin: 12px 0%;
    border: 1px solid #393E46;
    border-radius: 5px;
    padding: 10px 2%;
    position: relative;
}

#container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #393E46;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
}

/*Qualification*/
#qualificationSection {
    margin-top: 2%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#qualificationSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.universityBox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    grid-gap: 20px;
    margin-top: 30px;
    color: rgba(0, 0, 0, .9);
    position: relative;
    margin-bottom: 30px;
}

.universityImage img {
    width: 100%;
}

.universityDetails {
    overflow: hidden;
}

.schoolBox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    grid-gap: 20px;
    margin-top: 30px;
    color: rgba(0, 0, 0, .9);
    position: relative;
    margin-bottom: 30px;
}

.schoolImage img {
    width: 100%;
}

.schoolDetails {
    overflow: hidden;
}

.collegeBox {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    grid-gap: 20px;
    margin-top: 30px;
    color: rgba(0, 0, 0, .9);
    position: relative;
    margin-bottom: 30px;
}

.collegeImage img {
    width: 100%;
}

.collegeDetails {
    overflow: hidden;
}

.details {
    overflow: hidden;
    transition: all 2s;
    padding: 12px 20px;
    margin-left: 6%;
}

.details h1 {
    text-decoration: underline #dbd8d8;
    color: black;
}

/*Skills Section*/
#skillsSection {
    margin-top: 5%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#skillsSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.skillContainer {
    width: 100%;
    background-color: rgb(189, 187, 187);
    margin-bottom: 10px;

}

.skillHTML {
    width: 90%;
    color: white;
    padding: 10px 12px;
    text-align: right;
    background-color: #04AA6D;
    text-decoration: underline #04AA6D;
    color: white;
}

.skillCSS {
    width: 70%;
    color: white;
    padding: 10px 12px;
    text-align: right;
    background-color: #2196F3;
    text-decoration: underline #2196F3;
    color: white;
}

.skillJS {
    width: 80%;
    color: white;
    padding: 10px 12px;
    text-align: right;
    background-color: #f44336;
    text-decoration: underline #f44336;
    color: white;
}

.skillBootstrap {
    width: 60%;
    color: white;
    padding: 10px 12px;
    text-align: right;
    background-color: #808080;
    text-decoration: underline #808080;
    color: white;
}

.reveal {
    position: relative;
    width: 0%;
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    width: 100%;
    opacity: 1;

}

.reveal1 {
    position: relative;
    left: 100%;
}

.reveal1.active {
    left: 0%;
}

/*Career And Expeirience*/
#careerAndExpirience {
    position: relative;
}

.career {
    margin-top: 8%;
    padding-top: 4%;
    padding-bottom: 20%;
    padding-left: 3%;
    padding-right: 3%;
    border-radius: 5px;
    position: relative;
}

.career::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(110, 7, 243);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.career {
    color: white;
    position: relative;
}

.experience {
    margin: 3%;
    margin-top: -10%;
    border-radius: 5px;
    display: flex;
    background-color: #fff;
    border: 2px solid rgb(230, 236, 248);
}

.experienceBox:not(:last-child) {
    border-right: 2px solid rgb(230, 236, 248);
}

.experienceBox {
    padding: 3%;

}

.experienceDetails p {
    font-size: 1.2rem;
}

.experienceImg {
    margin-top: 1em;
    margin-bottom: 2em;
    text-align: center;
}

.experienceImg img {
    border: 1px solid black;
    padding: 10px 8px;
    border-radius: 46px;
    background-color: #5be9b9;
}

.reveal2 {
    transition: all 1.2s;
}

.reveal2.active {
    transform: scale(1.2);
}

/*Project*/
#projectsSection {
    margin-top: 5%;
    padding: 15px 30px;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

#projectsSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.projectsBoxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    overflow: hidden;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 30px;
    width: 45%;
    margin-bottom: 20px;
}

.box img {
    width: 100%;
}

.image {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.textOverlay {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all 0.8s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    border-radius: 5px;
    backdrop-filter: blur(1px);
    font-size: 1.3rem;
    font-weight: bolder;
}

.textOverlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #141c3a;
    width: 100%;
    height: 99%;
    border-radius: 5px;
    opacity: .4;
    z-index: -1;
    border-radius: 5px;
}

.textOverlay h1 {
    border-right: 2px solid rgb(189, 187, 187);
    margin-right: 4%;
    padding-right: 1%;
}

.imageOverlay {
    position: absolute;
    top: 0%;
    left: 0%;
    background: #141c3a;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.7s;
    font-size: 90%;
    transform: scale(1.1);
}

.imageOverlay:hover {
    opacity: 1;
    transform: scale(1);
}

.imageOverlay a {
    margin-top: 15px;
    padding: 10px 20px;
    border: 2px solid #6E07F3;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all .6s;
}

.imageOverlay a:hover {
    background-color: #6E07F3;
}

.reveal3 {
    transition: all 1.2s;
    position: relative;
    left: 100%;
}

.reveal3.active {
    left: 0;
}

/*Collabarations*/
#collabarationSection {
    margin-top: 2%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#collabarationSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}
.collabs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.collabBox{
    width: 20%;
}
.collabBox
{
    margin-right: 10%;
    margin-bottom: 5%;
}
.collabs img{
    width: 100%;
}

.reveal4 {
    transition: all 1.2s;
    opacity: 0;
    transform: scale(1.1);
}

.reveal4.active {
    opacity: 1;
    transform: scale(1);
}

/*Testimonial Section*/
#testimonialSection {
    margin-top: 2%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#testimonialSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}
.testimonials{
    width: 80%;
    overflow: hidden;
    margin: auto;
    border-radius: 5px;
}
.Slide{
    display: flex;
    width: 300%;
}
.Slide input{
    display: none;
}
.testimonialBox{
    width: 33.33%;
    transition: all 0.7s;
}
.testimonialBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.testimonialBox img{
    margin-bottom: 20px;
    margin-top: 20px;
    margin: 20px;
    border-radius: 40px;
}
.testimonialBox p{
    margin-bottom: 20px;
}
.mannualSlide{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 80%;
    position: absolute;
    bottom: 10px;
    margin-left: -2.5%;
}
.mannualBtn{
    border: 2px solid #eb7609;
    padding: 6px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5;
}
.mannualBtn:hover{
    background-color: #fe7900;
}
.mannualBtn:not(:last-child)
{
    margin-right: 5%;
}
#radio1:checked ~ .first{
    margin-left: 0%;
}
#radio2:checked ~ .first{
    margin-left: -33.33%;
}
.testimonialActive{
    background-color: #fe7900;
}

/*Contact Section*/
#contactSection {
    margin-top: 2%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#contactSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.contactForm input, textarea{
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.contactForm input:focus, textarea:focus{
    outline: none;
    border: 1px solid transparent;
    box-shadow: 0 0 10px rgb(150, 150, 201);
    border-collapse: collapse;
}

.contactForm{
    padding: 2% 30%;
}

#send{
    padding: 10px 20px;
    border: 2px solid #8a38f5;
    background-color: #8a38f5;
    border-radius: 5px;
    color: black;
    width: 70%;
    font-size: 16px;
    transition: all 0.5s;
    cursor: pointer;
}

#send:hover{
    border: 2px solid #6E07F3;
    background-color: #6E07F3;
    color: white;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
}

.warningMessage{
    margin-bottom: 10px;
    color: red;
    display: none;
}


/*Strat Project Section*/
#startProjectSection {
    margin-top: 2%;
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
}

#startProjectSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #dbd8d8;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 1;
    z-index: -1;
}

.ProjectForm input, select, textarea{
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.ProjectForm input:focus, select:focus, textarea:focus{
    outline: none;
    border: 1px solid transparent;
    box-shadow: 0 0 10px rgb(150, 150, 201);
    border-collapse: collapse;
}

.ProjectForm{
    padding: 2% 30%;
}

#pSend{
    padding: 10px 20px;
    border: 2px solid #8a38f5;
    background-color: #8a38f5;
    border-radius: 5px;
    color: black;
    width: 70%;
    font-size: 16px;
    transition: all 0.5s;
    cursor: pointer;
}

#pSend:hover{
    border: 2px solid #6E07F3;
    background-color: #6E07F3;
    color: white;
}

.pbutton{
    display: flex;
    justify-content: center;
    align-items: center;
}

.pWarningMessage{
    margin-bottom: 10px;
    color: red;
    display: none;
}

#pMessagePopUp{
    padding: 0.5% 3%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: none;
    position: sticky;
    top: 0;
    border-radius: 5px;
}

#footerSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    padding-top: 10%;
    margin-top: 2%;
    overflow: hidden;
}
#footerSection::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    background-color: rgb(107 7 243);
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: -1;
}

.footerLogo{
    width: 15%;
    margin-bottom: 1%;
}

.footerLogo img{
    width: 100%;
}

footer h3{
    margin-bottom: 3%;
    text-decoration: underline rgb(110, 7, 243);
}

.socialMediaHandles{
    margin-bottom: 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socialMediaHandles img{
    padding: 5px;
    border: 1px solid rgba(243, 243, 243, 0.7);
    border-radius: 34px;
    transition: all 0.5s;
}
.socialMediaHandles img:hover{
    background-color: rgba(243, 243, 243, 0.7);
}

.socialMediaHandles a:not(:last-child)
{
    margin-right: 10px;
}

footer h2{
    margin-bottom: 1%;
}


/*Utility Classes*/
.heading {
    margin-top: 20px;
    text-align: center;
    font-size: 3.5rem;
}
.headingPara{
    margin-top: 20px;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.headSpan {
    text-shadow: 4px 2px 1px gray;
}

.alignCenter {
    text-align: center;
}

.purple {
    color: rgb(110, 7, 243);
}

.space {
    margin-bottom: 2em;
}

.orange{
    color: #fe7900;
}

.green{
    color: #8CFFDA;
}

.black{
    color: #333;
}

.neon{
    color: #0a3153;
}

.red{
    color: red;
}

.redBorder{
    border: 2px solid red;
}
.whiteBorder{
    border: 2px solid #dbd8d8;
}
.greenBorder{
    border: 2px solid rgb(21, 223, 21);
}