@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
  border-bottom: 0.2rem solid #011aff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    min-height: 100vh;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image{
    flex:1 1 45rem;
    display:flex;
    justify-content:center;
    align-items:center;
}

.home .image img{
    width:520px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    object-position:center;
    display:block;
}

.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
 .home .image img{
    width:100%;
    max-width:520px;
    height:auto;
    object-fit:contain;
}
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
/* ==========================
        ABOUT SECTION
========================== */

.about{
    background:#fff;
}
.about{
    min-height: auto !important;
    padding: 8rem 9% 5rem;
}

.about .row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:4rem;
    flex-wrap:nowrap;
}

/* ---------- Profile Image ---------- */

.about .row .image{
    flex:0 0 380px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about .row .image img{
    width:340px;
    max-width:100%;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.4s ease;
    object-fit:cover;
    height:auto;
    display:block;

    /* Always show original color */
    mix-blend-mode:normal;
    filter:none;
}

.about .row .image img:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.25);
}

/* ---------- Right Content ---------- */

.about .row .content{
    flex:1;
    max-width:700px;
}

.about .row .content h3{
    font-size:4.2rem;
    font-weight:700;
    color:#222;
    margin-bottom:1rem;
}

.about .row .content .tag{
    font-size:2.2rem;
    color:#5b0cb2;
    font-weight:600;
    margin-bottom:2rem;
}

.about .row .content p{
    font-family:"Poppins",sans-serif;
    font-size:1.9rem;
    line-height:1.9;
    color:#555;
    text-align:left;
    letter-spacing:.2px;
    margin-bottom:2rem;
}

@media (max-width:768px){

    .about .row{
        flex-wrap:wrap;
        flex-direction:column;
        text-align:center;
    }

    .about .row .image{
        flex:none;
    }

    .about .row .content{
        text-align:center;
    }

    .about .row .content p{
        text-align:left;
    }
}

/* ---------- Information ---------- */

.about .row .content .box-container{
    margin-top:3rem;
}

.about .row .content .box-container p{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.8rem;
    margin:1rem 0;
    line-height:1.8;
}

.about .row .content .box-container span{
    color:#2355ff;
    font-weight:700;
    min-width:70px;
}

/* Nepal Flag */

.flag{
    width:24px;
    height:auto;
    margin:0 6px;
    vertical-align:middle;
}

/* ---------- Resume Button ---------- */

.resumebtn{
    margin-top:4rem;
}

.resumebtn .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:1.6rem 3rem;
    border-radius:8px;
    background:#2506ad;
    color:#fff;
    font-family:"Nunito",sans-serif;
    box-shadow:0 8px 18px rgba(37,6,173,.35);
    transition:.3s;
}

.resumebtn .btn span{
    font-size:1.8rem;
    font-weight:600;
}

.resumebtn .btn i{
    font-size:1.4rem;
}

.resumebtn .btn:hover{
    background:#17046f;
    transform:translateY(-3px);
}

/* ---------- Mobile ---------- */

@media(max-width:768px){

.about .row{
    padding:3rem 2rem;
    gap:3rem;
}

.about .row .image img{
    width:260px;
}

.about .row .content{
    text-align:center;
}

.about .row .content h3{
    font-size:3.3rem;
}

.about .row .content .tag{
    font-size:2rem;
}

.about .row .content p{
    font-size:1.7rem;
    text-align:left;
}

.about .row .content .box-container p{
    font-size:1.6rem;
}

.resumebtn{
    text-align:center;
}

}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 90vh;
  background: linear-gradient(to bottom, #57059e, #4a00e0);
}
.skills h2 {
  color: #fff;
}
.skills .heading span {
  color: rgb(255, 230, 0);
}
.skills .container {
  background: rgba(0, 0, 22, 0.4);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}
.skills .container .row{
    display:block;
}

.skill-category{
    margin-bottom:40px;
}

.category-title{
    color:#fff;
    font-size:2.4rem;
    font-weight:600;
    margin:25px 0 20px;
    padding-left:12px;
    border-left:5px solid rgb(255,230,0);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:1.8rem;
}

