/* Make SVG icons white by default, color on hover */
.skill-svg-icon svg.ps-icon text {
  fill: var(--white);
  transition: fill 0.2s;
}

.skill-circle.photoshop:hover .skill-svg-icon svg.ps-icon text {
  fill: var(--photoshop-blue);
}

.skill-svg-icon svg.arduino-icon circle,
.skill-svg-icon svg.arduino-icon ellipse {
  stroke: var(--white);
  fill: var(--white);
  transition: stroke 0.2s, fill 0.2s;
}

.skill-svg-icon svg.arduino-icon circle {
  fill: none;
}

.skill-circle.arduino:hover .skill-svg-icon svg.arduino-icon circle {
  stroke: var(--white);
}

.skill-circle.arduino:hover .skill-svg-icon svg.arduino-icon ellipse {
  fill: var(--white);
}

.skill-circle.arduino:hover .skill-svg-icon svg.arduino-icon rect {
  fill: var(--arduino-teal);
  fill-opacity: 1;
  transition: fill 0.2s, fill-opacity 0.2s;
}

.skill-svg-icon svg.arduino-icon rect {
  fill: var(--text-primary);
  fill-opacity: 0.92;
  transition: fill 0.2s, fill-opacity 0.2s;
}

.skill-circle.photoshop:hover .skill-svg-icon svg.ps-icon rect {
  fill: var(--photoshop-gray);
  fill-opacity: 1;
}

.skill-svg-icon svg.ps-icon rect {
  fill: var(--text-primary);
  fill-opacity: 0.92;
  transition: fill 0.2s, fill-opacity 0.2s;
}

/* Software Skills Circle Styles */

.skills-circles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
  justify-content: center;
}

.skill-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.92em;
  font-weight: 500;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  opacity: 0.92;
  color: var(--text-primary);
}

.skill-circle:hover {
  transform: scale(1.07);
  opacity: 1;
  color: var(--white);
}

.skill-circle i {
  font-size: 1.5em;
  margin-bottom: 6px;
  opacity: 0.92;
  transition: color 0.18s;
}

.skill-circle span {
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
}

