
/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
:root{
    --primary-color:#ff8882;
    --black-color:#0E2431;
    --white-color:#fff;
}
body{
    font-family: 'Ubuntu',sans-serif;
}
/*custom scroll Bar Css*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* navbar styling*/
nav{
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

nav.sticky{
    background:var(--primary-color);
    padding: 13px 0;
}
nav .navbar{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:auto;
}
nav .navbar .logo a{
    font-weight: 500;
    font-size: 35px;
    color: var(--primary-color);

}

nav.sticky .navbar .logo a{
    color: var(--white-color);
}

nav .navbar .menu{
    display: flex;
    position: relative;
}
nav .navbar .menu li{
    list-style: none;
    margin:0 8px;
}
nav .navbar .menu a{
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    padding: 6px 0;
    transition: all 0.4s ease;
}
.navbar .menu a:hover{
    color: var(--primary-color);
}
nav.sticky .menu a{
    color: var(--white-color);
}
nav.sticky .menu a:hover{
    color: var(--black-color);
}
.navbar .media-icons a{
    color: var(--primary-color);
    font-size: 18px;
    margin: 0 6px;
}
nav.sticky .media-icons a{
    color: var(--black-color);
}

/* side naigation Menu Butto CSS */
nav .menu-btn,
 .navbar .menu .cancel-btn{
     position: absolute;
     color: var(--white-color);
     right: 30px;
     top: 20px;
     font-size: 20px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: none;
 }
 nav.menu-btn{
     color: var(--primary-color);
 }
 nav.sticky .menu-btn{
     color: var(--white-color);
 }

 /*home section styling*/
 .home{
     height: 100vh;
     width: 100%;
     background: url("images/dumre3.jpg") no-repeat;
     background-size: contain;
     background-position: right;
     background-attachment: fixed;
 }
 .home .home-content{
     width: 90%;
     height: 100%;
     margin: auto;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }
 .home .text-one{
    font-size:30px;
    color:var(--black-color);
  }
  .home .text-two{
    color:var(--black-color);
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
  }
  .home .text-three{
    font-size: 40px;
    margin:5px 0;
    color:var(--primary-color);
  }
  .home .text-four{
    font-size: 23px;
    margin:5px 0;
    color:var(--black-color);
  }
  .home .button{
      margin: 14px 0;
  }
.home .button button{
  outline:none;
  padding:8px 1
  6px;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 400;
  background:var(--primary-color);
  color:var(--white-color);
  cursor:pointer;
  border:2px solid transparent;
  transition: all 0.4s ease;
}
.home .button button:hover{
    border-color:var(--primary-color);
    background-color: var(--white-color);
    color:var(--primary-color);
  }
  /* About Section Styling */
section{
    padding-top:50px;
  }
  section .content{
    width:80%;
    margin:50px auto;
    font-family: 'Poppins', sans-serif;
  }
  section .title{
    display:flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  section .title span{
    color:var(--black-color);
    font-size: 30px;
    font-weight: 600;
    position:relative;
    padding-bottom:8px;
  }
  section .title span::before,
section .title span::after{
  content:'';
  position:absolute;
  height:3px;
  width:100%;
  background:var(--primary-color);
  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:55%;
  }
  section .topic{
    color:var(--black-color);
    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{
    outline:none;
    padding:8px 16px;
    border-radius: 4px;
    font-size: 25px;
    font-weight: 400;
    background: var(--primary-color);
    color:var(--white-color);
    border:2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  section .button button:hover{
    border-color:var(--primary-color);
    background-color: var(--white-color);
    color:var(--primary-color);
  }

  /* My Skills CSS */
.skills{
    background:#f0f8ff;
  }
  .skills .content{
    padding:40px 0;
  }
  .skills .skills-details{
    display:flex;
    justify-content: space-between;
    align-items: center;
  }
  .skills-details .text{
    width:50%;
  }
  .skills-details p{
    color:var(--black-color);
    text-align: justify;
  }
  .skills .skills-details .experience{
    display:flex;
    align-items: center;
    margin:0 10px;
  }
  .skills-details .experience .num{
    color:var(--black-color);
    font-size: 80px;
  }
  .skills-details .experience .exp{
    color:var(--black-color);
    margin-left: 20px;
    font-size: 18px;
    font-weight: 500;
    margin:0 6px;
  }
  .skills-details .boxes{
    /* width:45%; */
    display:flex;
    flex-wrap: wrap;
    justify-content:space-between;
  }
  .skills-details .box{
    /* width:calc(100% / 2 - 20px); */
    margin:10px 14px;
  }
  .skills-details .boxes .topic{
    font-size: 20px;
    color:var(--primary-color);
  }
  .skills-details .boxes .per{
    font-size: 60px;
    color:var(--primary-color);
  }

/* my educations*/
/* .education .boxes{
  display:flex;
  flex-wrap: wrap;
  justify-content:space-between;
} */
.education .boxes .box{
  margin:20px 0;
  /* width:calc(100% / 2 - 20px); */
  text-align: center;
  border-radius: 12px;
  padding:30px 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.12);
  cursor:default;
  transition: all 0.4s ease;
}
.education .boxes .box:hover{
  background-color: var(--primary-color);
  color:var(--white-color);
}
.education .boxes .box .icon{
  height:50px;
  width:50px;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color:var(--white-color);
  margin:0 auto 10px auto;
  transition: all 0.4s ease;
}
.boxes .box:hover .icon{
  background:var(--white-color);
  color:var(--primary-color);
}
.education .boxes .box:hover .topic,
.education .boxes .box:hover p{
  color:var(--white-color);
  transition: all 0.4s ease;
}
/* Contact Me CSS */
.contact{
  background: #f0f8ff;
}
.contact .content{
  margin:0 auto;
  padding:30px 0;
}
.contact .text{
  width:80%;
  text-align: center;
  margin:auto;
}
/* Footer CSS */
footer{
  background:var(--primary-color);
  padding:15px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
footer .text span{
  font-size: 17px;
  font-weight: 400;
  color:var(--white-color);
}
footer .text span a{
  font-weight: 500;
  color:var(--white-color);
}
footer .text span a:hover{
  text-decoration: underline;
}

/* Scroll To Top Button CSS */
.scroll-button a{
  position:fixed;
  bottom:20px;
  right:20px;
  color:var(--white-color);
  background:var(--primary-color);
  padding:10px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0,0,0,0.15);
   display:none;
}
/* Responsive Media Queries */
@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;
  }
  .services .boxes .box{
    margin:20px 0;
    width:calc(100% / 1 - 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;
    background:var(--primary-color);
    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.sticky .menu a:hover{
    color:var(--primary-color);
  }
  nav .navbar .media-icons{
    display:none;
  }
  nav .menu-btn,
  .navbar .menu .cancel-btn{
    display:block;
  }

  .home .text-two{
    font-size: 65px;
  }
  .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%;
 }

 .services .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:var(--primary-color);
  }
}

.contact .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap ;

}
.contact .row .content .left{
  flex: 1 1 30rem;
  padding: 4rem;
  padding-bottom: 3rem;


}
.contact .row .right form{
  flex: 1 1 45rem;
  padding: 2rem;
  margin: 1rem;
  margin-bottom: 4rem;
  margin-left: 20rem ;
}
.contact .row .right form .box{
  padding: 1rem;
  margin: 1rem 0;
  background: var(--white-color);
  color: #140c0c;
  text-transform: none;
  font-size: 1rem;
  width: 100%;
}

