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

html, body{
    font-family: 'Lato', sans-serif;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;


}


body::-webkit-scrollbar {
    display: none;
  }
:root {
    --text-color: rgb(0, 0, 0);

}

.header {
    width: 100%;
    height: 100vh;
    background: rgba(128, 128, 128, 0.306);
    /* position: fixed; */
}
/**********************************************************************************
nav bar
*************************************************************************************/
.header  .logo{
    color: #f44336;
}
nav a, nav li {
    color: var(--text-color);
}

nav{
    display: flex;
    padding: 1% 5%;
    justify-content: space-between;
    /* align-items: center; */
    background-color: rgb(227, 227, 227);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;

}
nav .logo {
    font-size: 30px;
    text-decoration: none;
}
.navData{
    flex: 1;
    text-align: right;
}
.navData ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
}
.navData ul li a {
    text-decoration: none;
    font-size: 14px;
}
.navData ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.3s;
}
.navData ul li:hover::after{
    width: 100%;
}
.menuBtn {
    background: #f44336;
    padding: 5px 30px;
    border: 2px solid #f44336;
    color: white;
    border-radius: 2px;
    cursor: pointer;
    
}
.menuBtn:hover {
    color: black;
    background: white;
    border: 2px solid #f44336;
    transition: 0.6s;
}
nav .fa {
    display: none;
}


/**********************************************************************************
Media query for nav bar
*************************************************************************************/
@media (max-width: 700px) {

    .navData ul li{
        display: block;
    }
    .navData {
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 100;
        transition: all 0.5s linear;
        /* transform: translateX(100%); */
        /* opacity: 0;
        visibility: hidden;
        pointer-events: none; */
    }
    .menuBtn {
        display: none;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        /* position: relative; */
    }
    .navData ul {
        padding: 30px;
    }
    nav .fa-bars {
        color: black;
    }
    .navData ul a {
        color: #fff;
    }
}

/**********************************************************************************
Header
*************************************************************************************/

.headerRow{
    display: flex;
    /* background-color: #f44336; */
    margin: 30px auto 0;
    width: 80%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    

}
.headerRow .myPhoto{
    animation-delay: 1.5s;
}
.headerRow .myPhoto img{
    width: 373px;
    height: 427px;
    border-radius: 5%;
    filter: drop-shadow(20px 10px 10px rgba(0,0,0,5));
    margin-top: 80px;
}
.col1 {
    flex-basis: 25%;
    min-width: 300px;
}

.headerText .hello {
    padding: 4px 10px;
    background-color: #241210;
    border-radius: 5px;
    color: white;
    font-size: 25px;
    animation-delay: 0.2s;

}
.headerText h1 {
    animation-delay: 0.8s;
}
.headerText {
    /* padding: 50px 0; */
    margin: 100px 80px 30px;
}
.headerText h1 {
    font-size: 45px;
    font-weight: 400;
    margin: 6px 0;
}
.headerText .h3 {
    font-size: 30px;
    font-weight: 200;
    animation-delay: 1s;
    
}
.anime {
    opacity: 0;
    transform: translateY(30px);
    animation: animation 0.5s linear forwards;
}
@keyframes animation {
    100%{
        opacity: 1;
        transform: translateY(0px);       
    }
}


.headerText .bikalName {
    color: #f44336da;
}
.homeBtn a{
    text-decoration: none;
    background-color: #f44336;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    border: 2px solid #f44336;
}
.homeBtn{
    margin: 30px 0;
    animation-delay: 1.2s;
}
.homeBtn a:hover{
    background-color: white;
    border: 2px solid #f44336;
    color: black;
    transition: 0.8s;
}
.icons {
position: fixed;
top: 52%;
font-size: 25px;
transform: translateY(-50%);
z-index: 10;
}