.skill-circle.photoshop:hover span {
  background: linear-gradient(90deg, var(--photoshop-blue) 0%, #0057b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: background 0.3s, color 0.3s;
}

.skill-circle.sketchup:hover span {
  background: linear-gradient(90deg, #e41b1b 0%, #ff6f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: background 0.3s, color 0.3s;
}

.skill-circle.arduino:hover span {
  background: linear-gradient(90deg, var(--arduino-teal) 0%, #00c3e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: background 0.3s, color 0.3s;
}

.skill-circle.office:hover span {
  background: linear-gradient(90deg, #217346 0%, #185c37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: background 0.3s, color 0.3s;
}

.skill-circle.sketchup:hover i.fa-cube {
  color: #e41b1b;
  /* SketchUp red */
}

.skill-circle.office:hover i.fa-file-excel {
  color: #217346;
  /* Office Excel green */
}

/* Programming Skills Card Styles */

/* Programlama dilleri ve yazılım becerileri için iletişim kutusu stili */

.skills-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
}

.skill-card {
  display: flex;
  align-items: center;
  background: var(--light-background);
  border-radius: 8px;
  box-shadow: 0px 0px 5px -1px var(--dark-gray);
  font-size: 1em;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  opacity: 0.95;
  color: var(--text-primary);
  padding: 3px 7px;
  margin: 0;
  cursor: pointer;
  width: fit-content;
  flex: 0 1 auto;
}

.skill-card i {
  font-size: 1.4em;
  margin-right: 12px;
  opacity: 0.92;
  transition: color 0.18s;
}

.skill-card span {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex: 1;
}

/* Hover efektleri mevcut renklerle korundu */
.skill-card.htmlcss:hover {
  background: linear-gradient(135deg, #b8401a 0%, #1c3365 100%);
  color: #fff;
}

.skill-card.htmlcss:hover i.fa-html5 {
  color: #e44d26;
}

.skill-card.python:hover {
  background: linear-gradient(135deg, #1c3365 0%, #22407f 100%);
  color: #fff;
}

.skill-card.python:hover i.fa-python {
  color: #3776ab;
}

.skill-card.mysql:hover {
  background: linear-gradient(135deg, #1c3365 0%, #00506b 100%);
  color: #fff;
}

.skill-card.mysql:hover i.fa-database {
  color: #00758f;
}

.skill-card.cs:hover {
  background: linear-gradient(135deg, #c75757 0%, #729aef 100%);
  color: #fff;
}

.skill-card.cs:hover i.fa-code {
  color: #68217a;
  text-shadow: 0 1px 6px #68217a;
}

.skill-card.cs:hover span {
  color: #fff;
  text-shadow: 0 1px 6px #68217a;
}

.skill-card.php:hover {
  background: linear-gradient(135deg, #777bb4 0%, #232531 100%);
  color: #fff;
}

.skill-card.php:hover i.fa-php {
  color: #777bb4;
  text-shadow: 0 1px 6px #232531;
}

.skill-card.php:hover span {
  color: #fff;
  text-shadow: 0 1px 6px #232531;
}

/*      HAKKIMDA KISMI      */

:root {
  /* Ana renkler */
  --primary-blue: #1c3365;
  --dark-blue: #1e293b;
  --light-blue: #38bdf8;
  --slate-gray: #64748b;
  --dark-slate: #334155;

  /* Arka plan renkleri */
  --light-background: #f1f5f9;
  --white: #fff;
  --dark-gray: #3d405b;

  /* Metin renkleri */
  --text-primary: #222;

  /* Hover ve geçiş renkleri */
  --hover-shadow: rgba(37, 99, 235, 0.18);
  --text-muted: rgba(61, 64, 91, 0);

  /* Photoshop renkleri */
  --photoshop-blue: #31a8ff;
  --photoshop-gray: #dbdbdb;

  /* Arduino renkleri */
  --arduino-teal: #00979d;

  /* Eski değişkenler (geriye uyumluluk için) */
  --hakkimda-tema: var(--primary-blue);
  --hoveryazilar: var(--dark-blue);
  --hoverbgler: var(--primary-blue);
}

#hakkimda {
  background-size: 200% 200%;
  justify-content: unset;
  background-position: 100% 100%;
  background: linear-gradient(120deg, #e0e7ef 0%, var(--primary-blue) 150%);
}

.hakkimda-icerikleri-alani {
  margin-top: 20px;
  width: 78vw;
}

body .resume,
html .resume {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.65px;
  color: var(--text-primary);
  cursor: default;
}

.resume a {
  text-decoration: none;
  color: var(--primary-blue);
  display: block;
  transition-duration: 0.3s;
}

.resume ul {
  list-style-type: none;
  padding: 0;
}

.resume h3 {
  color: var(--primary-blue);
  margin: 10px 0;
  text-transform: uppercase;
  font-size: 18px;
}

.resume {
  width: 78vw;
  margin: 20px auto;
  /*
      background: #fbfbfb;
      border: 1px solid #bbb;
      box-shadow: 0 0 20px -3px #bbb;
      */
  position: relative;
  display: flex;
}

.resume::before {
  content: "";
  width: 100%;
  height: 6px;
  background: var(--hakkimda-tema);
  position: absolute;
  bottom: 0;
  left: 0;
}

.resume::after {
  content: "";
  display: block;
  clear: both;
}

.resume .base,
.resume .func {
  box-sizing: border-box;
  float: left;
}

.resume .base>div,
.resume .func>div {
  padding-bottom: 10px;
}

.resume .base>div:last-of-type,
.resume .func>div:last-of-type {
  padding-bottom: 0;
}

.resume .base {
  width: 20vw;
  padding: 30px 15px;
  /*
      background: rgba(238, 238, 238, 0.6);*/
  margin-right: 32px;
}

.resume .base .profile {
  background: var(--hakkimda-tema);
  padding: 30px 15px 5px 15px;
  margin: -30px -15px 45px -15px;
  position: relative;
  z-index: 2;
}

.resume .base .profile::after {
  content: "";
  position: absolute;
  background: var(--hakkimda-tema);
  width: 100%;
  height: 30px;
  bottom: -15px;
  left: 0;
  transform: skewY(-5deg);
  z-index: -1;
}

.resume .base .profile .photo img {
  width: 100%;
  border-radius: 50%;
}

.resume .base .profile .info {
  text-align: center;
  color: var(--white);
}

.resume .base .profile .info .name {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: normal;
}

.resume .base .contact div {
  line-height: 24px;
}

.resume .base .contact div a:hover {
  color: var(--hoverbgler);
}

.resume .base .contact div a:hover span::after {
  width: 100%;
}

.resume .base .contact div:hover i {
  color: var(--hoverbgler);
}

.resume .base .contact div i {
  color: var(--text-primary);
  width: 20px;
  height: 20px;
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
  transition-duration: 0.3s;
}

.resume .base .contact div span {
  position: relative;
}

.resume .base .contact div span::after {
  content: "";
  position: absolute;
  background: var(--hoveryazilar);
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
}

.resume .base .contact span {
  transition-duration: 0.3s;
}

.resume .base .contact span:hover {
  color: var(--hakkimda-tema);
  transition-duration: 0.3s;
}

.resume .base .about {
  transition-duration: 0.3s;
  font-size: 3em;
  margin: 0;
}

.resume .base .about:hover p {
  color: var(--dark-blue);
  transition-duration: 0.3s;
}

.underline-animation {
  position: relative;
  display: inline-block;
}

.underline-animation::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  display: block;
  right: 0;
  background: var(--primary-blue);
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
}

.underline-animation:hover::after {
  width: 100%;
  right: 0;
  background: var(--primary-blue);
}

.resume .base .follow .box {
  text-align: center;
  vertical-align: middle;
}

.resume .base .follow .box a {
  display: inline-block;
  vertical-align: text-bottom;
}

.resume .base .follow .box a:hover i {
  background: var(--hoverbgler);
  border-radius: 5px;
  transform: rotate(45deg) scale(0.8);
}

.resume .base .follow .box a:hover i::before {
  transform: rotate(-45deg) scale(1.4) !important;
}

.resume .base .follow .box i {
  display: inline-block;
  font-size: 30px;
  background: var(--text-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: var(--white);
  margin: 0 10px 10px 10px;
  transition-duration: 0.1s;
}

.resume .base .follow .box i:hover {
  /*color: var(--hakkimda-tema);*/
  background: var(--white);
}

.resume .base .follow .box i::before {
  transition-duration: 0.1s;
}

.resume .base .follow .box i.fa-brands::before {
  display: block;
}

.resume .func {
  width: 60vw;
  padding: 30px 25px;
}

.resume .func:hover>div {
  transition-duration: 0.3s;
}

.resume .func .work:hover h3,
.resume .func .edu:hover h3,
.resume .func .interests:hover h3 {
  letter-spacing: 1.6px;
}

.resume .func .work:hover h3 i,
.resume .func .edu:hover h3 i,
.resume .func .interests:hover h3 i {
  transform: scale(1.2);
}

/*.resume .func:hover>div:not(:hover) {
  opacity: 0.5;
}
*/

.resume .func h1 {
  text-align: center;
  color: var(--primary-blue);
}

.resume .func h3 {
  transition-duration: 0.3s;
  margin-top: 0;
  text-align: left;
}

.resume .func h3 i {
  color: var(--white);
  background: var(--hakkimda-tema);
  width: 42px;
  height: 42px;
  font-size: 20px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  margin-right: 8px;
  transition-duration: 0.3s;
}

.resume .func .work-edu {
  display: flex;
  gap: 4%;
}

.resume .func .work-edu .work {
  flex-basis: 41%;
}

.resume .func .work-edu .edu {
  flex-basis: 55%;
}

.resume .func .work small,
.resume .func .edu small {
  display: block;
  opacity: 0.7;
}

.resume .func .work ul li {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
  padding-bottom: 8px;
}

.resume .func .edu ul li {
  position: relative;
  margin-left: 15px;
  padding-left: 25px;
  padding-bottom: 17px;
}

.resume .func .work ul li:hover::before,
.resume .func .edu ul li:hover::before {
  animation: circle 1.2s infinite;
}

.resume .func .work ul li:hover span,
.resume .func .edu ul li:hover span {
  color: var(--hoveryazilar);
}

@keyframes circle {
  from {
    box-shadow: 0 0 0 0px var(--dark-gray);
  }

  to {
    box-shadow: 0 0 0 6px var(--text-muted);
  }
}

.resume .func .work ul li:first-of-type::before,
.resume .func .edu ul li:first-of-type::before {
  width: 10px;
  height: 10px;
  left: -2px;
}

.resume .func .work ul li:last-of-type,
.resume .func .edu ul li:last-of-type {
  padding-bottom: 3px;
}

.resume .func .work ul li:last-of-type::after,
.resume .func .edu ul li:last-of-type::after {
  border-radius: 1.5px;
}

.resume .func .work ul li::before,
.resume .func .work ul li::after,
.resume .func .edu ul li::before,
.resume .func .edu ul li::after {
  content: "";
  display: block;
  position: absolute;
}

.resume .func .work ul li::before,
.resume .func .edu ul li::before {
  width: 7px;
  height: 7px;
  border: 3px solid var(--primary-blue);
  background: var(--white);
  border-radius: 50%;
  left: 0;
  z-index: 1;
}

.resume .func .work ul li::after,
.resume .func .edu ul li::after {
  width: 3px;
  height: 100%;
  background: var(--primary-blue);
  left: 5px;
  top: 0;
}

.resume .func .work ul li span,
.resume .func .edu ul li span {
  transition: color 0.3s, letter-spacing 0.3s, text-shadow 0.3s;
  color: var(--text-primary);
  display: inline-block;
  letter-spacing: 0.2px;
  text-shadow: none;
}

.resume .func .work ul li:hover span,
.resume .func .edu ul li:hover span {
  color: var(--dark-blue);
  letter-spacing: 1.1px;
  text-shadow: 0 0 2px var(--primary-blue);
}

.resume .func .interests-items {
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  color: var(--text-primary);
}

.resume .func .interests-items div {
  display: inline-block;
  width: 100%;
  transition: color 0.3s, letter-spacing 0.3s, text-shadow 0.3s;
  letter-spacing: 0.2px;
  text-shadow: none;
}

.resume .func .interests-items div:hover i {
  transform: scale(1.2);
  color: var(--primary-blue);
}

.resume .func .interests-items div:hover span {
  color: var(--dark-blue);
  letter-spacing: 1.1px;
  text-shadow: 0 0 2px var(--primary-blue);
  transition-duration: 0.3s;
}

.resume .func .interests-items div i {
  font-size: 45px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  transition-duration: 0.3s;
}

.resume .func .interests-items div i.code {
  display: block;
  margin: 0 auto;
}

.resume .func .interests-items div i.code svg {
  width: 50px;
  height: 50px;
  margin-top: 5px;
  fill: var(--hakkimda-tema);
}

.resume .func .interests-items div span {
  display: block;
}

@media screen and (max-width: 1024px) {
  .resume .func .interests-items div i {
    width: unset;
    height: unset;
  }

  .skills-circles {
    gap: 10px;
  }

  .skills-cards {
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  #hakkimda {
    padding: 20px;
  }

  .hakkimda-icerikleri-alani {
    width: 100%;
    margin-top: 10px;
  }

  .resume {
    flex-direction: column-reverse;
    width: 100%;
    font-size: 0.7rem;
  }

  .resume .base,
  .resume .func {
    width: 100%;
    padding: 15px;
  }

  .resume .base .profile {
    margin: -15px -15px 30px -15px;
  }

  .resume .base .profile .info .name {
    font-size: 1.2em;
  }

  .resume .base .contact div {
    line-height: 20px;
  }

  .resume .func .work,
  .resume .func .edu {
    width: 100%;
    float: none;
  }

  .resume .func .work-edu,
  .resume .func .interests {
    width: 100%;
    float: none;
    display: block;
  }

  .skills-circles {
    gap: 7px;
  }

  .skills-cards {
    gap: 5px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .resume .func .interests-items div {
    width: 100%;
    margin-bottom: 10px;
  }
}

.resume .func .work-edu {
  display: flex;
  gap: 4%;
}

/* Work-edu detail styles */
#work-edu-detail {
  display: block;
  margin-bottom: 20px;
  padding: 18px;
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 51, 101, 0.07);
  min-height: 60px;
}

#work-edu-detail-content {
  transition: opacity 0.5s, height 0.5s;
  overflow: hidden;
}

.hidden-contents {
  display: none;
}

#work-edu-detail h3 {
  color: var(--primary-blue);
  margin: 0 0 10px 0;
  font-size: 1.4em;
}

#work-edu-detail h4 {
  color: var(--dark-blue);
  margin: 10px 0;
  font-size: 1.1em;
}

#work-edu-detail ul {
  margin: 10px 0;
  padding-left: 20px;
}

#work-edu-detail ul li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: left;
}

#work-edu-detail ul li strong {
  width: 25%;
  margin-right: 12px;
  text-align: right;
  font-weight: 600;
  color: var(--primary-blue);
  flex-shrink: 0;
}

#work-edu-detail ul li span,
#work-edu-detail ul li small,
#work-edu-detail ul li em {
  flex: 1;
  text-align: left;
}

