/* @import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@200;400;600;800&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&family=Roboto+Serif:wght@300&display=swap');


/* CSS Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
  }

  /* Global Variables */
  :root{
    /* --sideBGColor: #040b14; */
    --sideBGColor: #040433;
    --themeColor: #00a78e;
    /* --themeColor: #ffd700; */
    --iconBGColor: #2c2f3f;
    --textColor: #353535;
    --bgColor: #f7f7f7;
  }

  /* Global Heading */
  .sub-heading{
    color: black;
    font-size: 50px;
    margin: 10px 0;
  }

  .sub-heading-white{
    color: white;
    font-size: 50px;
    margin: 10px 0;
  }

  .divider{
    width: 100%;
    height: 4px;
    /* background-color: var(--themeColor);
    border-radius: 3px; */
    border-top: 5px dashed var(--themeColor)
  }

  .project-divider{
    width: 100%;
    height: 4px;
    margin-top: 55px;
    /* background-color: var(--themeColor);
    border-radius: 3px; */
    border-top: 3px solid grey
  }

  .reveal{
    position: relative;
    /* transform: translateY(50px);  */
    opacity: 0;
    transition: all 2s ease;
  }

  .reveal.active {
    /* transform: translateY(0px); */
    opacity: 1;
  }

  /* ---------------Animation CSS---------- */
  @keyframes flickerAnimation {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      color: #f7f7f7;
    }
    100% {
      opacity: 1;
    }
  }

  .flicker{
    animation: flickerAnimation 2s infinite;
  }

  /* ------------------------ Header -------------------------*/
  header{
    width: 85%;
    position: fixed;
    top: 0px;
    left: 300px;
    padding: 10px 0px;
    transition: 0.4s;
    z-index: 999;
    background-color: var(--bgColor);
  }
  
  header nav{
    width: 85%;
    margin: 15px 80px 15px 60px;
    padding: 0 80px;
  }

  header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header nav ul li{
    list-style: none;
  }

  header nav ul li a{
    display: inline-block;
    text-decoration: none;
    color: var(--sideBGColor);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.7px;
  }

  header nav ul li a i{
    margin-right: 7px;
    font-size: 22px;
    transition: 0.4s;
  }

  header nav ul li a:hover i{
    color: var(--themeColor);
  }

  header nav ul li .active i{
    color: var(--themeColor);
  }

  /* Mobile Nav Toggle */
  #Menu-Btn{
    position: fixed;
    top: 15px;
    right: 25px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    color: white;
    background-color: var(--themeColor);
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,20%);
    z-index: 999;
    display: none;
  }

 /* ------------------------ Aside -------------------------*/
  aside{
    width: 300px;
    height: 100vh;
    padding: 15px 30px;
    background-color: var(--sideBGColor); 
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transition: 0.4s;
    z-index: 99;
    border-right: 7px solid var(--themeColor);
  }

  aside .profile{
    text-align: center;
    margin: 10px 0;
  }

  aside .profile img{
    width: 150px;
    border: 10px solid var(--iconBGColor);
    border-radius: 50%;
 }

 aside .profile h1 {
    color: white;
    font-weight: 600;
 }
 
 aside .profile .social-media a{
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
    background-color: var(--iconBGColor);
    color: white;
    font-size: 18px;
    margin: 1.5px;
    transition: 0.4s;
 }

 aside .mobile-nav{
  display: none;
 }

 aside .personal-details {
  margin: 30px 0;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
 }

 aside .personal-details h4 {
  color: white;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
 }

 aside .personal-details button{
  margin-top: 20px;
  padding: 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 4px solid var(--themeColor);
  color: white;
  background-color: transparent;
  transition-duration: 0.2s;
  font-size: 17px;
  font-weight: 500;
}
aside .personal-details button:active{
  color: var(--themeColor);
}