.icons i {
    color: rgb(244, 242, 242);
}
.icons a {
    text-decoration: none;
    width: 160px;
    /* background-color: #f443367e; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 7px;
    transition: all 0.5s linear;
    transform: translateX(-120px);
    border-radius: 0 25px 25px 0;
}
.icons a:hover {
    transform: translateX(0);
}
.icons a .fa-brands {
    padding-left: 10px;
    font-size: 30px;
    animation: zoom 3s linear alternate-reverse infinite;
}

.icons .facebook {
    background-color: #4267B2;
}
.icons .twitter {
    background-color: #1DA1F2;
}
.icons .instagram {
    background-color: #833AB4;
}
.icons .github {
    background-color: #080e1abc;
}
.icons p {
    font-size: 13px;
    color: white;
}



@keyframes zoom{
from {
    transform: scale(0.8);
}to {
    transform: scale(1);
}
}


/**********************************************************************************
Media query for header bar
*************************************************************************************/
@media (max-width: 700px) {
    .myPhoto{
        display: none;
    }
    .headerRow {
        height: 70vh;
        margin: 40px auto 0;
    }
    .col1 {
        flex-basis: 100%;
    }
    .headerText .hello {
        margin: 10px 0;
    }
    .headerText h1 {
        font-size: 30px;
        margin: 5px 0;
    }
    .headerText .h3 {
        font-size: 20px;
        margin: 10px 0;
    }
    .homeBtn a{
        padding: 4px 10px;
    }
    .headerText {
        margin-top: 180px;
    }
        
}

/************** github pages in home page ***************/

.learnmore {
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(bikalPic.jpg);
    height: 240px;
    max-width: 80%;
    margin: auto;
    /* position: relative; */
    border-radius: 20px;
    margin-top: 40px;
}
.learnmore .more {
    padding: 5% 20%;
    color: white;
    margin: 10px;
}
.btnAbout a {
    color: white;
    background-color: rgba(142, 145, 148, 0.164);
    padding: 10px;
    width: 90px;
    border-radius: 20px;
    text-align: center;
}
.btnAbout a:hover {
    background-color:rgba(142, 145, 148, 0.5); ;
}
.topic{
    font-size: 35px;
    margin-top: 40px;
    text-align: center;
    margin-bottom: 5px;
    color: #070403;
}
.topicstyle {
    width: 6%;
    height: 2px;
    margin: auto;
    border: 2px solid #f44336;
    border-radius: 40%;
}
.more p {
    margin-top: 20px;
}

/************** about me pages in home page ***************/


.aboutMe img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f44336a5;
    border-bottom: none;
    border-right: none;

}
.aboutme .image{
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: #f4433692;
}
.paraAbout  {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}
.aboutMe {
    margin: 50px;
}

/**********************************************************************************
Media query for aboutme
*************************************************************************************/
@media (max-width: 700px) {
    .paraAbout{
        flex-direction: column;
    }
    .aboutMe{
        margin: 5px;
    }

.aboutMe img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #f44336a0;
    border-bottom: none;
    border-right: none;
}
.aboutMe p {
    font-size: 14px;
}
.topic{
    font-size: 22px;
}
}

/**********************************************************************************
Media query for github project
*************************************************************************************/
@media (max-width: 700px) {
    .more p {
        display: none;
    }
    .learnmore{
        height: 140px;
    }
    .more h1 {
        font-size: 22px;
    }
    
}

/*****************Skills page**********************/
.row {
    display: flex;
    flex-basis: 100%;
    width: 80%;
    margin: auto;
}
.img-1 {
    text-align: center;
    /* border-radius: 50px; */
    margin-top: 20px;
}
.img-1 img {
    border-radius: 30%;
}
.skill {
    padding: 20px;
    flex-basis: 33%;
    margin: 30px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 50px;
    transition: 0.5s;
    cursor: pointer;
}
.skill:hover {
    transform: translateY(-13px);
}
.skill h3 {
    text-align: center;
}
/**********************************************************************************
Media query for skill project
*************************************************************************************/
@media (max-width: 700px) {
   .skill{
        flex-basis: 100%;
        height: 200px;
        flex-direction: column;
        margin-top: 20px;
}
.row {
    flex-direction: column;
}
    .skill p {
        font-size: 14px;
    }
}