#work-edu-detail p {
  margin-top: 0;
  font-style: italic;
  color: var(--slate-gray);
}

/* Work-edu item click styling */
.work-edu-item {
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Active item styling - stays highlighted */
.work-edu-item.active span {
  color: var(--dark-blue);
  letter-spacing: 1.1px;
  text-shadow: 0 0 2px var(--primary-blue);
}

.work-edu-item.active::before {
  animation: circle 1.2s infinite;
}

/* Ensure active span styling persists even without hover */
.work-edu-item.active span {
  color: var(--dark-blue) !important;
  letter-spacing: 1.1px !important;
  text-shadow: 0 0 2px var(--primary-blue) !important;
}

#work-edu-detail ul li:not(:last-child) {
  position: relative;
}

#work-edu-detail ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: #e0e0e0;
}

.work-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.work-title-row p {
  text-align: right;
}

/* Responsive */

/* Mobilde İş Deneyimi başlığı ikon ve yazı alt alta olsun */
@media (max-width: 768px) {

  .resume .func h1 {
    font-size: 2.3em;
  }


  .resume .func .edu h3,
  .resume .func .work h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-items: center;
    transform: translateX(20px);
  }

  .resume .func .edu h3 i,
  .resume .func .work h3 i {
    margin-bottom: 0;
    margin-right: 0;
  }

  .resume .func .interests-items .movie {
    display: none;
  }

  .resume .func .interests-items {
    color: var(--primary-blue);
  }

  .resume .base .about {
    transition-duration: 0.3s;
    font-size: 3em;
    margin: 0;
  }

  .resume .base .contact {
    display: none;
  }

  #orta {
    display: flex;
  }

  #sol {
    width: 50%;
    float: left;
  }

  #sag {
    width: 50%;
    float: right;
  }

  .skill-circle {
    font-size: 0.8rem;
  }

  .skill-circle span {
    width: min-content;
  }

  .skill-card i {
    font-size: 1.3rem;
  }

  .mobileprofile {
    display: flex !important;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
    background: linear-gradient(90deg, rgba(28, 51, 101, 0) 0%, rgba(28, 51, 101, 0.13) 18%, rgba(28, 51, 101, 0.18) 50%, rgba(28, 51, 101, 0.13) 82%, rgba(28, 51, 101, 0) 100%);
    /* Ortada var, kenarlara doğru kayboluyor */
    padding: 10px 0 !important;
    justify-content: center;
  }

  .mobileprofile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .mobileprofile .name,
  .mobileprofile .job {
    margin: 0;
  }

  .mobileprofile .name {
    font-size: 2.2em;
    color: var(--primary-blue);
  }

  .mobileprofile .job {
    color: var(--slate-gray);
    font-size: 1.5em;
  }

  .resume .base .profile {
    display: none;
  }





}

