:root {
  color-scheme: light;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.ttf");
}
@font-face {
  font-family: "Raleway-semibold";
  src: url("../fonts/Raleway-SemiBold.ttf");
}
@font-face {
  font-family: "Raleway-bold";
  src: url("../fonts/Raleway-Bold.ttf");
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes popDown {
  0% {
    transform: translateY(-100px);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(300px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-300px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    transform: scale(0);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  color: #fff;
  font-family: "Raleway";
  text-align: center;
  margin: 0px;
  font-size: 8pt;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.disable-hover {
  pointer-events: none;
}

.overflow-wrap {
  overflow-x: hidden;
}

.canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url("../img/filler.png") center center/cover;
}

.button {
  padding: 10px 20px;
  border: 2px solid #fff;
  box-sizing: inherit;
  display: inline-block;
  font-size: 13pt;
  transition: all 0.5s;
  cursor: pointer;
}
.button:hover {
  background-color: #04c2c9;
  border-color: #04c2c9;
}
.button .mdi {
  vertical-align: middle;
}

.bold {
  font-family: "Raleway-bold";
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex.row {
  flex-direction: row;
}
.flex.wrap {
  flex-wrap: wrap;
}

.hex-wrap {
  text-align: center;
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
}

.hexagon {
  background-color: #04c2c9;
  height: 100%;
  width: calc(100% * 0.57735);
  display: inline-block;
}

.hexagon:before {
  position: absolute;
  top: 0;
  right: calc((100% / 2) - ((100% * 0.57735) / 2));
  background-color: inherit;
  height: inherit;
  width: inherit;
  content: "";
  transform: rotateZ(60deg);
}

.hexagon:after {
  position: absolute;
  top: 0;
  right: calc((100% / 2) - ((100% * 0.57735) / 2));
  background-color: inherit;
  height: inherit;
  width: inherit;
  content: "";
  transform: rotateZ(-60deg);
}
.highlight-home {
  color: #e31b6d;
  cursor: pointer;
  font-size: 8rem;
  margin: 1.5rem;
  font-weight: 500;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
  .highlight-home {
    font-size: 6rem;
  }
}

@media screen and (max-width: 992px) {
  .highlight-home {
    font-size: 6.5rem;
  }
}

@media screen and (max-width: 768px) {
  .highlight-home {
    font-size: 6rem;
  }
}

@media screen and (max-width: 576px) {
  .highlight-home {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .highlight-home {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 375px) {
  .highlight-home {
    font-size: 2rem;
  }
}

/* Subtitle Styling */
.text p:nth-child(3) {
  font-size: calc(1rem + 1vw);
  color: #333;
  margin-top: 0.5rem;
}

.highlight {
  color: #e31b6d;
  cursor: pointer;
}

.header {
  font-size: 25pt;
  font-family: "raleway-bold";
  position: relative;
  color: #444649;
  position: relative;
}

.header-bar {
  width: 70px;
  height: 4px;
  background: #444649;
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.header-bar:hover {
  width: 100px;
}

.label {
  font-size: 14pt;
  font-weight: 500;
}

nav {
  bottom: 0;
  left: 0;
  position: absolute;
  height: 50px;
  width: 100%;
  background: #1b242f;
  border-bottom: 3px solid #04c2c9;
  text-align: left;
  z-index: 99;
}
nav.fixed {
  top: 0;
  left: 0;
  position: fixed;
  animation: popDown 0.5s;
}
nav .link-wrap {
  max-width: 1200px;
  width: 100%;
  position: absolute;
  top: 53px;
  background: #333;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-out;
  text-align: center;
}
nav .link-wrap.visible {
  height: 165px;
}
nav .link-wrap div {
  margin: 15px 20px;
  cursor: pointer;
  transition: color 0.5s;
  text-transform: uppercase;
}
nav .link-wrap div:hover {
  color: #e31b6d;
}
nav .mdi-menu {
  position: absolute;
  right: 5vw;
  margin: auto 0;
  font-size: 30pt;
  line-height: 36pt;
  top: 0;
}
nav .active {
  color: #e31b6d;
}

.carousel-wrap {
  position: relative;
  height: 250px;
  margin: 0 auto;
}

.window {
  overflow: hidden;
  position: relative;
  background: #222;
}

#carousel {
  width: 10000px;
  position: relative;
  top: 0;
}

.slide {
  height: 250px;
  cursor: pointer;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mdi-chevron-left,
.mdi-chevron-right {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14pt !important;
  font-weight: bold;
  color: #fff;
}

.mdi-chevron-left {
  left: 0;
}

.mdi-chevron-right {
  right: 0;
}

.transition {
  transition: 0.7s;
}

.modal-wrap {
  height: 100vh;
  width: 100vw;
  position: fixed;
  pointer-events: none;
  z-index: 100;
}
.modal-wrap .mask {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-wrap .modal {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.3s;
  transform: scale(0.8);
  opacity: 0;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
  color: #333;
  height: 100vh;
}
.modal-wrap .close {
  bottom: 25px;
  right: 10px;
  color: #bbb;
  font-size: 20pt;
  position: absolute;
  font-weight: 800;
  cursor: pointer;
}
.modal-wrap .info-box {
  border-top: 3px solid #1b242f;
  padding: 15px 10px 85px 10px;
  box-sizing: border-box;
  color: #444;
}
.modal-wrap .title {
  font-size: 16pt;
  line-height: 20pt;
  font-family: "Raleway-bold";
}
.modal-wrap .tag {
  display: block;
  font-weight: 300;
  color: #c0c0c0;
  font-family: "Raleway-bold";
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  font-size: 8pt;
}
.modal-wrap .detail {
  font-size: 9pt;
  line-height: 14pt;
  margin-top: 13px;
}
.modal-wrap .mdi-open-in-new {
  position: relative;
  left: -10px;
  font-size: 11pt;
}
.modal-wrap .button {
  padding: 11px 30px;
  font-size: 10pt;
  transition: all 0.5s;
  cursor: pointer;
  background: #e31b6d;
  color: #fff;
  font-weight: 600;
  border: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  bottom: 20px;
  left: 10px;
}
.modal-wrap .button.visible {
  pointer-events: initial;
  visibility: visible;
}
.modal-wrap .button:hover {
  color: #e31b6d;
  background: #fff;
}
.modal-wrap .carousel {
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.25);
}
.modal-wrap.visible {
  pointer-events: initial;
}
.modal-wrap.visible .modal {
  transform: scale(1);
  opacity: 1;
}
.modal-wrap.visible .mask {
  opacity: 1;
}

section {
  padding: 70px 0 70px 0;
  color: #616161;
  line-height: 11pt;
  position: relative;
}
section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}
section:nth-of-type(1) {
  padding: 0 10px;
  color: #fff;
  height: calc(100vh + 53px);
}
section:nth-of-type(1) .highlight {
  font-family: "Raleway-semibold";
}
section:nth-of-type(1) .text {
  margin: 0 0 20px 0;
  font-size: 16pt;
  line-height: 20pt;
  z-index: 1;
  pointer-events: none;
}
section:nth-of-type(1) .hexagon {
  transition: transform 0.9s ease-in-out;
}
section:nth-of-type(1) .hexagon:hover {
  transform: rotate(540deg);
}
section:nth-of-type(1) .button {
  padding: 12px 40px 12px 15px;
  position: relative;
  margin-bottom: 53px;
}
section:nth-of-type(1) .button .mdi {
  transition: transform 0.3s;
  position: absolute;
  right: 15px;
  top: 11px;
}
section:nth-of-type(1) .button:hover .mdi {
  transform: rotate(90deg);
}
section:nth-of-type(2) .label-wrap .label {
  margin: 20px 0 10px 0;
}
section:nth-of-type(2) .bullet-wrap {
  justify-content: flex-start;
  padding: 0 7px;
  height: 200px;
}
section:nth-of-type(2) .highlight {
  color: #009ada;
}
section:nth-of-type(2) .up-arrow {
  margin: 15px 0;
  height: 30px;
}
section:nth-of-type(2) .skills-wrapper {
  align-items: flex-start;
  width: 100%;
}
section:nth-of-type(2) .skills-wrapper .me {
  height: 200px;
}
section:nth-of-type(2) .skills-wrapper .label {
  margin: 20px 0 15px 0;
}
section:nth-of-type(2) .hexagon i {
  position: absolute;
  top: 20px;
  font-size: 34pt;
  color: #fff;
  left: 0;
  right: 0;
  z-index: 1;
}
section:nth-of-type(2) .bars-wrap {
  margin: 50px auto 0 auto;
  width: calc(100% - 15px);
  max-width: 90%;
}
section:nth-of-type(2) .bars-wrap:not(.animated) .fill {
  width: 0 !important;
}
section:nth-of-type(2) .bar {
  color: #666;
  height: 22px;
  position: relative;
  background-color: #eee;
  margin: 0 0 12px 0;
  align-items: flex-end;
  font-size: 7pt;
}
section:nth-of-type(2) .bar:nth-child(1) .fill {
  transition: 1.1s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(2) .fill {
  transition: 1.2s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(3) .fill {
  transition: 1.3s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(4) .fill {
  transition: 1.4s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(5) .fill {
  transition: 1.5s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(6) .fill {
  transition: 1.6s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(7) .fill {
  transition: 1.7s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(8) .fill {
  transition: 1.8s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(9) .fill {
  transition: 1.9s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar:nth-child(10) .fill {
  transition: 2s 0.2s width ease-in-out;
}
section:nth-of-type(2) .bar span {
  display: none;
}
section:nth-of-type(2) .bar.fill {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #00a1a7;
  padding: 0;
  opacity: 1;
}
section:nth-of-type(2) .bar .tag {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #04c2c9;
  color: #fff;
  height: 100%;
  width: 110px;
  width: 70px;
}
section:nth-of-type(2) .bar.secondary {
  background-color: #c51675;
}
section:nth-of-type(2) .bar.secondary .tag {
  background-color: #e31b6d;
}
section:nth-of-type(2) .bar span {
  z-index: 1;
  padding: 0 15px 0 0;
}
section:nth-of-type(3) {
  background: #f5f5f5;
}
section:nth-of-type(3) .container {
  padding: 0;
}
section:nth-of-type(3) .filter-wrap {
  position: relative;
}
section:nth-of-type(3) .filter {
  font-size: 6pt;
  font-weight: 600;
  padding: 0 20px;
  cursor: pointer;
  transition: background-color 0.5s;
}
section:nth-of-type(3) .float-bar {
  top: 0;
  bottom: 0;
  left: 30px;
  position: absolute;
  margin: auto 0;
  position: absolute;
  overflow: hidden;
  height: 25px;
  border-radius: 1px;
  background: #e31b6d;
  transition: all 0.5s ease-in-out;
}
section:nth-of-type(3) .float-bar .row {
  top: 0;
  bottom: 0;
  left: -30px;
  position: absolute;
  margin: auto 0;
  transition: left 0.5s ease-in-out;
}
section:nth-of-type(3) .float-bar .row .filter {
  color: #fff;
}
section:nth-of-type(3) .text {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
section:nth-of-type(3) #gallery {
  margin: 20px 0;
}
section:nth-of-type(3) #gallery .text,
section:nth-of-type(3) #gallery .button {
  z-index: 2;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  color: #1b242f;
}
section:nth-of-type(3) #gallery .text .bold,
section:nth-of-type(3) #gallery .button .bold {
  font-size: 16pt;
}
section:nth-of-type(3) #gallery .button {
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  border: 2px solid #e31b6d;
  width: 170px;
  margin: 0 auto;
  font-size: 13pt;
  padding: 7px 0;
}
section:nth-of-type(3) #gallery .mix {
  display: none;
  position: relative;
}
section:nth-of-type(3) #gallery .mix .waypoint {
  background: #fff;
}
section:nth-of-type(3) #gallery .mix .button:hover {
  background: #e31b6d;
  color: #fff;
}
section:nth-of-type(3) #gallery .mix:nth-child(1) .card {
  background: url("../img/thumb-1.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(2) .card {
  background: url("../img/thumb-2.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(3) .card {
  background: url("../img/thumb-3.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(4) .card {
  background: url("../img/thumb-4.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(5) .card {
  background: url("../img/thumb-5.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(6) .card {
  background: url("../img/thumb-6.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(7) .card {
  background: url("../img/thumb-7.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(8) .card {
  background: url("../img/thumb-8.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(9) .card {
  background: url("../img/thumb-9.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(10) .card {
  background: url("../img/thumb-10.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(11) .card {
  background: url("../img/thumb-11.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix:nth-child(12) .card {
  background: url("../img/thumb-12.jpg") center center/cover;
}
section:nth-of-type(3) #gallery .mix .card {
  height: 240px;
  max-width: 100%;
  width: calc(50vw - 8px);
  cursor: pointer;
  transition: opacity 0.5s;
}
section:nth-of-type(3) #gallery .mix:hover .card {
  opacity: 0;
}
section:nth-of-type(3) #gallery .mix:hover .text {
  opacity: 1;
  top: 24%;
}
section:nth-of-type(3) #gallery .mix:hover .button {
  opacity: 1;
  bottom: 24%;
}
section .flex-50-gt-sm {
  display: block;
}
section:nth-of-type(4) {
  padding: 130px 0 100px 0;
  text-align: left;
}
section:nth-of-type(4) .flex.wrap {
  align-items: flex-start;
}
section:nth-of-type(4) .gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
section:nth-of-type(4) .blog-wrap {
  margin: 0 0 50px 0;
  padding: 0 2px;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
section:nth-of-type(4) .blog-wrap #thumb-1 {
  background: url("../img/blog-1.jpg") center center/cover;
}
section:nth-of-type(4) .blog-wrap #thumb-2 {
  background: url("../img/blog-2.jpg") center center/cover;
}
section:nth-of-type(4) .blog-wrap #thumb-3 {
  background: url("../img/blog-3.jpg") center center/cover;
}
section:nth-of-type(4) .blog-wrap #thumb-4 {
  background: url("../img/blog-4.jpg") center center/cover;
}
section:nth-of-type(4) .blog-wrap.fade {
  opacity: 0.4;
}
section:nth-of-type(4) .blog-wrap.hover .label {
  color: #04c2c9;
}
section:nth-of-type(4) .blog-wrap.hover a {
  opacity: 1;
}
section:nth-of-type(4) .label {
  line-height: 14pt;
  font-size: 12pt;
  transition: color 0.3s ease-in-out;
}
section:nth-of-type(4) .thumb {
  height: 150px;
  margin: 0 0 15px 0;
}
section:nth-of-type(4) .date {
  font-size: 7pt;
  font-family: "Open sans";
  margin: 5px 0 0 0;
}
section:nth-of-type(4) .bar {
  height: 3px;
  width: 25%;
  background: #04c2c9;
  margin: 10px 0px;
}
section:nth-of-type(4) .text {
  font-size: 9pt;
  line-height: 13pt;
  max-height: 85px;
}
section:nth-of-type(5) {
  background: #252934;
  color: #fff;
  padding-top: 175px;
}
section:nth-of-type(5) .header {
  color: #fff;
}
section:nth-of-type(5) .header-bar {
  margin: 25px 0 40px 0;
  background: #fff;
  width: 110px;
}
section:nth-of-type(5) .highlight {
  font-weight: 600;
  color: #04c2c9;
}
section:nth-of-type(5) svg {
  position: absolute;
  top: 0;
  left: 0;
}
section:nth-of-type(5) form {
  margin: 40px auto 0 auto;
  min-width: 95%;
}
section:nth-of-type(5) input[type="text"],
section:nth-of-type(5) input[type="email"],
section:nth-of-type(5) textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 0;
  padding: 10px 15px;
  background: #1e242c;
  font-size: 12pt;
  margin-bottom: 3px;
  color: #fff;
}
section:nth-of-type(5) textarea {
  min-height: 150px;
  margin-bottom: 5px;
}
section:nth-of-type(5) .button {
  float: right;
  margin: 5px 0 0 0;
  font-size: 12pt;
  padding: 10px 30px;
  color: #fff;
  background: transparent;
  outline: 0;
}
section:nth-of-type(5) .button:hover {
  background: #04c2c9;
}
section:nth-of-type(5) #success {
  height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: height 0.25s;
}
section:nth-of-type(5) #success.expand {
  height: 36px;
}
section:nth-of-type(5) #success div {
  background: #04c986;
  color: #157051;
  font-size: 10pt;
  font-weight: 600;
  padding: 5px 0;
  border: 1px solid #157c59;
}
section:nth-of-type(5) #close {
  position: absolute;
  padding: 5px 15px;
  font-size: 12pt;
  font-weight: 600;
  right: 0;
  cursor: pointer;
}

footer {
  background: #1b242f;
  padding: 70px 0 50px 0;
  position: relative;
}
footer .mdi-chevron-double-up {
  position: absolute;
  top: -25px;
  background: #e31b6d;
  font-size: 30pt;
  width: 47px;
  height: 50px;
  line-height: 40pt;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.5s;
}
footer .mdi-chevron-double-up:hover {
  background: #fb1f79;
}
footer .icon-wrap .icon {
  overflow: hidden;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  width: 55px;
  height: 55px;
  position: relative;
  text-align: center;
  margin: 0 15px;
  background: #262f38;
  font-size: 18pt;
}
footer .icon-wrap .mdi {
  text-align: center;
  color: #fff;
}
footer .icon-wrap .mdi.mdi-codepen {
  font-size: 20pt;
}
footer .icon-wrap .icon:hover {
  background: #04c2c9;
  box-shadow: 0 0 0 3px rgba(4, 94, 201, 0.1);
  transform: scale(0.9);
}
footer .icon-wrap .icon:hover .mdi {
  color: #fff;
}
footer .icon-wrap .icon:hover .mdi {
  -webkit-animation: toBottomFromTop 0.3s forwards;
  -moz-animation: toBottomFromTop 0.3s forwards;
  animation: toBottomFromTop 0.3s forwards;
}
footer .footnote {
  font-size: 10pt;
  color: #8f9aa7;
  margin-top: 35px;
  opacity: 0.6;
}
footer .footnote .highlight {
  font-family: "Open Sans";
  color: #e31b6d;
}

@media screen and (max-width: 400px) {
  section:nth-of-type(3) #gallery .mix .card {
    width: 100vw;
  }
  .highlight-home {
    color: #e31b6d;
    cursor: pointer;
    font-size: 3rem;
    margin: 1rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 600px) {
  body {
    font-size: 12pt;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    font-size: 30pt;
  }

  .header-bar {
    margin: 25px 0 100px 0;
  }

  .label {
    font-size: 18pt;
    margin: 1rem;
  }

  .hex-wrap {
    height: 100px;
    width: 100px;
  }

  .slide,
  .carousel-wrap {
    height: 450px;
  }

  .mdi-chevron-left,
  .mdi-chevron-right {
    font-size: 25pt !important;
  }

  .modal-wrap .modal {
    top: -6vh;
    height: initial;
  }
  .modal-wrap .info-box {
    padding: 35px 60px 90px 25px;
  }
  .modal-wrap .title {
    font-size: 22pt;
    line-height: 30pt;
  }
  .modal-wrap .tag {
    font-size: 11pt;
  }
  .modal-wrap .detail {
    font-size: 11pt;
    line-height: 18pt;
    margin-top: 15px;
  }
  .modal-wrap .close {
    right: 25px;
  }
  .modal-wrap .button {
    left: 25px;
  }

  nav .link-wrap {
    position: initial;
    background: none;
    overflow: visible;
    height: initial;
    text-align: left;
  }
  nav .link-wrap .visible {
    height: initial;
  }
  nav .link-wrap div {
    margin: 0 20px;
    display: inline;
  }
  nav .mdi-menu {
    display: none;
  }

  section {
    line-height: 18pt;
    padding: 100px 0 130px 0;
  }
  section .container {
    padding: 0 10px;
  }
  section:nth-of-type(1) .text {
    font-size: 32pt;
    line-height: 36pt;
  }
  section:nth-of-type(1) .button {
    padding: 12px 50px 12px 20px;
  }
  section:nth-of-type(1) .button .mdi {
    top: 16px;
  }
  section:nth-of-type(2) .label-wrap .label {
    margin: 15px 0 5px 0;
  }
  section:nth-of-type(2) .label-wrap > div {
    padding: 0 15px;
  }
  section:nth-of-type(2) .bullet-wrap {
    height: 230px;
  }
  section:nth-of-type(2) .skills-wrapper > .flex:first-child {
    padding: 0 50px 0 50px;
  }
  section:nth-of-type(2) .skills-wrapper .me {
    height: 250px;
  }
  section:nth-of-type(2) .bar {
    height: 28px;
    margin: 0 0 15px 0;
    font-size: 11pt;
  }
  section:nth-of-type(2) .bar span {
    display: initial;
  }
  section:nth-of-type(2) .bar .tag {
    width: 110px;
  }
  section:nth-of-type(2) .hexagon i {
    font-size: 40pt;
  }
  section:nth-of-type(3) .filter {
    font-size: 11pt;
    margin: 0 15px;
    padding: 0 30px;
  }
  section:nth-of-type(3) .float-bar {
    height: 30px;
  }
  section:nth-of-type(3) #gallery .mix .card {
    height: 300px;
  }
  section:nth-of-type(4) {
    padding: 130px 0 180px 0;
  }
  section:nth-of-type(4) .label {
    line-height: 22pt;
    font-size: 16pt;
  }
  section:nth-of-type(4) .date {
    font-size: 8.5pt;
  }
  section:nth-of-type(4) .bar {
    margin: 15px 0px;
  }
  section:nth-of-type(4) .text {
    font-size: 11pt;
    line-height: 15pt;
  }
  section:nth-of-type(4) .blog-wrap {
    width: 400px;
  }
  section:nth-of-type(4) .thumb {
    height: 200px;
  }
  section:nth-of-type(5) form {
    min-width: 500px;
  }
}
@media screen and (min-width: 960px) {
  .waypoint {
    opacity: 0;
  }

  .animated.waypoint#gallery {
    opacity: 1;
  }
  .animated.waypoint#gallery .mix:nth-child(1) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.1s ease both;
  }
  .animated.waypoint#gallery .mix:nth-child(2) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.2s ease both;
  }
  .animated.waypoint#gallery .mix:nth-child(3) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.3s ease both;
  }
  .animated.waypoint#gallery .mix:nth-child(4) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.4s ease both;
  }
  .animated.waypoint#gallery .mix:nth-child(5) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.5s ease both;
  }
  .animated.waypoint#gallery .mix:nth-child(6) > div {
    opacity: 0;
    animation: slideUp 0.75s 0.6s ease both;
  }

  .animated.slide-up {
    animation: slideUp 0.75s ease both;
  }
  .animated.slide-down {
    animation: slideDown 0.75s ease both;
  }
  .animated.slide-in-left {
    animation: slideInLeft 0.75s ease both;
  }
  .animated.slide-in-right {
    animation: slideInRight 0.75s ease both;
  }
  .animated.flip-in-x {
    animation: flipInX 0.75s ease both;
  }
  .animated.fade-in {
    animation: fadeIn 0.75s ease both;
  }
  .animated.pop-in {
    animation: popIn 1s both;
  }

  .canvas {
    background: #252934;
  }

  .button {
    font-size: 16pt;
  }

  .flex.row-gt-sm {
    flex-direction: row;
  }

  .flex-50-gt-sm {
    -webkit-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box;
  }

  section:nth-of-type(2) .bars-wrap {
    margin: 0 0 0 0;
  }
  section:nth-of-type(2) .skills-wrapper {
    margin: 50px 0 0 0;
  }
  section:nth-of-type(2) .skills-wrapper .me {
    margin: 0;
  }
  section:nth-of-type(2) .bar {
    max-width: 90%;
  }
  section:nth-of-type(2) .bullet-wrap {
    margin: 0;
    padding: 0 10px;
    height: intial;
  }
  section:nth-of-type(3) #gallery .mix .card {
    width: 390px;
  }
  section:nth-of-type(3) .filter {
    font-size: 13pt;
    padding: 0 40px;
    margin: 0 25px;
  }
  section:nth-of-type(4) .blog-wrap {
    width: 400px;
    margin: 0 0 0 20px;
  }
}
@media screen and (min-width: 1280px) {
  section:nth-of-type(4) .blog-wrap {
    width: 270px;
    margin: 0 0 0 20px;
  }

  .label {
    margin: 1rem;
  }
}