/**********************************************************************************
contact page
*************************************************************************************/

.myDetails {
    display: flex;
    width: 80%;
    margin: 30px auto;
    align-items: center;
    justify-content: space-between;
    
}
.myDetail {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    border-radius: 5px;
    width: 100%;
    margin: 30px;

}

.contactIcon {
    display: flex;
    align-items: center;
}
.contactIcon i {
    margin-left: -25px;
    color: #f44336;
}
.contactIcon h1 {
    margin-left: 25px;
}
.myDetail p {
    margin-left: 16px;
}

.contactHere{
    width: 750px;
    height: 500px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    margin: 60px auto;
  }
  .contactHere header{
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #ccc;
  }
  .contactHere form{
    margin: 35px 30px;
  }
  .contactHere form.disabled{
    pointer-events: none;
    opacity: 0.7;
  }
  form .dbl-field{
    display: flex;
    margin-bottom: 25px;
    justify-content: space-between;
  }
  .dbl-field .field{
    height: 50px;
    display: flex;
    position: relative;
    width: calc(100% / 2 - 13px);
  }
  .contactHere form i{
    position: absolute;
    top: 50%;
    left: 18px;
    color: #ccc;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
  }
  form .field input,
  form .message textarea{
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0 18px 0 48px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    resize: none;
  }

  .field input::placeholder,
  .message textarea::placeholder{
    color: #ccc;

  }
  .message textarea::placeholder{
    padding-left: 47px;
    padding-top: 10px;
  }

  .field input:focus{
        padding-left: 47px;
        border: 2px solid #f44336;
  }
  .message textarea:focus{
    padding-left: 47px;
    /* padding: 5px; */
    border: 2px solid #f44336;
  }
  .field input:focus ~ i,
  .message textarea:focus ~ i{
    color: #f44336;
  }
  form .message{
    position: relative;
  }
  form .message i{
    top: 30px;
    font-size: 20px;
  }
  form .message textarea{
    min-height: 130px;
    max-height: 230px;
    max-width: 80%;
    min-width: 100%;
    padding: 5px;
  }
  form .message textarea::-webkit-scrollbar{
    width: 0px;
  }
  .message textarea:focus{
    padding-top: 14px;
  }
  form .button-area{
    margin: 25px 0;
    display: flex;
    align-items: center;
  }
  .button-area button{
    color: #fff;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    padding: 13px 25px;
    background: #f44336;
    transition: 0.3s ease;
    border: 2px solid #f44336;
  }
  .button-area button:hover{
    background-color: white;
    border: 2px solid #f44336;
    color: black;
    transition: 0.8s;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }
  @media (max-width: 700px){
    .myDetails {
        flex-direction: column;
        
    }
    .contactIcon h1 {
        font-size: 20px;
    }
    .myDetail{
        margin: 5px 30px;
    }
    .contactHere {
        width: 300px;
        height: 600px;
    }
    .contactHere header{
      text-align: center;
    }
    .contactHere form{
      margin: 35px 20px;
    }
    form .dbl-field{
      flex-direction: column;
      margin-bottom: 0px;
    }
    form .dbl-field .field{
      width: 100%;
      height: 45px;
      margin-bottom: 20px;
    }
    form .message textarea{
      resize: none;
    }
    form .button-area{
      margin-top: 20px;
      flex-direction: column;
    }
    .button-area button{
      width: 100%;
      padding: 11px 0;
      font-size: 16px;
    }
    .button-area span{
      margin: 20px 0 0;
      text-align: center;
    }
  }

  /**********************************************************************************
footer page
*************************************************************************************/

.footer {
    width: 100%;
    height: 60px;
    background-color: rgb(227, 227, 227);

}
.footer p {
    color: black;
    text-align: center;
    font-size: 17px;
    padding-top: 20px;
}
@media (max-width: 700px){
    .footer p {
        font-size: 13px;
    }
}