#tel , #mail {
  text-decoration: none;
  color: white;
}
 /* ------------------------ Footer -------------------------*/
 aside .footer{
    text-align: center;
    color: white;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 10px 2px;
    width: 300px;
    position: fixed;
    left: 0;
    bottom: 0;
    transition: 0.6px;
 }

   /* ----------------------------------- Mobile View ---------------------------------*/
   @media only screen and (max-width: 1050px){
    header{
      display: none;
    }
    aside{
      left: -300px;
    }
    aside .footer{
      left: -300px;
    }
    #Menu-Btn{
      display: block;
    }
    aside .mobile-nav{
      display: block;
      margin: 40px 0;
    }
    aside .mobile-nav ul li{
      list-style: none;
      padding: 10px;
    }
    aside .mobile-nav ul li a{
      display: inline-block;
      text-decoration: none;
      color: white;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.7px;
    }
  
    aside .mobile-nav ul li a i{
      margin-right: 7px;
      font-size: 22px;
      transition: 0.4s;
    }
  
    aside .mobile-nav ul li a:hover i{
      color: var(--themeColor);
    }
  
    aside .mobile-nav ul li .active i{
      color: var(--themeColor);
    }
  }

  .mobile-nav-active aside {
    left: 0;
  }

  .mobile-nav-active aside .footer{
    left: 0;
  }

   /* ------------------------ Main Section -------------------------*/
 main {
  margin-left: 300px;
  margin-top: 70px;
  transition: 0.3s;
  z-index: 100;
 }

 @media only screen and (max-width: 1050px){
  main {
    margin-left: 0;
  }
  aside .personal-details {
    display: none;
  }
 }

 /* --------------Home Section --------------------- */

 #home{
  height: calc(100vh - 57px);
  width: 100%;
  display: flex;
  padding: 0px 30px;
  align-items: center;
 }

 #home .home-row p{
  color: var(--sideBGColor);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
 }
 #home .home-row h1{
  color: var(--sideBGColor);
  font-weight: 800;
  font-size: 45px;
  margin-top: 7px;
  letter-spacing: 3px;
 }
 #home .home-row h2{
  color: var(--sideBGColor);
  font-size: 27px;
  font-weight: 400;
  margin-top: 15px;
  letter-spacing: 3px;
 }
 #home .home-row h4{
  color: var(--sideBGColor);
  font-size: 25px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 3px;
 }

 #home .home-row h4 span{
  border-bottom: 4px solid var(--sideBGColor);
  color: var(--themeColor);
  font-style: italic;
  font-weight: bolder;
  letter-spacing: 3px;
 }

 /* -------------------------- Home Section: Mobile View 1 ---------------------------- */

@media only screen and (max-width:1050px){
  #home{
    height: calc(100vh - 114px);
   }
}

 /* -------------------------- Home Section: Mobile View 2 ---------------------------- */

 @media only screen and (max-width:800px){
  #home .home-row p{
    font-size: 24px;
    letter-spacing: 2px;
   }
   #home .home-row h1{
    font-size: 40px;
    letter-spacing: 2px;
   }
   #home .home-row h2{
    font-size: 27px;
    margin-top: 14px;
    letter-spacing: 2px;
   }
   #home .home-row h4{
    font-size: 22px;
    margin-top: 9px;
    letter-spacing: 2px;
   }
  
   #home .home-row h4 span{
    letter-spacing: 2px;
   }
}

 /* -------------------------- Home Section: Mobile View 3 ---------------------------- */
@media only screen and (max-width:560px){
  #home{
    padding: 0px 5px;
  }
   
  #home .home-row p{
    font-size: 21px;
    letter-spacing: 1px;
   }
   #home .home-row h1{
    font-size: 33px;
    letter-spacing: 1px;
   }
   #home .home-row h2{
    font-size: 23px;
    letter-spacing: 1px;
   }
   #home .home-row h4{
    font-size: 20px;
    letter-spacing: 1px;
   }
  
   #home .home-row h4 span{
    letter-spacing: 1px;
   }
}

 /* -------------------------- Home Section: Mobile View 4 ---------------------------- */
 @media only screen and (max-width:410px){
  #home .home-row p{
    font-size: 17px;
    letter-spacing: 1px;
   }
   #home .home-row h1{
    font-size: 22px;
    letter-spacing: 1px;
   }
   #home .home-row h2{
    font-size: 18px;
    letter-spacing: 1px;
   }
   #home .home-row h4{
    font-size: 16px;
    letter-spacing: 1px;
   }
  
   #home .home-row h4 span{
    letter-spacing: 1px;
   }
}


  /* -------------- About Section --------------------- */
 #about{
  padding: 70px 30px;
  background-color: var(--sideBGColor);
 }

 #about .divider ~ p{
  /* color: var(--textColor); */
  color: #f7f7f7;
  font-size: 15px;
  letter-spacing: 0.4px;
  font-weight: 400;
  margin-top: 15px;
 }

 #about .about-col {
  display: flex;
  gap: 20px;
  margin-top: 25px;
 }

 #about .about-col .img-col{
  flex-basis: 33%;
  text-align: center;
 }

 #about .about-col .img-col img {
  width: 100%;
 }

 #about .about-col .info-col{
  flex-basis: 67%;
 }

 #about .about-col .info-col h2{
  color: var(--themeColor);
  font-weight: 700;
  font-size: 35px;
  letter-spacing: 0.5px;
  margin-top: -10px;
 }

 #about .about-col .info-col p{
  /* color: var(--textColor); */
  color: #f7f7f7;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-style: italic;
 }

 /* #about .about-col .info-col .edu-wkex-col{
  display: flex;
  gap: 30px;
 } */

 #about .about-col .info-col .edu-wkex-col .edu-col{
  margin-top: 8px;
 }

 #about .about-col .info-col .edu-wkex-col .edu-col h3 {
  font-size: 27px;
  letter-spacing: 0.5px;
  color: #f7f7f7;
 }

