@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix")
      format("embedded-opentype"),
    url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"),
    url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"),
    url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@mixin icomoon() {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@import "bootstrap/mixins";
/* =======================================================
*
* 	Template Style 
*
* ======================================================= */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #475467;
  background: #fff;
  margin: 0;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
ul {
  padding-inline-start: 20px;
}
.list-none {
  list-style: none;
}
button {
  border: none;
}
a {
  color: inherit;
}
p,
ul,
h2,
h5,
h6,
h3,
h4,
h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.text-white {
  color: #f9f9ff;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 0;
}
.section-header {
  text-align: center;
}
.header {
  font-size: 2rem;
}
.info-content {
  margin-top: 2rem;
  max-width: 70%;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.p-1 {
  padding: 10px;
}
.p-2 {
  padding: 20px;
}
.pl-1 {
  padding-left: 10px;
}
.pl-2 {
  padding-left: 20px;
}
.pr-1 {
  padding-right: 10px;
}
.pr-2 {
  padding-right: 20px;
}
.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.py-1 {
  padding: 10px 0;
}
.py-2 {
  padding: 20px 0;
}
.px-1 {
  padding: 0 10px;
}
.px-2 {
  padding: 0 20px;
}
.mt-1 {
  margin-top: 10px;
}
.mb-2 {
  margin-bottom: 20px !important;
}
.inline {
  display: inline-block;
}
.icon {
  width: 14px;
  height: 14px;
  margin-right: 3px;
}
.modal {
  display: none;
}
.text-blod {
  font-weight: bold;
  font-family: "poppins-semibold", Arial, serif;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/* ------------------ Navbar styles ------------ */
nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 10px 0;
  display: flex;
  background-color: #000;
  justify-content: center;
  align-items: center;
}
.navigation-header.scrolled {
  background-color: #000;
  transition: background-color 200ms linear;
}
.logo-container > a {
  color: ghostwhite;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-items > ul {
  display: flex;
  list-style-type: none;
  gap: 40px;
}
.navigation-items > ul > li > a {
  position: relative;
  color: ghostwhite;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  padding: 20px 10px;
}
#navigation-items > ul > li > a::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(
    to right,
    #8490ff 0%,
    #62bdfc 48%,
    #8490ff 100%
  );
  height: 3px;
  width: 0;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
#navigation-items > ul > li > a:hover:after {
  width: 100%;
}
.sidebar {
  position: absolute;
  width: 260px;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.1);
  padding-top: 60px;
  left: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-260px);
  z-index: 100;
}
.sidebar > ul > li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar > ul > li > a {
  color: ghostwhite;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  padding: 10px;
}
.sidebar.active {
  transform: translateX(0);
}
.toggle-btn {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.header {
  height: 60px;
  width: 100%;
}
/* ------------------ End Navbar styles ------------ */

/* ---------------- Intro section styles -------------*/
#intro {
  background: url(../images/intro-bg.jpg),
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) no-repeat center
      bottom;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  text-align: center;
}
.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 10;
}
#avatar {
  height: 200px;
  width: 200px;
  margin-bottom: 30px;
  border-radius: 100px;
  overflow: hidden;
}
.intro-content > h1 {
  font-family: "Kalam";
  font-size: 50px;
  line-height: 1.3;
  transform: rotate(-5deg);
  color: #fff;
}

.intro-content .intro-position {
  margin-top: 20px;
  font-family: "Poppins";
  color: #fff;
}
.banner_btn {
  padding: 0px 42px;
  line-height: 40px;
  background-image: linear-gradient(
    to right,
    #8490ff 0%,
    #62bdfc 48%,
    #8490ff 100%
  );
  background-size: 200% auto;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: all 300ms linear 0s;
  margin: 30px 0;
}
.btn_round {
  border-radius: 120px;
}
.banner_btn:hover {
  background-position: right center;
  color: #fff;
}
.intro-content .social-icons {
  display: flex;
}
.intro-content .social-icons li a i {
  text-decoration: none;
  font-size: 30px;
  margin: 20px;
  margin-top: 50px;
  color: #fff;
}
/* --------------------- End intro section styles ----------------- */

/* ---------------------- About Section Styles --------------------- */
#about {
  background: #ffffff;
}
#about > h1 {
  font-size: 1rem;
  font-weight: bold;
}
#about .section-intro {
  margin-bottom: 3rem;
}

.intro-info {
  margin-top: 2rem;
}
.intro-info img {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  margin: 0.9rem 0 0 0;
  float: center;
}
.intro-info .lead {
  text-align: left;
  /* padding-left: 13rem; */
}
.about-content {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: row;
}

