@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #512e8f;
  border-radius: 10px;
}

::-moz-selection {
  color: white;
  background-color: #512e8f;
}

::selection {
  color: white;
  background-color: #512e8f;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h2 {
  color: #512e8f;
  text-align: center;
  padding: 15px 30px;
  font-weight: bold !important;
  font-size: 20px !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.header div {
  width: 75vw;
  height: 145px;
  background-color: #512e8f;
  top: -10px;
}

.main-header {
  height: 80px;
  background: linear-gradient(90deg, purple, #512e8f);
  padding: 50px 15px !important;
  position: relative;
  margin-bottom: 60px;
  z-index: -1;
}
.main-header .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid white;
}
.main-header {
  z-index: 1;
}
.main-header a {
  display: block;
  width: 40px;
  height: 40px;
  background: white;
  color: #512e8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.main-header a:hover {
  transform: scale(1.2);
  border: 4px solid purple;
}
.main-header a img {
  z-index: 5;
  padding: 2px;
  width: 30px;
}
.main-header .contact-section {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}
.main-header .squares {
  position: absolute;
  right: 0px;
  top: -100px;
}
.main-header .squares .square {
  width: 35px;
  height: 35px;
  box-shadow: 0 8px 20px rgb(219, 35, 219);
  background-color: rgb(243, 44, 243);
  border: 3px solid rgb(253, 251, 138);
  position: absolute;
  border-radius: 6px;
  opacity: 0.8;
  z-index: -1;
  animation: fallRotateSmooth 2s linear infinite;
}
.main-header .squares .square:nth-child(1) {
  right: 80px;
  animation-duration: 3.2s;
}
.main-header .squares .square:nth-child(2) {
  right: 20px;
  top: 20px;
  animation-duration: 3s;
}

@keyframes fallRotateSmooth {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(160px) rotate(360deg);
    opacity: 0;
  }
}
.main-title h1 {
  color: #512e8f;
  font-weight: bold;
  padding-left: 10px;
}
.main-title span {
  display: block;
  width: 100px;
  border-bottom: 10px solid #512e8f;
  border-radius: 0 100px 100px 0;
}

.boxes {
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.boxes .box {
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  height: 71px;
  width: 351px;
  border: 3px solid #512e8f;
  border-radius: 17px;
}
.boxes .box .image {
  width: 20%;
  background: #512e8f;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.boxes .box .image img {
  width: 50px;
}
.boxes .box .text-skill {
  text-align: center;
  font-weight: bold;
  color: #512e8f;
}

.skill-boxes {
  gap: 30px;
}
.skill-boxes .image {
  position: relative;
  background-color: #333;
  width: 100%;
}
.skill-boxes .image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #512e8f;
  border-radius: 50%;
}
.skill-boxes .image img {
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translate(-50%, -50%);
  width: 40px;
}
.skill-boxes .title-box {
  text-align: center;
  font-weight: bold;
  margin: 10px 0 15px;
  color: #512e8f;
}
.skill-boxes .box {
  font-size: 14px;
  border: 5px solid #512e8f;
  border-radius: 15px;
  padding: 20px;
}
.skill-boxes .box ul .title-box {
  margin: 35px 0 0 0;
  font-weight: bold;
}
.skill-boxes .box ul {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding-bottom: 15px;
}
.skill-boxes .box ul li {
  position: relative;
}
.skill-boxes .box ul li::after {
  content: "";
  width: 73%;
  height: 1.5px;
  background-color: rgba(119, 119, 119, 0.2392156863);
  position: absolute;
  bottom: 5px;
  left: 0;
}
.skill-boxes .box ul li {
  padding: 7px 2px;
  color: #777;
  min-width: 130px;
  max-width: 500px;
  color: #512e8f;
  position: relative;
}
.skill-boxes .box ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #512e8f;
  border-radius: 50px;
}