#about .about-col .info-col .edu-wkex-col .edu-col{
  margin-top: 10px;
}

 #about .about-col .info-col .edu-wkex-col .edu-col .name-col{
  display: flex;
  justify-content: space-between;
 }

 #about .about-col .info-col .edu-wkex-col .edu-col .name-col h4{
  color: var(--themeColor);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
 }
/* --Year-- */
 #about .about-col .info-col .edu-wkex-col .edu-col .name-col h5{
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-style: italic;
  color: #a6a6a6;
 }


 #about .about-col .info-col .edu-wkex-col .edu-col h5{
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #a6a6a6;
 }

 #about .about-col .info-col .edu-wkex-col .edu-col p{
  font-weight: 400;
  font-style: normal;
  /* color: black; */
  color: #f7f7f7;
  letter-spacing: 0px;
 }

 #about .about-col .info-col .edu-wkex-col .edu-col p strong{
  font-weight: 600;
  /* color: black; */
  color: #f7f7f7;
 } 

#about .about-col .info-col .edu-wkex-col .edu-col .sakec-col{
  margin-top: 15px;
}

/* -------------------------- About Section: Mobile View ---------------------------- */

@media only screen and (max-width:850px){
  #about{
    padding: 50px 10px;
  }

  #about .divider ~ p{
    font-size: 14px;
    letter-spacing: 0.2px;
    text-align: justify;
   }

   #about .about-col {
    flex-direction: column;
   }
  
   #about .about-col .img-col img{
    width: 60%;
   }

   #about .about-col .info-col h2{
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.2px;
   }

   #about .about-col .info-col p{
    font-size: 14px;
    letter-spacing: 0.2px;
   }

   #about .about-col .info-col .edu-wkex-col .edu-col h3 {
    font-size: 22px;
    letter-spacing: 0.2px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col .name-col{
    flex-direction: column;
   }

   #about .about-col .info-col .edu-wkex-col .edu-col .name-col h4{
    font-size: 16px;
    letter-spacing: 0.2px;
   }

  /* --Year-- */
   #about .about-col .info-col .edu-wkex-col .edu-col .name-col h5{
    font-size: 12px;
    letter-spacing: 0.2px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col h5{
    font-size: 14px;
    letter-spacing: 0.2px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col p{
    font-size: 14px;
    letter-spacing: 0.2px;
   }
  
}

/* ------ABout Section: Mobile View 2 */
@media only screen and (max-width:560px){
  #about{
    padding: 30px 5px;
  }

  #about .divider ~ p{
    font-size: 12px;
    letter-spacing: 0px;
   }
  
   #about .about-col .img-col img{
    width: 50%;
   }

   #about .about-col .info-col h2{
    font-size: 25px;
    letter-spacing: 0px;
   }

   #about .about-col .info-col p{
    font-size: 12px;
    letter-spacing: 0px;
   }

   #about .about-col .info-col .edu-wkex-col .edu-col h3 {
    font-size: 20px;
    letter-spacing: 0px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col .name-col h4{
    font-size: 15px;
    letter-spacing: 0px;
   }

  /* --Year-- */
   #about .about-col .info-col .edu-wkex-col .edu-col .name-col h5{
    font-size: 12px;
    letter-spacing: 0px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col h5{
    font-size: 13px;
    letter-spacing: 0px;
   }
  
   #about .about-col .info-col .edu-wkex-col .edu-col p{
    font-size: 13px;
    letter-spacing: 0px;
   }
}


/* -------------------- Skill Set Section ------------------------- */
#skills{
  padding: 70px 30px;
}

#skills .marquee {
  display: flex;
  height: 25vh;
  margin-top: 60px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