.contact.row form .message{
  height: 8rem;
  resize: none;
}
.contact .row .content .title{
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 3rem;
  padding-bottom: 0rem;
}
.contact .row .content .info h3{
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  color: var(--black-color);
  padding: 1rem 0;
  font-weight: normal;
}
.contact .row .content .info h3 i{
  padding-right: 1rem;
  align-items: center;
  color: var(--primary-color);
}
.contact .row .right{
  width:65%;
}

/*  */
 .form-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}



/* body{
    background: #212121;
} */
.spicontainer {
    position:absolute;
    /* top:10%; */
    /* height: 90%; */
    display: flex;
    justify-content: center;
    align-items: center;
    right: 25%;
}
.item {
    position: absolute;
    background-color: transparent;
    width: calc(var(--i) * 2.5vmin);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 9vmin solid rgb(0, 200, 255);
    transform-style: preserve-3d;
    transform:rotateX('70deg') translateZ(50px);
    animation: my-move 4s ease-in-out calc(var(--i) *0.08s)infinite;
    box-shadow: 0px 0px 15px rgb(124, 124, 124),inset 0px 0px 15px rgb(124, 124, 124)
}
@keyframes my-move{
    0%,
    100% {
        transform: rotateX(70deg) translateZ(50px) translateY(0px);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: rotateX(70deg) translateZ(50px) translateY(-50vmin);
        filter: hue-rotate(180deg);
    }
}

