@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa&display=swap");
@import url("https://fonts.googleapis.com/css2?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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&family=Montserrat:wght@200;300&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam&display=swap");
/* font-family: 'Kalam', cursive; */
/* font-family: 'Alata', sans-serif; */
/* font-family: 'Comfortaa', cursive; */
:root {
  --clr-blue: #9c569b;
  --clr-violet: #9a5de9;
  --clr-blue-mid: #8259c4;
  --clr-blue-dark: #1a1c6a;
  --clr-white: #fff;
  --clr-bright: #3c3838;
  --clr-dark: #1e2532;
  --clr-black: #000;
  --clr-light-grey: #dde6ed;
  --clr-header: #08070766;
  --clr-grey: #656e83;
  --clr-green: #2f8422;
  --clr-light-white: #c4dee2;
  --font-poppins: "Poppins", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-header: "Fredoka", sans-serif;
  --transition: all 300ms ease-in-out;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Alata", sans-serif;
  /* font-family: 'Comfortaa', cursive; */
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body.hide-scrolling {
  overflow-y: hidden;
}
/*----------------------
Custom Scrollbar 
------------------------*/
::-webkit-scrollbar {
  width: 5px;
}
body.hide-scrolling {
    overflow-y: hidden;
}
/*----------------------
Custom Scrollbar 
------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgb(4, 4, 4);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(156, 122, 242);
}


::-webkit-scrollbar-track {
  background-color: rgb(4, 4, 4);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(156, 122, 242);
}

button {
  border: none;
  background-color: transparent;
  outline: 0;
  cursor: pointer;
  font-family: inherit;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* fonts */
.font-poppins {
  font-family: var(--font-poppins);
}
.font-manrope {
  font-family: var(--font-manrope);
}

/* text colors */
.text-blue {
  color: var(--clr-blue);
}
.text-blue-mid {
  color: var(--clr-blue-mid);
}
.text-blue-dark {
  color: var(--clr-blue-dark);
}
.text-bright {
  color: var(--clr-bright);
}
.text-dark {
  color: var(--clr-dark);
}
.text-grey {
  color: var(--clr-grey);
}
.text-light-white {
  color: var(--clr-light-white);
}
.text-white {
  color: var(--clr-white);
}

/* backgrounds */
.bg-violet {
  background-color: var(--clr-black);
}
.bg-blue {
  background-color: var(--clr-blue);
}
.bg-blue-mid {
  background-color: var(--clr-blue-mid);
}
.bg-blue-dark {
  background-color: var(--clr-blue-dark);
}
.bg-bright {
  background-color: #0E0D0D;
}
.bg-dark {
  background-color: var(--clr-dark);
}
.bg-grey {
  background-color: var(--clr-grey);
}
.bg-white {
  background-color: var(--clr-white);
}
.bg-black {
  background-color: var(--clr-black);
}
.bg-green {
  background-color: var(--clr-green);
}
.bg-light-grey {
  /* background-color: #8d75f2d6; */
  background-color: rgba(8, 7, 7, .4);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
/* .text-right{text-align: right;} */
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text {
  color: var(--clr-dark);
  opacity: 0.9;
  margin: 2rem 0;
  line-height: 1.6;
}

.fw-2 {
  font-weight: 200;
}
.fw-3 {
  font-weight: 300;
}
.fw-4 {
  font-weight: 400;
}
.fw-5 {
  font-weight: 500;
}
.fw-6 {
  font-weight: 600;
}
.fw-7 {
  font-weight: 700;
}
.fw-8 {
  font-weight: 800;
}

.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-21 {
  font-size: 21px;
}
.fs-22 {
  font-size: 22px;
}
.fs-23 {
  font-size: 23px;
}
.fs-24 {
  font-size: 24px;
}
.fs-25 {
  font-size: 25px;
}

.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}

.container {
  max-width: 110rem;
  margin: 0 auto;
}


/* buttons */
.btn {
  font-size: 14.5px;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  border-radius: 1rem;
  display: inline-block;
  box-shadow: 0 0 5px #b567b8;
}

.btn-primary {
  background-image: linear-gradient(
    to right,
    #c0a6e2 0%,
    #ad89e6 31%,
    #8a5cf4 75%
  );
  color: var(--clr-white);
  transition: 1.5s;
}
.btn-container{
  align-self: flex-start;
}
.btn-primary:hover {
  background-image: linear-gradient(
    to left,
    #c0a6e2 0%,
    #ad89e6 31%,
    #8a5cf4 100%
  );
  color: var(--clr-white);
}

.btn-secondary {
  background-color: #d9d1f9;
  border-radius: 33px;
  color: var(--clr-dark);
  border: 1px solid var(--clr-grey);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: #a485ec;
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.btn-group button:first-child,
.btn-group a:first-child {
  margin-right: 1rem !important;
}

/* navbar part */
/* navbar part */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2% 0px 2%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.navbar-brand{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.8rem;
}
.navbar-brand-text{
    color: var(--clr-white);
    font-weight: 800;
    font-family: 'Comfortaa', cursive;    
}

.navbar-brand-icon{
    width: 65px;
    margin-right: 6px;
    opacity: 1.2;
    
}
nav li,a{
    font-family: 'Alata', sans-serif;   
    font-weight: 400;
    text-decoration: none;
    color: #fefefe;
}
.nav-content li{
    list-style: none;
    display:inline-block;
    padding: 0px 40px;
    position: relative;
    
}
.nav-content li a{
    transition: all 0.3s ease 0s;
}
.nav-content li a:hover{
    color:#320458;
    font-weight: 500;
}
.profile{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    width: 20%;
}
.profile-pic{
    margin-left: 50px;
    border-radius: 50%;
    background-color:var(--clr-light-grey);
    width: 55px;
    height: 55px;
    
}
/* dropdown start */
.navbar nav .nav-content li:hover .dropdown_menu{
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #a08bf5d6;
    margin-left: 20px;

}
.dropdown_menu{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #8c73f2d6;
    margin-left: 20px;

}
.dropdown_menu ul{
    display: block;
    margin: 10px;
}
.dropdown_menu ul li{
    width: 155px;
    padding: 8px;
}
/* .dropdown end */
/* header-start */
.header {
  min-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header-text {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  color: white;
}
.lg-title{
  font-size: 4rem;
}
.header-text p{
  font-size: 1.7rem;
  width: 36rem;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.header-img {
  margin-top: 5rem;
  padding-right: 7rem;
  width: 47rem;
}
.resume-pic img {
  /* height: 500px; */
  width: auto;
}
/* header ends */
/* section one */
.section-one {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.up {
  width: 30rem;
  height: 19.4rem;
  border-radius: 1.875rem 1.875rem 0rem 0rem;
  margin-top: 3rem;
}
.low {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 30rem;
  height: 6rem;
  border-radius: 0rem 0rem 1.875rem 1.875rem;
/* background-color: #f7e3fc; */
background-color: #e1cfe6;
box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
  margin-bottom: 3rem;
}
.btn-box {
  margin-right: 0.8rem;
  border-radius: 2.5rem;
  width: 10.3rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(110, 22, 178, 0.17);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-box span {
  display: flex;
  flex-direction: row;
  color: rgba(99, 17, 203, 0.78);
  font-family: "Kalam", cursive;
  font-size: 2rem;
  height: 2.625rem;
}
.arrowright {
  width: 2.5rem;
}
.circle-container {
  position: relative;
  display: inline-block;
}

.circle {
  width: 4rem;
  height: 3.9375rem;
  position: absolute;
  top: 0.88rem;
  left: 0.75rem;
}
.box-text {
  width: 19rem;
  margin-top: -3.5rem;
  margin-left: 1rem;
}
/* .dot{
  width: 15rem;
    margin: -18rem -8rem 0;
} */

/* section-one ends */

/* section two */
.section-two {
  padding: 64px 0;
}
.section-two .section-items {
  display: grid;
  gap: 2rem;
}

.section-two .section-item {
  max-width: 350px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.section-two .section-item-icon {
  margin: 1rem 0;
}
.section-two .section-item-icon img {
  width: 80px;
  margin-right: auto;
  margin-left: auto;
}
.section-two .section-item-title {
  color: rgb(183, 128, 246);
  font-size: 1.8rem;
  font-weight: 600;
}
.section-two .text {
  margin: 0.9rem 0;
}
/* section-two end */
/* FOOTER STARTS*/
footer {
  background-color: #0e0d0d;
  color: white;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 50px 0px;
  position: relative;
  box-sizing: border-box;
  float: left;
  width: 100%;
}

.ftitle {
  padding-top: 3.5rem;
  color: hsl(0, 2%, 79%);
  font-family: "Comfortaa", cursive;
  font-weight: 600;
  font-size: larger;
}

.foot-txt {
  line-height: 25px;
  margin-top: 70px;
  font-family: "Roboto", sans-serif;
  color: hsl(0, 2%, 79%);
  padding-bottom: 40px;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
.footer-col-title {
  font-family: "Roboto", sans-serif;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
}

.footer li {
  cursor: pointer;
  list-style: none;
  padding: 10px 0;
  font-family: "Roboto", sans-serif;
}

.footer-col {
  text-align: left;
  margin-top: 20px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social i {
  margin-top: 30px;
  padding: 7px;
}

.social li {
  margin-top: -30px;
}

.footer-icon {
  width: 9rem;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(90, 123, 128, 0.3);
}
/* FOOTER ENDS */

/* media queries */
@media screen and (min-width: 768px) {
  .section-two .section-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .section-one-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
  }
  .section-one-r {
    text-align: left;
  }
  .section-two .section-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-two .section-item {
    text-align: left;
  }
  .section-two .section-item-icon img {
    margin-left: 0;
    width: 6rem;
    height: 6rem;
  }
}

/* resume page */
#about-sc{
    padding: 64px 0;
}

.accordion-heading{
    background-color: rgb(190, 166, 244);
    border-radius: 5px;
    box-shadow: 1px 3px 4px rgba(11, 11, 11, 0.6);
    padding: 0.8rem 1.6rem;
    margin-bottom: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion-heading h3{
    color: var(--clr-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.7rem;
    cursor: pointer;
}

/* .cv-form-row-title h3{
    color: var(--clr-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.7rem;
    cursor: pointer;
} */
/* .cv-form-row-title label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--clr-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.7rem;
    cursor: pointer;
} */

.cv-form-row{
    padding: 3rem 2rem 0 2rem;
    border: 1px solid rgba(123, 18, 220, 0.31);
    margin-bottom: 1rem;
    position: relative;
}

.accordion-content{
    display: none;
    animation: animate 0.2s linear backwards;
    line-height: 2;
    transform-origin: top;

}
.accordion.active .accordion-heading h3{
    color: #fff;
    
}
.accordion.active .accordion-heading i{
    color: #fff;
    transform: rotate(180deg);
    transition: transform 0.2s 0.1s;
}
.accordion.active .accordion-content{
    display:block;
}

.form-elem{
    margin-bottom: 3rem;
    position: relative;
}
.form-label1{
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
}
.form-control{
    border-radius: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    padding: 0.8rem 1.6rem;
    font-family: inherit;
    width: 100%;
    outline: 0;
    transition: var(--transition);
}

.form-control:focus{
    border-color: rgba(0, 0, 0, 0.3);
}
.form-text{
    color: #ca0b00;
    font-size: 12px;
    position: absolute;
    letter-spacing: 0.5px;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
}
.cols-3, .cols-2{
    display: grid;
}
.repeater-add-btn{
    width: 25px;
    height: 25px;
    background-color: rgb(185, 143, 252);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--clr-black);
    margin: 1rem 0;
}
.repeater-remove-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgb(185, 143, 252);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.6);
    color: var(--clr-white);
    font-size: 1.6rem;
}
@keyframes animate{
    0%{
        transform:scaleY(0) ;
    }
    
}

/* preview section */
.preview-cnt{
    border-radius: 25px;
    display: grid;
    grid-template-columns: 32% auto;
    box-shadow: rgba(149, 157, 165, 0.6)  4px 8px 21px;
    overflow: hidden;
}

.preview-cnt-l{
    padding: 3rem 3rem 2rem 3rem;
}
.preview-cnt-r{
    padding: 3rem 3rem 3rem 4rem;
}
.preview-cnt-l .preview-blk:nth-child(1){
    text-align: center;
}
.preview-image{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
}
.preview-image img{
    width: 100%;
    height: 100%;
    object-fit:inherit;
}
.preview-item-name{
    font-size: 2.4rem;
    font-weight: 600;
    margin: 1.8rem 0;
    position: relative;
}
.preview-item-name::after{
    position: absolute;
    content: "";
    bottom: -10px;
    width: 50px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.5);
    left: 50%;
    transform: translateX(-50%);
}
.preview-blk{
    padding: 1rem 0;
    margin-bottom: 1rem;
}
.preview-blk-title h3{
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.5rem;
}
.preview-blk-title{
    margin-bottom: 1rem;
}
.preview-blk-list .preview-item{
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    opacity: 0.95;
}
.preview-cnt-r .preview-blk-title{
    color: var(--clr-dark);
}
.preview-cnt-r .preview-blk-list .preview-item{
    margin-top: 1.8rem;
}

.achievements-items.preview-blk-list .preview-item span:first-child,
.educations-items.preview-blk-list .preview-item span:first-child,
.experiences-items.preview-blk-list .preview-item span:first-child{
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.03);
}

.educations-items.preview-blk-list .preview-item span:nth-child(2),
.experiences-items.preview-blk-list .preview-item span:nth-child(2){
    font-weight: 600;
    margin-right: 1rem;
}

.educations-items.preview-blk-list .preview-item span:nth-child(3),
.experiences-items.preview-blk-list .preview-item span:nth-child(3){
    font-style: italic;
    margin-right: 1rem;
}

.educations-items.preview-blk-list .preview-item span:nth-child(4),
.educations-items.preview-blk-list .preview-item span:nth-child(5),
.experiences-items.preview-blk-list .preview-item span:nth-child(4),
.experiences-items.preview-blk-list .preview-item span:nth-child(5){
    margin-right: 1rem;
    background-color: #8d75f2d6;
    color: var(--clr-white);
    padding: 0 1rem;
    border-radius: 0.6rem;
}

.educations-items.preview-blk-list .preview-item span:nth-child(6),
.experiences-items.preview-blk-list .preview-item span:nth-child(6){
    font-size: 13.5px;
    display: block;
    opacity: 0.8;
    margin-top: 1rem;
}
.projects-items.preview-blk-list .preview-item span{
    display: block;
}

@media screen and (min-width: 768px){
    .cols-3{
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
    }
    .cols-2{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

@media screen and (min-width: 992px){
    .cv-form-row{
        padding: 3rem 3rem 0rem 3rem;
    }
    .cols-3{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* print section */
.print-btn-sc{
    margin: 2rem 0 6rem 0;
}

.resu-container{
  display: flex;
  justify-content: space-around;
}

@media print{
    body *{
        visibility: hidden;
    }

    .non_print_area{
        display: none;
    }

    .print_area, .print_area *{
        visibility: visible;
    }

    .print_area{
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        overflow: hidden;
    }
}