#skills .marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  content: "";
  z-index: 1;
}

#skills .marquee:before{
  left: 0;
  background: linear-gradient(to right, var(--bgColor) 0%, transparent 100%);
}

#skills .marquee:after{
  right: 0;
  background: linear-gradient(to left, var(--bgColor) 0%, transparent 100%);
}

.marquee-content-container{
  display: flex;
  height: 100%;
  
}

#skills .marquee:hover .marquee-content-container .marquee-content{
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 2px solid red; */
  width: 11.1vw;
  flex-shrink: 0;
  white-space: nowrap;
  animation: scrolling 10s linear infinite;
}

@keyframes scrolling {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-2898px);
  }
}

.marquee-content-container .marquee-content img{
  width: 125px;
  height: 125px;
}
.marquee-content-container .marquee-content span {
  font-size: 20px;
  font-weight: 500;
  color: var(--themeColor);
}

/* ------------ Skill Set Section: Mobile View 1 ---------------*/ 

@media only screen and (max-width:850px){
  #skills{
    padding: 50px 10px;
  }

  #skills .marquee {
    height: 22vh;
  }
  
  #skills .marquee:before, .marquee:after {
    width: 17px;
  }
  
  .marquee-content {
    width: 19.1vw;
  }
  
  .marquee-content-container .marquee-content img{
    width: 110px;
    height: 110px;
  }
  .marquee-content-container .marquee-content span {
    font-size: 17px;
  }
}

/* ------ABout Section: Mobile View 2 */
@media only screen and (max-width:560px){
  #skills{
    padding: 30px 5px;
  }

  #skills .marquee {
    height: 20vh;
  }
  
  #skills .marquee:before, .marquee:after {
    width: 15px;
  }
  
  .marquee-content {
    width: 26.1vw;
  }
  
  .marquee-content-container .marquee-content img{
    width: 100px;
    height: 100px;
  }
  .marquee-content-container .marquee-content span {
    font-size: 15px;
  }
}

/* ------ABout Section: Mobile View 2 ----------------*/
@media only screen and (max-width:410px){

  #skills .marquee {
    height: 18vh;
  }
  
  #skills .marquee:before, .marquee:after {
    width: 14px;
  }
  
  .marquee-content {
    width: 35.1vw;
  }
  
  .marquee-content-container .marquee-content img{
    width: 90px;
    height: 90px;
  }
  .marquee-content-container .marquee-content span {
    font-size: 14px;
  }
}

 /* -------------------------------------- Projects Section --------------------------------------- */
 #work-experience{
  padding: 70px 30px;
  background-color: var(--sideBGColor);
}

#work-experience .projects-container{
  margin: 30px 0px;
  
}


#work-experience .projects-container .OSlot-project{
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

#work-experience .projects-container .OSlot-project .right-container h1, h3{
  margin-top: 0;
  color: white;
}

#work-experience .projects-container .OSlot-project .right-container ul{
  display: flex;
  margin-top: 15px;
}

#work-experience .projects-container .OSlot-project .right-container ul li{
  list-style: none;
  border: 3px solid #00a78e;
  padding: 10px 12px;
  border-radius: 5px;
  color: white;
  letter-spacing: 0.5px;
  margin-left: 10px;
}

#work-experience .projects-container .OSlot-project .right-container ul li:first-child{
  margin-left: 0px;
}

#work-experience .projects-container .OSlot-project .right-container p{
  margin-top: 20px;
  color: var(--bgColor);
  letter-spacing: 1px;
}

#work-experience .projects-container .OSlot-project .right-container .github-btn{
  margin-top: 25px;
  padding: 10px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid var(--themeColor);
}

#work-experience .projects-container .OSlot-project .right-container .github-btn:hover {
  background-color: var(--themeColor);
  color: white;
} 

#work-experience .projects-container .OSlot-project .right-container .github-btn a{
  display: inline-block;
    width: 65px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 25px;
    transition: 0.4s;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

p ul li .bullet-points{
  display: block;
}

.show-more-content{
  display: none;
}

.show-btn{
  margin-top: 25px;
  padding: 10px;
  border-radius: 5px;
  color: var(--bgColor);
  background-color: var(--themeColor);
  border: 2px solid var(--bgColor);
}

.show-btn:hover{
  background-color: var(--themeColor);
  color: var(--sideBGColor);
  cursor: pointer;
}


 /* -------------------------------------- Projects Section --------------------------------------- */