.skills .container .bar{
    padding: 0.8rem;
    border-radius: 0.8rem;
    background: rgba(0,0,22,0.9);
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    transition: .3s;
    height: 95px;
}
.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 2, 68, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.skills .container .bar .info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:0.6rem;
    height:100%;
    margin:0;
}

.skills .container .bar .info img{
    width:36px;
    height:36px;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:6px;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
    font-size: 1.7rem;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    white-space: nowrap;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }
  .skills .container .row{
    display:block;
}

.category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* ==========================
   EDUCATION SECTION STARTS
========================== */

.education{
  background:#e5ecfb;
  min-height:80vh;
}

.education .qoute{
  font-size:1.5rem;
  text-align:center;
  font-family:"Nunito",sans-serif;
  font-weight:600;
  margin-top:.5rem;
}

.education .box-container{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:2rem;
  padding:2rem 0;
}

.education .box-container .box{
  display:flex;
  align-items:center;
  width:80%;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.15);
  transition:.3s ease;
}

.education .box-container .box:hover{
  transform:translateY(-5px);
  box-shadow:0 1rem 2rem rgba(0,0,0,.25);
}

/* ---------- Logo Section ---------- */

.education .box-container .box .image{
  flex:0 0 220px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:2rem;
}

.education .box-container .box .image img{
  width:150px;
  height:150px;
  object-fit:contain;
}

/* ---------- Content Section ---------- */

.education .box-container .box .content{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:2rem 3rem;
}

.education .box-container .box .content h3{
  font-size:3rem;
  color:#012970;
  font-weight:700;
  line-height:1.3;
  margin-bottom:1rem;
  text-align:left;
}

.education .box-container .box .content p{
  font-size:1.8rem;
  color:#333;
  margin:.4rem 0;
  text-align:left;
}

.education h4{
  font-size:2.2rem;
  color:#1d6b00;
  font-family:"Poppins",sans-serif;
  font-weight:700;
  margin-top:1.2rem;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:768px){

  .education .box-container .box{
      flex-direction:column;
      width:95%;
      text-align:center;
  }

  .education .box-container .box .image{
      flex:none;
      width:100%;
      padding:2rem 0 1rem;
  }

  .education .box-container .box .image img{
      width:120px;
      height:120px;
  }

  .education .box-container .box .content{
      padding:2rem;
      text-align:center;
      align-items:center;
  }

  .education .box-container .box .content h3{
      font-size:2.3rem;
      text-align:center;
      margin:0 0 1rem;
  }

  .education .box-container .box .content p{
      font-size:1.6rem;
      text-align:center;
  }

  .education h4{
      font-size:1.9rem;
      text-align:center;
  }

}

/* ==========================
   EDUCATION SECTION ENDS
========================== */

/* ==========================
        WORK SECTION
========================== */

.work{
  background:linear-gradient(to bottom,#000031,#00002c);
  padding-bottom:5rem;
}

.work h2{
  color:#fff;
  padding:1rem;
}

.work .heading span{
  color:#ffe600;
}

/* ---------- Grid ---------- */

.work .box-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  max-width:1400px;
  margin:3rem auto;
  padding:0 2rem;
}

/* Center last row (2 cards) */

.work .box-container .box:nth-child(4){
  grid-column:1 / 2;
}

.work .box-container .box:nth-child(5){
  grid-column:2 / 3;
}

/* ---------- Card ---------- */

.work .box-container .box{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  position:relative;
  height:340px;
  transition:.35s ease;
}

.work .box-container .box:hover{
  transform:translateY(-8px);
}

/* ---------- Image ---------- */

.work .box-container .box img{
  width:100%;
  height:250px;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ---------- Overlay ---------- */

.work .box-container .box .content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:70px;
    background:rgba(255,255,255,.95);
    transition:.35s ease;
    overflow:hidden;
}

.work .box-container .box:hover .content{
    height:100%;
}

/* ---------- Title ---------- */

.work .box-container .box .content .tag{
  height:55px;
  background:#ffd900;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 1rem;
}

.work .box-container .box .content .tag h3{
  font-size:2rem;
  font-weight:700;
  text-align:center;
  color:#111;
}

/* ---------- Description ---------- */

.work .desc{
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  flex:1;
}

.work .desc p{
  font-size:1.5rem;
  line-height:1.7;
  color:#444;
}