/* forexperience section */
/* body {
  font-family: Open Sans, "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #666;
  position: relative;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 13px;
  direction: ltr;
}

.sectionClass {
  padding: 80px 0px 50px 0px;
  position: relative;
  display: block;
  background: #17b794;
}

.row {
  width: 980px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.sectiontitle {
  background-position: center;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: white;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}

.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: white;
}

.fullWidth {
  width: 100%;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
} */


/********************************/


/*  SECTION WORK EXPERIENCE
********************************/
.sectiontitle {
  background-position: center;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: white;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}

.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: white;
}
.fullWidth {
  width: 100%;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}

#work-experience .sectiontitle .headerLine {
  width: 280px;
}

#work-experience .headerline {
  width: 280px;
}

.cbp_tmtimeline {
  margin: 60px 30px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

/* .cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 3%;
  bottom: 0;
  width: 10px;
  background: var(--primary-color);
  left: 12%;
  height: 100%;
} */

.cbp_tmtimeline li:last-child:before {
  content: initial;
}

.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 25%;
  padding-right: 100px;
  position: absolute;
}

.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}

.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #bdd0db;
}

.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 2.9em;
  color: #3594cb;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #6cbfee;
}

.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: var(--primary-color);
  color: #FFF;
  padding: 30px;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  font-family: 'Open Sans';
  position: relative;
  border-radius: 5px;
  min-height: 150px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
  background: var(--primary-color);
}

.cbp_tmtimeline > li .cbp_tmlabel h3 {
  margin-top: 0px;
  color: white;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}

.cbp_tmtimeline > li .cbp_tmlabel h4 {
  opacity: 0.7;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  text-align: left;
}

.cbp_tmtimeline > li .cbp_tmlabel h4 i {
  margin-right: 5px;
  vertical-align: middle;
}

.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: var(--primary-color);
  border-width: 10px;
  top: 70px;
}

.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color:var(--primary-color);
}

.cbp_tmtimeline > li .cbp_tmicon {
  width: 150px;
  height: 150px;
  top: 3%;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #151515;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  left: 8%;
  margin: 0 0 0 -25px;
}

.cbp_tmtimeline li {
  margin-bottom: 70px;
  position: relative;
}

.sectionClassProject {
  position: relative;
  display: block;
  /* background: #f7f7f7; */
  margin: 0 auto;
  padding: 80px 1.875em 3.125em;
}

.projectParagraph {
  font-size: 18px;
  margin: 0.5em 0 0;
  font-family: 'Source Sans Pro', serif;
}

.projectParagraphLink {
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-top: 50px !important;
  margin-bottom: 0px;
  text-align: right;
}

.projectParagraphLink a {
  color: white;
  text-decoration: underline;
}

.cbp_tmicon img {
  width: 100%;
}

.faPra {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 70px;
  vertical-align: middle;
  color: white;
  line-height: 150px;
}

.label {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  color: #FFFFFF;
  display: inline;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
  padding: 5px 15px;
}

.date {
  color: var(--black-color);
  display: block;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  right: 20px;
}

.date i {
  margin-right: 8px;
  vertical-align: top;
  font-size: 18px;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .cbp_tmtimeline:before,
  .spiral {
    display: none;
  }
  .cbp_tmtimeline > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }
  .cbp_tmtimeline > li .cbp_tmtime span {
    text-align: left;
  }
  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 30px 0 70px 0;
    padding: 50px 30px 30px 30px;
    font-weight: 400;
    font-size: 95%;
    float: left;
  }
  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: auto;
    border-right-color: transparent;
    border-bottom-color: rgb(50, 68, 84);
    top: -20px;
  }
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: rgb(43, 58, 72);
    left: 65px;
  }
  .cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
    right: 65px;
  }
  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {
    position: relative;
    float: left;
    left: auto;
    margin: 0px 5px 0 0px;
  }
  .cbp_tmtimeline > li:nth-child(even) .cbp_tmicon {
    position: relative;
    float: right;
    left: auto;
    margin: 0px 5px 0 0px;
  }
  .cbp_tmtimeline > li .cbp_tmtime span:last-child {
    font-size: 1.5em;
  }
}

@media (max-width: 32em) {
  .cbp-ntaccordion {
    font-size: 70%;
  }
}


/* AUTHOR LINK */