#projects{
  padding: 70px 30px;
}

#projects .projects-container{
  margin: 30px 0px;
  
}


#projects .projects-container .OSlot-project{
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

#projects .projects-container .OSlot-project .left-container{
flex-basis: 40%;
display: flex;

}

#projects .projects-container .OSlot-project .left-container img{
  width: 100%;
  border-radius: 5px;
}

#projects .projects-container .OSlot-project .left-container img:hover {
  cursor: pointer;
}

#projects .projects-container .OSlot-project .right-container{
  
  flex-basis: 60%;
}

#projects .projects-container .OSlot-project .right-container h1{
  margin-top: 0;
  color: var(--sideBGColor);
}

#projects .projects-container .OSlot-project .right-container ul{
  display: flex;
  margin-top: 15px;
}

#projects .projects-container .OSlot-project .right-container ul li{
  list-style: none;
  border: 3px solid #00a78e;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--sideBGColor);
  letter-spacing: 0.5px;
  margin-left: 10px;
}

#projects .projects-container .OSlot-project .right-container ul li:first-child{
  margin-left: 0px;
}

#projects .projects-container .OSlot-project .right-container p{
  margin-top: 20px;
  color: var(--sideBGColor);
  letter-spacing: 1px;
}

#projects .projects-container .OSlot-project .right-container .github-btn{
  margin-top: 25px;
  padding: 10px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid var(--themeColor);
}

#projects .projects-container .OSlot-project .right-container .github-btn:hover {
  background-color: var(--themeColor);
  color: var(--sideBGColor);
  cursor: pointer;
} 

#projects .projects-container .OSlot-project .right-container .github-btn a{
  display: inline-block;
    width: 65px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--sideBGColor);
    font-size: 25px;
    transition: 0.4s;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

p ul li .bullet-points{
  display: block;
}


  /* -------------------------------------- Contact Section --------------------------------------- */
  #contact{
    padding: 70px 30px;
    background-color: var(--sideBGColor);
   }

   #contact p {
    margin-top: 8px;
    color: var(--bgColor);
   }

   #contact .contact-row{
    display: flex;
    margin-top: 25px;
    gap: 20px;
    width: 100%;
   }

   #contact .contact-row .contact-left{
    flex-basis: 40%;
    min-width: 40%;
    background-color: var(--bgColor);
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    border-radius: 4px;
    padding: 30px;
   }

   #contact .contact-row .contact-left .icon-box{
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
  }

  #contact .contact-row .contact-left .icon-box .icon i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--themeColor);
    text-align: center;
    line-height: 47px;
    font-size: 20px;
    color: var(--themeColor);
    transition: 0.5s;
  }

  #contact .contact-row .contact-left .icon-box:hover .icon i{
    background-color: var(--themeColor);
    color: var(--bgColor);
  }

  #contact .contact-row .contact-left .icon-box .info h4{
    font-size: 20px;
    color: var(--sideBGColor);
    font-weight: 600;
  }

  #contact .contact-row .contact-left .icon-box .info h4 + p{
    font-size: 18px;
    color: var(--textColor);
    font-weight: 500;
  }

  #contact .contact-row .contact-right{
    flex-basis: 60%;
    min-width: 60%;
    background-color: var(--bgColor);
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    border-radius: 4px;
    padding: 30px;
   }

   #contact .contact-row .contact-right form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
   }

   #contact .contact-row .contact-right form input,
   #contact .contact-row .contact-right form textarea{
      display: block;
      width: 100%;
      margin: 5px 0;
      font-size: 15px;
      font-weight: 500;
      color: var(--textColor);
      padding: 5px 20px;
      border: 2px solid lightgray;
      border-radius: 2px;
      outline: none;
      resize: none;
      transition: 0.5s;
   }

   #contact .contact-row .contact-right form input:focus,
   #contact .contact-row .contact-right form textarea:focus{
    border: 2px solid var(--themeColor);
   }

   #contact .contact-row .contact-right form input[type=submit]{
    background-color: var(--themeColor);
    color: var(--bgColor);
    border: 2px solid var(--themeColor);
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
   }

   /* ------Contact Section: Mobile View 1 */
   @media only screen and (max-width: 800px){
    #contact{
      padding: 50px 10px;
    }
    #contact .contact-row{
      flex-direction: column;
      gap: 10px;
     }
   }

   /* ------Contact Section: Mobile View 2 */
  @media only screen and (max-width: 500px){
    #contact{
      padding: 30px 10px;
    }
  }