/*
Name- Aryankumar Niteshkumar Patel
Student ID-103094215
Seneca Email-Id:anpatel34@myseneca.ca
SECTION CODE: WEB222 NDD */


/* Google Font CDN Link */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Palette+Mosaic&family=Ubuntu:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-top: 2rem;
}

.text {
    text-align: center;

}

.honesty h3 {
    color: rgb(255, 215, 0);
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

.honesty h3:hover {
    text-decoration: underline;
    background-color: red;
    cursor: default;
}

#Basic_info2,
th,
td {
    padding-left: 40%;
    padding-right: 50%;
    color: white;
    font-size: 1.rem;
    font-family: 'Bebas Neue', cursive;
}


 :root {
    --primary-color: rgb(128, 213, 255);
    --black-color: #0E2431;
    --white-color: #fff;
}

body {
    font-family: 'Ubuntu', sans-serif, 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, inconsolas, monospace;
    background-color: rgb(61, 179, 219);
    background-size: cover;
    padding: 10px;
    margin: 2px;
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-image: url('https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8ZGFya3xlbnwwfHwwfHw%3D&auto=format&fit=crop&w=500&q=600');
}

nav {
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: #5EBEC4;
    padding: 5px 0;
    box-shadow: 2px 2px 20px rgb(0, 0, 0);

}

nav .navbar {
    width: 20%;
    height: 150%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

nav .navbar .portLogo a {
    font-style: italic;
    font-weight: bold;
    font-size: 50px;
    color: black;
    text-decoration: none;
    align-items: center;
}

nav .navbar .portLogo a:hover {
    background-color: rgb(197, 136, 22);
    text-decoration: underline;
    color:  #0f0503;
    border: #321812 solid 1px;
    background:#fff;
    border-radius: 10px;
}

nav .navbar .menu {
    display: flex;
    position: relative;
}

nav .navbar .menu li {
    list-style: none;
    margin: 0 12px;
    font-size: 20px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Titillium Web';
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

nav .navbar .menu a {
    padding: .5em .8em;
  color: rgba(255,255,255,.5);
  position: relative;
  text-decoration: none;
  font-size: 20px;
}

.navbar .menu a:hover {
    color: #3DA35D;
}

nav .navbar .menu {
    position: absolute;
    color: var(--white-color);
    right: 30px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.home {
    height: 100vh;
    width: 100%;
    background-color: rgba(13, 14, 14, 0.12);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.home .home-content {
    width: 90%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* image */



.img {
    border-radius: 50%;
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  align-items: center;
  }

  .img .container {
    position: relative;
    width: 50%;
  }

  /* **** */

  .container {
    text-align: center;
    padding: 10px 20px;
  }

.home .text-one {
    color: white;
    font-size: 25px;
}

.home .text-two {
    color: white;
    font-size: 66px;
    font-weight: bold;
}

.home .text-three {
    font-size: 40px;
    margin: 5px 0;
    color: white;
}

.home .text-four {
    font-size: 22px;
    margin: 5px 0;
    color: rgb(255, 255, 255);
}

.home .button {
  Width: 250px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: left;
  flex-direction: column;
}

.home .button button {
    padding: 1px 2px;
    border-radius: 6px;
    font-size: 25px;
    font-weight: normal;
    background-color: rgb(255, 255, 255);
    color: rgb(89, 0, 89);
    cursor: pointer;
    border: 2px solid transparent;
    margin-left: 0%;
}

.home .button button:hover {
    background-color: rgb(207, 239, 254);
    color: rgb(52, 56, 191)
}

/* Section */

section {
    padding-top: 40px;
}

section .content {
    width: 80%;
    margin: 40px auto;
    font-family: 'Ubuntu', sans-serif;
}

section .title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    
}

section .title span {
    color: wheat;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid wheat;
    align-items: center;
}

section .title span::before
{
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgb(154, 142, 131);
    left: 0;
    bottom: 0;
}

section .title span::after {
    bottom: -7px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.about .about-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .about-details .left {
    width: 45%;
}

.about .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.about .about-details .right {
    width: 100%;
}

section .topic {
    text-align: center;
    color: #ffcf00;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-details .right p {
    text-align: justify;
    color: var(--black-color);
}

section .button {
    margin: 16px 0;
}

section .button button {
    margin-left: 42%;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 25px;
    font-weight: 400;
    background-color: rgb(193, 255, 250);
    color: rgb(255, 109, 109);
    border: 2px solid transparent;
    cursor: pointer;
}


section .button button {
    margin-left: 3%;
    padding: 9px 34px;
    border-radius: 4px;
    font-size: 25px;
    font-weight: 400;
    background-color: #ffffff;
    color: rgb(75, 0, 75);
    border: 2px solid transparent;
    cursor: pointer;
}

section .button button:hover {
    background-color:  yellow;
    color:     rgb(14, 72, 142);
}

.center-cropped {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    background-color: whitesmoke;
    background-position: center center;
    background-repeat: no-repeat;
  }
.center-cropped:hover {
        background-image: url('https://images.unsplash.com/photo-1569878698889-7bffa1896872?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60');
        background-position: center center;
        background-repeat: no-repeat;
    }

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  
}
.skills .title
{
    /* text-align: center; */
    color: #ffcf00;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 40px;
    margin-left: 70%;

}

.skills .content {
    margin-left: 100px;
    width: 50%;


}

.skills .skills-details {
    display: flex;
    justify-content: relative;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.skills-details .text {
    width: 100%;
    text-align: center;
    color: #ffcf00;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;

}

.skills-details p {
    color: orange;
    text-align: justify;
}

.skills .skills-details .experience {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.skills-details .experience .num {
    color: wheat;
    font-size: 80px;
}

.skills-details .experience .exp {
    color: wheat;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 6px;
}

.skills-details .boxes {
    width: 100%;
    display: grid;
    

}

.skills-details .box {
    width: calc(100% / 2 - 20px);
    margin: 20px 0;
}

.skills-details .boxes .per {
    font-size: 60px;
}
.c123{
   margin-left: 200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    grid-auto-rows: minmax(100px, auto);
}
/* Education */

.education .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.education .boxes .box {
    margin: 20px 0;
    color: wheat;
    width: calc(100% / 3 - 20px);
    text-align: center;
    border-radius: 19px;
    padding: 30px 10px;
    box-shadow: 0 15px 10px rgba(255, 254, 254, 0.368);
    cursor: default;
}

.education .boxes .box:hover {
    box-shadow: 
    inset -5.5em 0 0 0 var(--hover),
    inset 5.5em 0 0 0 var(--hover); 
    animation: pulse 1s;
  box-shadow: 0 0 0 10em rgba(rgb(207, 32, 41),0);

}

.education .boxes .box .icon {
    height: 50px;
    width: 50px;
    background: rgb(27, 211, 205);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 10px;
    color: rgb(114, 246, 195);
    margin: 0 auto 10px auto;
}

.education .boxes .box:hover .topic,
.education .boxes .box:hover p {
    color: rgb(255, 166, 0);
}

/* contact */

.contact {
    background: none;
}

.contact .content {
    margin: 0 auto;
    padding: 30px 0;
}

.contact .text {
    width: 80%;
    text-align: center;
    margin: auto;
}

.connect .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.connect .row .content {
    flex: 1 1 30rem;
    padding: 4rem;
    padding-bottom: 0;
}

.connect .row form {
    flex: 1 1 45rem;
    padding: 2rem;
    margin: 2rem;
    margin-bottom: 4rem;
}

.connect .row form .box {
    padding: 0.5rem;
    margin: 1rem 0;
    background: #3333;
    color: rgb(253, 251, 251);
    text-transform: none;
    font-size: 1.7rem;
    width: 100%;
}

.connect .row form .box::placeholder {
    text-transform: capitalize;
}

.connect .row form .message {
    height: 15rem;
    resize: none;
}

.connect .row .content .title {
    color: orange;
    text-transform: uppercase;
    font-size: 4rem;
}

.info a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.connect .row .content .info h3 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: rgb(255, 255, 255);
    padding: 1rem 0;
    font-weight: normal;
}

.connect .row .content .info h3 i {
    padding-right: 1rem;
    color: var(--red);
}

footer {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

footer .text span {
    font-size: 20px;
    font-weight: normal;
    color: wheat;
    background-color: black;
}

footer .text span a {
    font-weight: bold;
    color: grey;
}

footer .text span a:hover {
    text-decoration: underline;
}

@media (max-width:1190px) {
    section .content {
        width: 85%;
    }
}

@media (max-width:1000px) {
    .about .about-details {
        justify-content: center;
        flex-direction: column;
    }
    .about .about-details .left {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .about .about-details .right {
        width: 90%;
        margin: 40px 0;
    }
    .education .boxes .box {
        margin: 20px 0;
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width:900px) {
    .about .left img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width:750px) {
    nav .navbar {
        width: 90%;
    }
    nav .navbar .menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        max-width: 400px;
        width: 100%;
        padding-top: 60px;
        flex-direction: column;
        align-items: center;
        transition: all 0.5s ease;
    }
    .navbar.active .menu {
        left: 0;
    }
    nav .navbar .menu a {
        font-size: 23px;
        display: block;
        color: var(--white-color);
        margin: 10px 0;
    }
    nav .navbar .media-icons {
        display: flex;
    }
    nav .menu-btn,
    .navbar .menu {
        display: block;
    }
    .home .text-two {
        font-size: 55px;
    }
    .home .text-three {
        font-size: 35px;
    }
    .skills .skills-details {
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }
    .skills-details .text {
        width: 100%;
        margin-bottom: 50px;
    }
    .skills-details .boxes {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .education .boxes .box {
        margin: 20px 0;
        width: 100%;
    }
    .contact .text {
        width: 100%;
    }
}

@media (max-width:500px) {
    .home .text-two {
        font-size: 55px;
    }
    .home .text-three {
        font-size: 33px;
    }
    .skills-details .boxes .per {
        font-size: 50px;
        color: yellow;
    }
}


/* li */
li {
    display: inline-block;
  list-style: outside none none;
  margin: .5em 1em;
  padding: 0;
}

li::before,
li::after
 {
    content: '';
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all .35s ease;
  opacity: 0;
}

li::before {
    content: '';
  right: 0;
  top: 0;
  border-top: 3px solid #3E8914;
  border-right: 3px solid #2E640F;
  transform: translate(-100%, 50%);
}

li::after {
    content: '';
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #2E640F;
  border-left: 3px solid #3E8914;
  transform: translate(100%, -50%)
}

li span {
    position: relative;
    height: 80%;
    top: -10%;
    box-sizing: border-box;
    border: 0.08em solid;
    background-color: rgb(14, 175, 173);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    text-transform: capitalize;
    transform: translateX(calc(-0.15em * 3 - 0.08em * 2));
    transition: 0.3s;
}

li:hover span {
    transform: translateX(0.20em);
}

ul li a:hover {
    color: #ffee10;
    box-shadow: 0 0 5px #ffee10;
    text-shadow: 0 0 5px #ffee10;
  }


  .home img{

    align-items: center;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;

  }