@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");

@media print {
  .skill-bar-bg {
    position: relative;
    height: 17px !important;
    min-height: 17px !important;
    display: flex;
    align-items: center;
    background: #e6e9ef !important;
    border-radius: 12px !important;
  }
  .skill-percent-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: #0865cf;
    line-height: 1;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    background: none !important;
  }
}

:root {
  --clr-blue: #1a91f0;
  --clr-blue-mid: #1170cd;
  --clr-blue-dark: #1a1c6a;
  --clr-white: #fff;
  --clr-bright: #eff2f9;
  --clr-dark: #1e2532;
  --clr-black: #000;
  --clr-grey: #656e83;
  --clr-green: #084c41;
  --font-poppins: "Poppins", sans-serif;
  --font-manrope: "Manrope", 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: var(--font-poppins);
}

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-white {
  color: var(--clr-white);
}

/* backgrounds */
.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: var(--clr-bright);
}
.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);
}

.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: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

/* bars button */
.bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16.5px;
  width: 25px;
}
.bars .bar {
  width: 100%;
  height: 2px;
  background-color: var(--clr-blue);
  transition: var(--transition);
}

.bars:hover .bar {
  background-color: var(--clr-dark);
}

/* buttons */
.btn {
  font-size: 14.5px;
  font-weight: 600;
  padding: 1.4rem 1.6rem;
  border-radius: 4px;
  display: inline-block;
}

.btn-primary {
  background-color: var(--clr-blue);
  color: var(--clr-white);
  border: 1px solid var(--clr-blue);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-grey);
}

.btn-secondary {
  background-color: transparent;
  color: var(--clr-dark);
  border: 1px solid var(--clr-grey);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--clr-blue);
  color: var(--clr-white);
  border-color: var(--clr-blue);
}

.btn-group button:first-child,
.btn-group a:first-child {
  margin-right: 1rem !important;
}

/* navbar part */
.navbar {
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 8px;
}

.navbar .container {
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.8rem;
}
.navbar-brand-text {
  color: var(--clr-dark);
  font-weight: 600;
}
.navbar-brand-text span {
  color: var(--clr-blue);
}
.navbar-brand-icon {
  width: 25px;
  margin-right: 6px;
  opacity: 0.8;
}
.brand-and-toggler {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-content {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}
.header-content img {
  max-width: 760px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  margin-top: 3.2rem;
}
.lg-title {
  margin: 1.4rem 0;
  font-size: 37px;
  line-height: 1.4;
  color: var(--clr-dark);
}
.header-content p {
  margin-bottom: 2.6rem;
  line-height: 1.6;
}

/* section one */
.section-one {
  padding: 64px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.section-one-l img {
  max-width: 545px;
  margin-right: auto;
  margin-left: auto;
}
.section-one-r {
  margin-top: 4rem;
}

.section-one .btn-group {
  margin-top: 2rem;
}
.section-one-r {
  max-width: 545px;
  margin-right: auto;
  margin-left: auto;
}
.section-one-r .btn-group {
  margin-top: 3rem;
}

/* 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: var(--clr-blue-dark);
  font-size: 1.8rem;
  font-weight: 600;
}
.section-two .text {
  margin: 0.9rem 0;
}

/* footer */
.footer {
  padding: 3rem 0;
}
.footer-content p {
  color: var(--clr-grey);
}
.footer-content p span {
  color: var(--clr-white);
}

/* 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;
  }
}

/* resume page */
#about-sc {
  padding: 64px 0;
}

.cv-form-row-title {
  background-color: var(--clr-dark);
  padding: 0.8rem 1.6rem;
  margin-bottom: 2rem;
}

.cv-form-row-title h3 {
  color: var(--clr-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.7rem;
}
.cv-form-blk {
  margin: 3rem 0;
}
.cv-form-row {
  padding: 3rem 2rem 0 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  position: relative;
}
textarea {
  resize: none;
}
.form-elem {
  margin-bottom: 3rem;
  position: relative;
}
.form-label {
  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: var(--clr-blue-mid);
  font-size: 1.6rem;
  color: var(--clr-white);
  margin: 1rem 0;
}
.repeater-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ca0b00;
  color: var(--clr-white);
  font-size: 1.6rem;
}

/* preview section */
.preview-cnt {
  border-radius: 5px;
  display: grid;
  grid-template-columns: 32% auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

.preview-cnt-l {
  padding: 3rem 3rem 2rem 3rem;
}
.preview-cnt-r {
  padding: 3rem 3rem 3rem 4rem;
  font-size: 15px;
}
.preview-cnt-l .preview-blk:nth-child(1) {
  text-align: center;
}
.preview-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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: var(--clr-green);
  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-btn-sc {
  margin: 2rem 0 6rem 0;
}

/* print section */
@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;
  }
}
/* to print templet in print cv  */
@media print {
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background-color: #ffffff !important; /* keep white body */
    margin: 0 !important;
    padding: 0 !important;
  }

  .resume-page {
    background: #f5f5f5 !important; /* your desired bg color */
    color: #000 !important;
    width: 210mm; /* A4 width */
    min-height: 297mm; /* A4 height */
    padding: 20mm; /* margins inside page */
    box-sizing: border-box;
  }

  /* Remove shadows/borders for print */
  .resume-page,
  .resume-container {
    box-shadow: none !important;
    border: none !important;
  }

  /* Force page break between multiple resumes if needed */
  .resume-page {
    page-break-after: always;
  }
}

.resume-page {
  position: relative; /* anchor the watermark inside this */
}
/* watremark */
.preview-cnt::before {
  content: "MITM"; /* Put your watermark text here */
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 15rem;
  color: rgba(0, 0, 0, 0.1);
  pointer-events: none; /* Doesn't block clicks */
  z-index: 2; /* On top of bg, behind content */
  white-space: nowrap;
  font-weight: bold;
  letter-spacing: 5px;
  user-select: none;
}

.preview-cnt {
  position: relative; /* To anchor the pseudo-element absolutely */
}
/* to print cv 100% w and h */
@media print {
  html,
  body {
    width: 210mm;
    height: 297mm;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  /* Your main CV/resume wrapper */
  .resume-page,
  .container,
  .print_area,
  .preview-cnt {
    width: 210mm !important;
    height: 297mm !important;
    max-width: 210mm !important;
    max-height: 297mm !important;
    min-height: 297mm !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box;
    background: #fff !important;
  }
  /* Prevent breaks inside blocks */
  * {
    page-break-inside: avoid !important;
  }
}
@page {
  size: A4;
  margin: 0;
}
@media print {
  body,
  html,
  .resume-page {
    font-size: 13px !important;
  }
  .preview-blk,
  .skills-items,
  .languages-items,
  .cv-section {
    margin-bottom: 8px !important;
    padding-bottom: 0 !important;
  }
}
@media print {
  .resume-page {
    border: 1px solid red !important;
  }
}
/* color  */
.color-swatch-group {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: border-color 0.3s;
}

.swatch:hover {
  border-color: #222;
}
/* pop up model  */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.33);
}
.modal-content {
  background: #fff;
  margin: 10vh auto;
  padding: 32px 24px 20px 24px;
  border-radius: 10px;
  width: 90%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}
.close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.7em;
  font-weight: bold;
  color: #222;
  cursor: pointer;
}
.close-btn:hover {
  color: #e00;
}

/* skill size small  */
.skill-label {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
/* skills 100%  */
/* percentage problem  */