/* ---------- Buttons ---------- */

.work .desc .btns{
  display:flex;
  justify-content:space-between;
  margin-top:2rem;
}

.work .desc .btns .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:1.3rem 2.3rem;
  border-radius:8px;
  background:#111;
  color:#fff;
  font-size:1.4rem;
  transition:.3s;
}

.work .desc .btns .btn:hover{
  background:#3110d8;
}

/* ---------- View All ---------- */

.work .viewall{
  display:flex;
  justify-content:center;
  margin-top:3rem;
}

.work .viewall .btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:1.5rem 3rem;
  border-radius:8px;
  color:#fff;
  border:2px solid #fff;
  font-weight:700;
  transition:.3s;
}

.work .viewall .btn span{
  font-size:1.7rem;
}

.work .viewall .btn:hover{
  background:#fff;
  color:#000;
}

.work .viewall .btn:hover i{
  transform:translateX(5px);
}

/* ==========================
        RESPONSIVE
========================== */

@media(max-width:1100px){

.work .box-container{
  grid-template-columns:repeat(2,1fr);
}

.work .box-container .box:nth-child(4),
.work .box-container .box:nth-child(5){
  grid-column:auto;
}

}

@media(max-width:768px){

.work .box-container{
  grid-template-columns:1fr;
}

.work .box-container .box{
  height:320px;
}

.work .box-container .box img{
  height:220px;
}

.work .desc{
  padding:1.5rem;
}

.work .desc p{
  font-size:1.4rem;
}

.work .desc .btns{
  flex-direction:column;
  gap:1rem;
}

.work .desc .btns .btn{
  width:100%;
}

}
/* experience section starts */
.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */
/* ==========================
        CONTACT SECTION
========================== */

.contact{
    background:#e5ecfb;
    min-height:70vh;
    padding:5rem 0;
}

.contact .container{
    max-width:1200px;
    margin:0 auto;
    background:#fff;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    overflow:hidden;
}

.contact .container .content{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5rem;
    padding:4rem;
}

/* ---------------- Image ---------------- */

.contact .content .image-box{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact .content .image-box img{
    width:100%;
    max-width:430px;
    height:auto;
}

/* ---------------- Form ---------------- */

.contact .content form{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

form .form-group{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
}

/* ---------------- Input ---------------- */

.form-group .field{
    position:relative;
    width:100%;
}

form i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    color:#555;
}

form .field input,
form .message textarea{
    width:100%;
    background:#eef3ff;
    border:1px solid #ccd4ea;
    border-radius:10px;
    padding:15px 18px 15px 50px;
    font-size:1.6rem;
    font-family:"Poppins",sans-serif;
    transition:.3s;
}

form .field input{
    height:55px;
}

form .field input:focus,
form .message textarea:focus{
    border:2px solid #5b0cb2;
    background:#fff;
}

form .field input:focus+i,
form .message textarea:focus+i{
    color:#5b0cb2;
}

/* ---------------- Textarea ---------------- */

form .message{
    position:relative;
    width:100%;
}

form .message i{
    top:22px;
    transform:none;
}

form .message textarea{
    min-height:160px;
    resize:none;
    padding-top:18px;
}

form .message textarea::-webkit-scrollbar{
    display:none;
}

/* ---------------- Button ---------------- */

form .button-area{
    display:flex;
    justify-content:center;
    margin-top:2rem;
}

.button-area button{
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px 40px;
    font-size:1.8rem;
    color:#fff;
    background:#2506ad;
    border:none;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(37,6,173,.35);
    transition:.3s;
    font-family:"Nunito",sans-serif;
}

.button-area button:hover{
    background:#4a19e6;
    transform:translateY(-3px);
}

.button-area button i{
    position:static;
    transform:none;
    color:#fff;
    font-size:1.6rem;
}

.button-area button:hover i{
    transform:translateX(5px);
}

/* ==========================
        MOBILE
========================== */

@media(max-width:900px){

.contact .container{
    width:95%;
}

.contact .container .content{
    flex-direction:column;
    padding:3rem 2rem;
}

.contact .content .image-box{
    display:none;
}

.contact .content form{
    width:100%;
}

}

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