.about-content .info-container {
  width: 50%;
}
.about-content .info-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
.about-content .info-list li {
  margin-bottom: 1.5rem;
}
.about-content .info-list li strong {
  font-family: "poppins-bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.about-content .info-list li span {
  display: block;
  font-family: "poppins-regular", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.skills {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 98%;
}
.about-content h3 {
  font-family: "poppins-bold", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.about-content .skill-container {
  width: 98%;
}
.about-content .skill-bars {
  margin-top: 6rem;
}
/* ------------------ End about sction styles --------------- */

.box {
  display: flex;
  flex-direction: row;
  justify-self: center;
  align-items: center;
  padding: 8px 7px;
  margin: 4px;
  border: 1px solid #cecccc;
  border-radius: 8px;
  color: #232323;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

/* ------------ Resume Section Styles -------------- */
#resume .resume-header {
  text-align: center;
  font-weight: bold;
}
#resume .resume-header h1 {
  color: #cc005f;
}
.resume {
  margin-bottom: 4rem;
  text-align: center;
}
.resume .lead {
  line-height: 1.2;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}
#resume .resume-timeline {
  max-width: 1500px;
}
#resume .timeline-wrap {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 6rem;
}
#resume .timeline-wrap::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 36%;
  top: 0;
}

#resume .timeline-block {
  position: relative;
  padding-top: 2rem;
}
#resume .timeline-ico {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  background: #313131;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 36%;
  top: 2rem;
  margin-left: -1.5rem;
}
#resume .timeline-ico i {
  position: relative;
  left: 0.05rem;
  top: 0.2rem;
}
#resume .timeline-content-block {
  display: flex;
}
#resume .timeline-header {
  width: 35%;
  padding-right: 4%;
  text-align: right;
}
#resume .timeline-header h3 {
  margin: 0;
}
#resume .timeline-header p {
  font-family: "poppins-regular", sans-serif;
  font-size: 1.6rem;
  color: #888888;
}
#resume .timeline-content {
  width: 65%;
  padding-left: 4%;
}
#resume .timeline-content .responsibilities {
  padding: 20px 0;
}
#resume .timeline-content .timeline-content-header {
  color: #8490ff;
  position: relative;
}
#resume .timeline-content .timeline-content-header::before {
  content: "";
  display: block;
  height: 3px;
  width: 50px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  bottom: 0;
}

.resume-section {
  background: #f9f9ff;
}
.resume h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------------- End Resume Section Styles ----------------- */

/* -------------------- Portfolio Section Styles ---------------- */
.portfolio {
  text-align: center;
}
.portfolio-item {
  border-radius: 8px;
  box-shadow: 0px 0px 31px 18px rgba(0,0,0,0.1);
  display: flex;
  float: left;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}
.image-container {
  max-width: 550px;
  height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ---------------- End Portfolio Section Styles ----------------- */

/* --------------- Service section styles ----------------- */
#services {
  text-align: center;
  background-color: #f9f9ff;
}
#services .services-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
#services .services-content .service {
  padding: 50px 35px;
  border-radius: 10px;
  background: #fff;
  text-align: left;
}
#services .services-content .service:hover::before {
  background: linear-gradient(to right, #8490ff 0%, #62bdfc 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#services .services-content .service .service-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#services .services-content .service .service-icon {
  height: 50px;
  width: 50px;
  color: #8490ff;
  text-align: 'center';
}
#services .services-content .service:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  border-color: #fff;
}
#services .services-content .service:hover .service-icon {
  color: linear-gradient(to right, #8490ff 0%, #62bdfc 70%);;
}
#services .services-content .service .service-title {
  color: #222222;
  font-size: 21px;
  font-family: "Heebo", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
/* --------------- End Service section styles ----------------- */

/* --------------- Contact Section Styles ---------------- */
#contact {
  text-align: center;
}
#contact .contact-container {
  display: grid;
  margin: 2rem 10rem;
  grid-template-columns: repeat(2, 1fr);
}

#contact .detail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 1rem;
}
#contact .detail .icon {
  margin: 0 1rem;
}
#contact .detail i {
  font-size: 20px;
  line-height: 1.7;
  color: #8490ff;
}
.form-control-container {
  margin-bottom: 1rem;
  text-align: left;
}
.contact_form .form-control {
  display: block;
  min-width: calc(100% - 2rem);
  font-size: 16px;
  color: #999;
  border: 1px solid #eeeeee;
  font-family: "Roboto", sans-serif;
  border-radius: 8px;
  padding: 1rem;
}

/* ------------------------ Footer Section Styles ------------------ */
.footer-area {
  background: #000410;
}
.footer-social-links {
  display: flex;
  padding: 1rem 0;
  padding-right: 1rem;
  align-items: flex-start;
}
.footer-content-container {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.footer-left {
  display: flex;
}
.footer-content {
  color: #f9f9ff;
}
.footer-about-content {
  max-width: calc(60% - 4rem);
  padding-right: 4rem;
}
.footer-content i {
  font-size: 2rem;
  padding-right: 1rem;
  color: #f9f9ff;
}

.copyright {
  text-align: center;
  padding: 1rem 0;
}

/* ------------------- End Footer Section Styles -------------------- */

/* ----------------- Go to top Section Styles --------------------- */
#go-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 600;
}
.go-top {
  opacity: 0;
}
.active {
  opacity: 1;
}
#go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 4rem;
  margin: 2rem;
  width: 4rem;
  line-height: 4rem;
  text-align: center;
  background: #cc005f;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#go-top a i {
  font-size: 1.6rem;
  line-height: inherit;
}
#go-top a:hover {
  background: #ee0270;
}
/* ----------------- End go to top section styles ----------------- */


#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 100px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;} 
  to {top: 100px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 100px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 100px; opacity: 1;} 
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 100px; opacity: 1;}
  to {top: 0; opacity: 0;}
}