/*navbar eklendiğinde, yani telefon modunda*/
@media screen and (max-width: 1024px) {


  #hakkimda {
    padding-bottom: 8.2vh;
  }


  .resume::before {
    display: none;
  }

  
  .resume .base .follow .box i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }


}

/* Animasyonlar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobil animasyonlar */
@media (max-width: 768px) {
  .resume .func h1 {
    animation: fadeInDown 0.8s ease-out;
  }


  .resume .func .about p:first-of-type {
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .resume .func .about p:last-of-type {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }

  .resume .func .work {
    animation: slideInLeft 0.8s ease-out 0.8s both;
  }

  .resume .func .edu {
    animation: slideInRight 0.8s ease-out 1s both;
  }

  #work-edu-detail {
    animation: fadeInUp 0.8s ease-out 1.2s both;
  }

  .resume .func .interests {
    animation: fadeInUp 0.8s ease-out 1.4s both;
  }

  .skills-cards .skill-card:nth-child(1) {
    animation: fadeIn 0.6s ease-out 0.8s both;
  }

  .skills-cards .skill-card:nth-child(2) {
    animation: fadeIn 0.6s ease-out 0.9s both;
  }

  .skills-cards .skill-card:nth-child(3) {
    animation: fadeIn 0.6s ease-out 1s both;
  }

  .skills-cards .skill-card:nth-child(4) {
    animation: fadeIn 0.6s ease-out 1.1s both;
  }

  .skills-cards .skill-card:nth-child(5) {
    animation: fadeIn 0.6s ease-out 1.2s both;
  }

  .skills-circles .skill-circle:nth-child(1) {
    animation: fadeIn 0.6s ease-out 1s both;
  }

  .skills-circles .skill-circle:nth-child(2) {
    animation: fadeIn 0.6s ease-out 1.1s both;
  }

  .skills-circles .skill-circle:nth-child(3) {
    animation: fadeIn 0.6s ease-out 1.2s both;
  }

  .skills-circles .skill-circle:nth-child(4) {
    animation: fadeIn 0.6s ease-out 1.3s both;
  }
}