/* Add these styles to your style.css file */

.experience-wrap {
  padding: 40px 20px;
}

.experience-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 2px solid #04c2c9;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-header {
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.position {
  margin-right: 10px;
}

.company {
  margin-right: 10px;
}

.duration {
  color: #777;
  font-size: 0.9em;
  margin-left: auto;
}

.experience-content {
  color: #777;
  line-height: 1.5;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .experience-header {
    flex-direction: column;
  }

  .position,
  .company {
    margin-bottom: 5px;
  }

  .duration {
    margin-left: 0;
    margin-bottom: 5px;
  }
}

/* Add a hover effect for experience items */
.experience-item:hover {
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Add a subtle indicator for each experience item */
.experience-item:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e31b6d;
  border: 2px solid #fff;
}

.image-container {
  position: relative;
  width: 300px; /* Adjust to your preferred size */
  height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px; /* For rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

/* For hexagonal shape - optional */
.image-frame.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* For circular shape - optional */
.image-frame.circle {
  border-radius: 50%;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will ensure the image covers the area without distortion */
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.image-container:hover .image-frame {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-container:hover .profile-image {
  transform: scale(1.05);
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Optional animation on page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-container {
  animation: fadeIn 0.8s ease-out forwards;
}

/* ================================================= */

/* Experience Section Styles - Creative Timeline */
.section-experience {
  padding: 4rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.section-experience:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 240, 245, 0.4) 0%,
    rgba(245, 245, 250, 0.2) 100%
  );
  z-index: 1;
}

.section-experience .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  letter-spacing: 2px;
}

.section-experience .header-bar {
  width: 70px;
  height: 4px;
  background: #444649;
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-header:hover .header-bar {
  width: 100px;
}

/* Tabs Styles */
.tabs-container {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #5e60ce, #64dfdf);
  transition: width 0.3s ease;
}

.tab-button:hover {
  color: #333;
}

.tab-button.active {
  color: #333;
}

.tab-button.active:after {
  width: 100%;
}

.tab-content {
  display: none;
  animation: fadeEffect 0.5s;
}

.tab-content.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Creative Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Remove the straight line and replace with decorative elements */
.timeline:before {
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  padding-left: 90px;
  max-width: 100%;
}

/* Create connecting arcs between timeline items */
.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 9px;
  left: 51px;
  height: calc(100% + 2.5rem);
  width: 30px;
  border-left: 2px dashed #5e60ce;
  border-bottom: 2px dashed #64dfdf;
  border-bottom-left-radius: 20px;
  z-index: 1;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 42px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #5e60ce;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(94, 96, 206, 0.2);
  transition: all 0.3s ease;
}

/* Pulsating effect for timeline markers */
.timeline-marker:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(94, 96, 206, 0.2);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.2);
  background: #5e60ce;
}