.soft-boxes {
  gap: 30px;
  font-size: 14px;
}
.soft-boxes .image {
  position: relative;
  background-color: #333;
  width: 100%;
}
.soft-boxes .image::before {
  content: "";
  position: absolute;
  left: 6%;
  top: -25px;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #512e8f;
  border-radius: 50%;
}
.soft-boxes .image img {
  position: absolute;
  left: 6%;
  top: -25px;
  transform: translate(-50%, -50%);
  width: 40px;
}
.soft-boxes .box {
  font-size: 14px;
  position: relative;
}
.soft-boxes .box .title-box {
  text-align: center;
  font-weight: bold;
  margin: 38px 0 0px;
  width: 100%;
  text-align: left;
  margin-left: -15px;
  position: relative;
}
.soft-boxes .box .title-box::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #512e8f;
  border-radius: 50px;
}
.soft-boxes .box .heading-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #512e8f;
  color: white;
  padding: 1px 50px;
  font-size: 14px;
  border-radius: 0px 0px 10px 10px;
}
.soft-boxes .box {
  border: 5px solid #512e8f;
  border-radius: 15px;
  padding: 20px;
}
.soft-boxes .box ul {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.soft-boxes .box ul li {
  position: relative;
}
.soft-boxes .box ul li::after {
  content: "";
  width: 73%;
  height: 1.5px;
  background-color: rgba(119, 119, 119, 0.2392156863);
  position: absolute;
  bottom: 5px;
  left: 0;
}
.soft-boxes .box ul li {
  padding: 5px 2px;
  color: #777;
  min-width: 130px;
  max-width: 500px;
  color: #512e8f;
  position: relative;
}
.soft-boxes .box ul li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border: 1px solid #512e8f;
  background: transparent;
  border-radius: 50%;
}

.progress-section {
  margin: 40px 0;
}
.progress-section .progress-title {
  background: #5b2c91;
  color: white;
  padding: 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: clamp(14px, 2vw, 18px);
}
.progress-section .progress-box {
  background: #512e8f;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid #512e8f;
}
.progress-section .progress-box span {
  padding: 10px 15px;
  font-weight: 500;
}
.progress-section .progress-box .value {
  background: white;
  border-left: 2px solid #5b2c91;
  border-radius: 0 25px 25px 0;
  min-width: 60px;
  text-align: center;
  color: #333;
  font-weight: bold;
}
.progress-section .progress-box::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 70%;
  background: #5b2c91;
  left: 0;
  top: 0;
  z-index: -1;
}
.progress-section .progress-box {
  position: relative;
  color: white;
}
.progress-section .highlight::before {
  width: 90%;
}

.contact-section {
  margin: 0 0 40px 0;
  background: url("your-image.jpg") no-repeat center center/cover;
}
.contact-section .progress-title {
  background: #5b2c91;
  color: white;
  padding: 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-left: 0 !important;
  font-size: clamp(14px, 2vw, 18px);
}
.contact-section .section-padd {
  padding: 10px 40px;
}
.contact-section .box {
  min-width: -moz-fit-content;
  min-width: fit-content;
  background-color: #512e8f;
  color: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.contact-section .box h5 {
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-section .box ul {
  padding-left: 15px;
}
.contact-section .box ul li {
  margin-bottom: 8px;
}

.job-section {
  padding: clamp(20px, 5vw, 40px);
}
.job-section .job-date {
  color: #512e8f;
  font-weight: bold;
  font-size: 22px !important;
  font-size: clamp(25px, 5vw, 36px);
  text-align: center;
}
.job-section .job-label {
  display: inline-block;
  background: #512e8f;
  color: white;
  padding: 2px 35px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: clamp(14px, 2vw, 18px);
}
.job-section .job-info {
  color: #512e8f;
  font-size: clamp(14px, 2.5vw, 18px);
  margin-bottom: 0 !important;
}
.job-section .job-box {
  background: #512e8f;
  color: white;
  padding: clamp(15px, 3vw, 25px);
  border-radius: 15px;
  height: 100%;
}
.job-section .job-box h4 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: clamp(16px, 3vw, 22px);
}
.job-section .job-box ul {
  padding-left: 20px;
}
.job-section .job-box ul li {
  list-style: disc;
  margin-bottom: 10px;
  font-size: clamp(14px, 2.5vw, 18px);
}

.education-section {
  padding: clamp(20px, 5vw, 40px);
  background: #fff;
}
.education-section .section-title {
  background: #5b2c91;
  color: white;
  padding: clamp(6px, 1.5vw, 10px) clamp(15px, 3vw, 25px);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: clamp(14px, 2vw, 18px);
}
.education-section .edu-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}
.education-section .edu-item .icon {
  background: #512e8f;
  color: white;
  width: clamp(35px, 8vw, 50px);
  height: clamp(35px, 8vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 4vw, 22px);
  flex-shrink: 0;
}
.education-section .edu-item .content h5 {
  margin: 0;
  font-weight: 600;
  color: black;
  font-size: clamp(15px, 2.5vw, 20px);
}
.education-section .edu-item .content p {
  margin: 2px 0;
  color: #666;
  font-size: clamp(13px, 2.3vw, 16px);
}