.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
}

/* Add decorative connector from marker to content */
.timeline-content:before {
  content: "";
  position: absolute;
  top: 9px;
  left: -25px;
  width: 25px;
  height: 2px;
  background: linear-gradient(to right, #5e60ce, #64dfdf);
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.timeline-header {
  margin-bottom: 1rem;
}

.timeline-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
}

.company-info,
.institution-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.company-link,
.institution-link {
  display: flex;
  align-items: center;
  color: #5e60ce;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-link:hover,
.institution-link:hover {
  color: #64dfdf;
}

.company-link i,
.institution-link i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.company-name,
.institution-name {
  font-weight: 600;
}

.duration {
  color: #777;
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.duration:before {
  content: "\f017"; /* Font Awesome clock icon */
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #5e60ce;
}

.timeline-description p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.achievement-list {
  padding-left: 1.2rem;
}

.achievement-list li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: none;
}

.achievement-list li:before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64dfdf;
}

/* Global box-sizing reset to prevent sizing issues */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Responsive Styles */
@media (min-width: 768px) {
  /* Optional: Create a more elaborate curved line for larger screens */
  .timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 51px;
    height: 100%;
    width: 4px;
    background: repeating-linear-gradient(
      to bottom,
      #5e60ce 0px,
      #5e60ce 10px,
      #64dfdf 10px,
      #64dfdf 20px
    );
    border-radius: 2px;
    opacity: 0.15;
    z-index: 0;
  }

  .timeline-item {
    padding-left: 90px;
    margin-left: 0;
    text-align: left;
    max-width: 90%;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    margin-left: 0;
    padding-left: 90px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 42px;
    margin-left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-marker {
    left: 42px;
    right: auto;
  }

  .timeline-item:nth-child(odd) .achievement-list {
    padding-left: 1.2rem;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .achievement-list li {
    text-align: left;
  }

  .timeline-item:nth-child(odd) .achievement-list li:before {
    left: -1.2rem;
    right: auto;
  }

  .timeline-item:nth-child(odd) .company-info,
  .timeline-item:nth-child(odd) .institution-info {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .section-header .title {
    font-size: 2rem;
  }

  .tab-button {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  /* Container fixes */
  .section-experience .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    overflow-x: hidden;
  }

  .tabs-container {
    width: 100%;
    max-width: 100%;
  }

  /* Timeline adjustments */
  .timeline {
    width: 100%;
    max-width: 100%;
  }

  .timeline-item {
    padding-left: 45px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .timeline-marker {
    left: 22px;
  }

  .timeline-content {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem;
    box-sizing: border-box;
  }

  .timeline-content:before {
    width: 15px;
    left: -15px;
  }

  .timeline-item:not(:last-child):after {
    left: 31px;
    width: 20px;
  }

  .timeline-header h3 {
    font-size: 1.2rem;
    word-break: break-word;
  }

  /* Disable animations for better performance */
  .timeline-marker:before {
    animation: none;
  }

  .waypoint {
    opacity: 1;
  }

  /* List styling */
  .achievement-list {
    padding-left: 1rem;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-experience .container {
    padding: 0 0.8rem;
  }

  .timeline-content {
    padding: 1rem;
  }

  .tabs-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .tab-button {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 0.7rem 1rem;
  }

  .timeline-item {
    padding-left: 40px;
  }

  .timeline-marker {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .timeline-content:before {
    width: 10px;
    left: -10px;
  }

  .timeline-item:not(:last-child):after {
    left: 21px;
    width: 15px;
  }

  .company-info,
  .institution-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .duration {
    margin-top: 0.2rem;
  }
  .timeline-content {
    width: 95%;
  }
}

@media (max-width: 375px) {
  .section-experience .container {
    padding: 0 0.8rem;
    margin-right: 2rem;
  }

  .timeline-item {
    padding-left: 35px;
  }

  .timeline-marker {
    left: 8px;
  }

  .timeline-content {
    width: 95%;
  }

  .timeline-content:before {
    width: 8px;
    left: -8px;
  }

  .timeline-item:not(:last-child):after {
    left: 17px;
    width: 12px;
  }

  .timeline-header h3 {
    font-size: 1.1rem;
  }

  .section-header .title {
    font-size: 1.8rem;
  }

  /* Force content to fit */
  .company-name,
  .institution-name {
    font-size: 0.9rem;
    max-width: 100%;
    word-break: break-word;
  }

  .achievement-list li {
    word-break: break-word;
  }
}
/* Animation Classes */
@keyframes slide-in-right {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoom-in {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.waypoint {
  opacity: 0;
}

.waypoint.animated {
  opacity: 1;
}

.slide-in-right {
  animation: slide-in-right 0.5s forwards;
}

.fade-in {
  animation: fade-in 0.5s forwards;
}

.zoom-in {
  animation: zoom-in 0.5s forwards;
}

/* ====================================================== */

/* Project Section Styles */
.projects-section {
  padding: 5rem 0;
  background-color: #1b242f;
  color: #fff;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.projects-section .header-bar {
  width: 70px;
  height: 4px;
  background: #fff;
  margin: 1.5rem auto;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-header:hover .header-bar {
  width: 100px;
}

/* Highlighted Projects */
.highlighted-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.highlighted-project {
  display: flex;
  margin-bottom: 5rem;
  background-color: #252934;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlighted-project.animated {
  opacity: 1;
  transform: translateY(0);
}

.project-image-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-container img.active-slide {
  opacity: 1;
  position: relative;
}

.slider-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.slider-dots {
  display: flex;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #04c2c9;
}

.project-details {
  flex: 1;
  padding: 2rem;
}

.project-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.project-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #04c2c9;
}

.project-description {
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-tech span {
  position: relative;
  color: #04c2c9;
  background-color: rgba(4, 194, 201, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.project-tech span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #04c2c9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.project-tech span:hover {
  color: #fff;
}

.project-tech span:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Specific color variations for different projects */
/* Apple Iphone Project */
.highlighted-project:nth-child(1) .project-tech span {
  color: #04c2c9;
  background-color: rgba(4, 194, 201, 0.1);
}

.highlighted-project:nth-child(1) .project-tech span::after {
  background-color: #04c2c9;
}

/* Emelteciot Project
.highlighted-project:nth-child(2) .project-tech span {
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
}

.highlighted-project:nth-child(2) .project-tech span::after {
  background-color: #ff6b6b;
} */

/* Vas Aviation Project */
.highlighted-project:nth-child(3) .project-tech span {
  color: #4ecdc4;
  background-color: rgba(78, 205, 196, 0.1);
}

.highlighted-project:nth-child(3) .project-tech span::after {
  background-color: #4ecdc4;
}

/* More Projects Section */
.more-projects-grid .project-card-tech span {
  color: #04c2c9;
  background-color: rgba(4, 194, 201, 0.1);
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.more-projects-grid .project-card-tech span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #04c2c9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.more-projects-grid .project-card-tech span:hover {
  color: #fff;
}

.more-projects-grid .project-card-tech span:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.tech-tag {
  background-color: #1b242f;
  color: #04c2c9;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.project-link.github {
  background-color: #333;
  color: white;
}

.project-link.demo {
  background-color: #04c2c9;
  color: white;
}

.project-link.landing {
  background-color: #5e60ce;
  color: white;
}

.project-link.doc {
  background-color: #e31b6d;
  color: white;
}

.project-link i {
  margin-right: 0.5rem;
}
.project-details {
  background-color: #1b242f;
  box-shadow: 0;
}

.project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* More Projects Section */
.more-projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}

.section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  padding-bottom: 1rem;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #04c2c9;
}

.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: #252934;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  animation-delay: calc(var(--index) * 0.1s);
  transition: box-shadow 0.3s ease, transform 0.3s ease,
    background-color 0.3s ease;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background-color: #2c3342;
}

.project-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #04c2c9;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.project-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Ensure links are clickable */
.project-card-links {
  position: relative;
  z-index: 10;
}

.card-link {
  position: relative;
  z-index: 11;
}

.project-card-icon {
  font-size: 2rem;
  color: #04c2c9;
  margin-bottom: 1rem;
}

.project-card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.project-card-description {
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.project-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-card-tech span {
  font-size: 0.7rem;
  color: #04c2c9;
  background-color: rgba(4, 194, 201, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.project-card-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.card-link {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.card-link:hover {
  color: #04c2c9;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .highlighted-project {
    flex-direction: column;
  }

  .project-image-slider,
  .project-details {
    width: 100%;
  }

  .project-image-slider {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .more-projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .project-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .more-projects-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }
}

.project-image-slider {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #1b242f;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-container img.active-slide {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #04c2c9;
}
.slider-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down; /* Changed to contain to show full image */
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 768px) {
  .highlighted-project {
    flex-direction: row;
    align-items: stretch;
    background-color: #1b242f;
  }

  .project-image-slider {
    width: 50%;
    aspect-ratio: 4 / 3;
  }

  .project-details {
    width: 50%;
    justify-content: center;
  }
}

@media screen and (min-width: 1024px) {
  .highlighted-project {
    max-width: 1200px;
    margin: 0 auto;
  }

  .project-image-slider {
    aspect-ratio: 16 / 9;
  }
}
.button-container {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

@media screen and (max-width: 550px) {
  /* .highlighted-project {
    flex-direction: row;
    align-items: stretch;
  }

  .project-image-slider {
    width: 60%;
    aspect-ratio: 4 / 3;
  }

  .project-details {
    width: 40%;
    justify-content: center;
  } */
  .timeline-content {
    width: 95%;
  }
  #about .header-bar {
    margin: 1rem;
  }
}

/* Additional responsiveness for smaller screens */
@media screen and (min-width: 540px) {
  .button-container {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 0;
  }
  .project-image-slider {
    aspect-ratio: 1/1; /* Square aspect ratio for very small screens */
  }

  .highlighted-project {
    background-color: #1b242f;
  }

  .project-link {
    padding: 10px;
  }
  .slider-controls {
    bottom: 5px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 480px) {
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    padding: 0;
  }
  section:nth-of-type(1) .button {
    padding: 12px 40px 12px 15px;
    position: relative;
    margin-bottom: 10px;
  }
  .project-image-slider {
    aspect-ratio: 1/1; /* Square aspect ratio for very small screens */
  }

  .highlighted-project {
    background-color: #1b242f;
  }

  .project-link {
    padding: 10px;
  }
  .slider-controls {
    bottom: 5px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 360px) {
  .highlight-home {
    font-size: 2.5rem;
  }
}

/* Disable state for submit button */
#submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Optional: Add some visual feedback */
#submit:hover:disabled {
  background-color: #cccccc;
}