.hero-section {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 50px);
  text-align: center;
}
.hero-section .hero-image {
  display: flex;
  justify-content: center;
}
.hero-section .hero-image img {
  width: clamp(200px, 60vw, 500px);
  height: auto;
}
.hero-section .hero-title h2 {
  font-weight: bold !important;
  color: #222;
  font-size: 18px !important;
  font-weight: bold !important;
  padding: 0 !important;
}
.hero-section div {
  font-weight: normal;
  font-size: 16px !important;
  font-size: clamp(18px, 3vw, 24px);
}
.hero-section ul li {
  list-style: disc;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}

.sec-title {
  margin-top: 70px;
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
}
.sec-title h2 {
  font-size: 18px !important;
  font-weight: bold;
  border: 4px solid purple;
  color: white;
  padding: 10px 20px !important;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(51, 51, 51, 0.368627451);
  width: -moz-fit-content;
  width: fit-content;
  color: purple;
}

.project-card-section {
  margin: 30px;
  background-color: white;
}
.project-card-section .project-image-wrapper .project-image-box {
  width: 100%;
  max-width: 720px;
  background-color: #512e8f;
  border-radius: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.project-card-section .project-image-wrapper .project-image-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  left: 0;
  top: 0;
}
.project-card-section .project-image-wrapper .project-image-box img {
  width: 100%;
  border-radius: 15px;
  max-width: 620px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.project-card-section .project-action-wrapper .project-btn {
  background-color: purple;
  color: #ffffff;
  border-radius: 0.6rem;
  padding: 10px 16px 10px 40px;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 600;
  position: relative;
}
.project-card-section .project-action-wrapper .project-btn:hover {
  background-color: #512e8f;
  color: #ffffff;
}
.project-card-section .project-action-wrapper .project-btn::before {
  content: "➜]";
  font-size: 20px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.project-card-section .project-action-wrapper .project-file-name {
  color: #1f1f1f;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
}
.project-card-section .project-action-wrapper .project-file-name strong {
  display: inline-block;
  margin-bottom: 0.2rem;
}
.project-card-section .project-info-box {
  background-color: #512e8f;
  color: #ffffff;
  border-radius: 0.6rem;
  padding: 1.5rem 1.5rem 1rem;
}
.project-card-section .project-info-box .project-box-title {
  color: white;
  background: transparent;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  top: -0.25rem;
}
.project-card-section .project-info-box ul {
  margin: 0;
  padding-left: 1.3rem;
}
.project-card-section .project-info-box ul li {
  list-style: disc;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.45;
  margin-bottom: 0.45rem;
}
.project-card-section .project-info-box ul li::marker {
  color: #ffffff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.second-footer {
  margin-top: auto;
  width: 100vw;
  height: 80px;
  background-color: #512e8f;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.second-footer img {
  width: 25px;
}
.second-footer .box {
  border: 3px solid white;
  border-radius: 17px;
  padding: 3px;
  position: relative;
  max-width: 250px;
}
.second-footer .box ::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 2px;
  background-color: white;
  height: 27px;
  width: 27px;
  border-radius: 50%;
}
.second-footer .box img {
  width: 20px;
  position: absolute;
  z-index: 10;
  left: -10px;
  top: 5px;
}
.second-footer .box .text-skill {
  text-align: center;
  color: white;
}

footer {
  position: relative;
  overflow: visible;
}
footer ::before {
  content: "";
  width: 100%;
  height: 90%;
  background-color: #512e8f;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
footer .footer-inner {
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-inner img {
  width: 300px;
  position: absolute;
  bottom: 0;
  left: -40px;
}

footer .all-box {
  width: 80vw;
  flex-direction: column;
  justify-content: center;
  padding: 4px;
  gap: 16px;
  padding-bottom: 31px;
}
footer .all-box .box {
  border: 3px solid white;
  border-radius: 17px;
  padding: 3px;
  position: relative;
  max-width: 250px;
}
footer .all-box .box ::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 2px;
  background-color: white;
  height: 27px;
  width: 27px;
  border-radius: 50%;
}
footer .all-box .box img {
  width: 20px;
  position: absolute;
  z-index: 10;
  left: -10px;
  top: 5px;
}
footer .all-box .box .text-skill {
  text-align: center;
  color: white;
}/*# sourceMappingURL=main.css.map */