@import url('mobile-styles.css');

@import url('https://fonts.googleapis.com/css2?family=Londrina+Outline&family=Ubuntu:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: auto !important;
  overflow-x: hidden !important;
  font-family: 'Ubuntu', sans-serif;
  color: #10193d;
}

body {
  overflow-x: hidden;
  border: 2px solid #10193d;
  border-radius: 0;
  margin-right: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.hr {
  display: none;
}

#hidden-header {
  position: fixed;
  top: -90px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #f8f8f8;
  color: #10193d;
  text-align: center;
  transition: top 1s ease-in-out;
  border: 2px solid #10193d;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  z-index: 100000;
}

#hidden-header.visible {
  top: 0;
  transition: top 1s ease-in-out;
}

.header-bottom {
  top: 100px;
  height: 2px;
}

#hidden-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

#hidden-header nav ul li {
  margin-right: 10px;
}

#hidden-header nav ul li a {
  text-decoration: none;
  color: #10193d;
  font-family: Roobert, sans-serif;
  font-size: 24px;
  margin-right: 35px;
}

#hidden-header nav ul li a:hover {
  color: #71768a;
}

#hidden-header nav ul li a.active {
  font-weight: 600;
}

.nav-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

.nav-list {
  display: none;
}

.hamburger {
  display: none;
  padding: 10px;
  position: fixed;
  z-index: 10000;
  width: 100%;
}

.burger {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: px #10193d solid;
  border-radius: 5px;
  background-color: #e4c1f9;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
}

#close-icon {
  padding-left: 19px;
}

.hamburger.active {
  display: block;
  background-color: #f8f8f8;
  text-align: center;
  z-index: 10000;
}

.fa-burger,
.fa-xmark {
  margin-right: 20px;
}

.fa-bars {
  font-size: 40px;
}

hr {
  height: 3px;
  background-color: #10193d;
}

#toggleButton {
  transition: all 2s;
  cursor: pointer;
}

.social-network {
  justify-content: space-between;
}

#facebook-icon {
  font-size: 2em;
  color: #10193d;
  transition: all 2s;
  cursor: pointer;
  padding: 10px;
  font-size: 2em;
  border-radius: 2px;
}

#facebook-icon.animate {
  transform: rotate(360deg) scale(1.2);
  color: #1e90ff;
}

#twitter-icon {
  font-size: 2em;
  color: #10193d;
  transition: all 2s;
  cursor: pointer;
  padding: 10px;
}

#twitter-icon.animate {
  transform: rotate(360deg) scale(1.2);
  color: #1e90ff;
}

#linkedin-icon {
  font-size: 2em;
  color: #10193d;
  transition: all 2s;
  cursor: pointer;
  padding: 10px;
}

#linkedin-icon.animate {
  transform: rotate(360deg) scale(1.2);
  color: #1e90ff;
}

.box {
  width: 100%;
  height: 100vh;
  background-color: #e4c1f9;
  margin: 0 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#delayedText1 {
  font-size: 150px;
}

#delayedText {
  font-size: 150px;
}

.delay {
  opacity: 0;
  transform: scale(0);
  font-size: 0px;
  transition: opacity 2s, transform 2s, font-size 2s;
  position: absolute;
  z-index: 1;
  text-align: left;
  margin-bottom: 150px;
}

.delay1 {
  opacity: 0;
  transform: scale(0);
  font-size: 0px;
  transition: opacity 2s, transform 2s, font-size 2s;
  position: absolute;
  z-index: 1;
}

.delay1 {
  display: flex;
  justify-content: start;
  align-items: baseline;
  height: 1.2em;
  text-align: left;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(300px);
  }
  20% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes dropDown {
  0% {
    transform: translateY(-1000px);
  }
  100% {
    transform: translateY(0);
  }
}

.dropDown {
  animation: dropDown 1s ease-out forwards;
  display: inline-block;
}

.copyright-link {
  font-size: 30px;
  margin-top: 85vh;
  color: #10193d;
  display: block;
  margin-left: -20vh;
  justify-content: start;
}

.marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  background-color: #f8f8f8;
}

.track {
  display: inline-block;
  padding-left: -100%;
  animation: marquee 20s linear infinite;
}

.track .font1 {
  padding: 0 2rem;
  font-size: 100px;
  color: #10193d;
}

.track .font2 {
  padding: 0 2rem;
  font-size: 100px;
  color: #10193d;
}

@keyframes marquee {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(-70%);
  }
}

#section-about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 100px 60px;
  align-items: center;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #faf3ff 100%);
  overflow: hidden;
}

/* Decorative background shapes */
.about-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-deco-1 {
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(228, 193, 249, 0.4) 0%, transparent 70%);
  animation: aboutFloat 10s ease-in-out infinite;
}

.about-deco-2 {
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(155, 111, 196, 0.3) 0%, transparent 70%);
  animation: aboutFloat 12s ease-in-out infinite reverse;
}

.about-deco-3 {
  top: 50%;
  left: 45%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 25, 61, 0.05) 0%, transparent 70%);
  animation: aboutFloat 15s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Circle / Photo section */
.circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  gap: 40px;
}

.circle:hover {
  border: none;
}

.circle-orbit {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(16, 25, 61, 0.2);
  animation: rotateOrbit 25s linear infinite;
}

.circle-orbit::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4c1f9 0%, #b88fd9 100%);
  z-index: 0;
  box-shadow: 0 20px 60px rgba(155, 111, 196, 0.4);
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circle-img-wrap {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
  border: 6px solid #ffffff;
  transition: transform 0.5s ease;
}

.circle-img-wrap:hover {
  transform: scale(1.05) rotate(-3deg);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  padding: 0;
  min-width: 0;
  min-height: 0;
  cursor: pointer;
  transition: transform 0.5s ease;
  box-shadow: none;
}

/* Floating skill badges */
.orbit-badge {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #10193d;
  box-shadow: 0 8px 25px rgba(16, 25, 61, 0.2);
  z-index: 3;
  animation: badgeBounce 3s ease-in-out infinite;
}

.orbit-badge-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff9900;
  animation-delay: 0s;
}

.orbit-badge-2 {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #4caf50;
  animation-delay: 0.7s;
}

.orbit-badge-3 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #2196f3;
  animation-delay: 1.4s;
}

.orbit-badge-4 {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b6fc4;
  animation-delay: 2.1s;
}

@keyframes badgeBounce {
  0%, 100% { box-shadow: 0 8px 25px rgba(16, 25, 61, 0.2); }
  50% { box-shadow: 0 12px 35px rgba(155, 111, 196, 0.5); }
}

.orbit-badge-1 {
  animation: badgeBounceTop 3s ease-in-out infinite;
}
.orbit-badge-3 {
  animation: badgeBounceBottom 3s ease-in-out infinite 1.4s;
}
@keyframes badgeBounceTop {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes badgeBounceBottom {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Get in Touch button - modern redesign */
.circle button,
#getInTouchButton {
  position: relative;
  width: auto;
  height: auto;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  text-transform: uppercase;
}

.circle button::before,
#getInTouchButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4c1f9 0%, #b88fd9 100%);
  transition: left 0.4s ease;
  z-index: 0;
}

.circle button:hover::before,
#getInTouchButton:hover::before {
  left: 0;
}

.circle button > span,
#getInTouchButton > span,
.circle button > i,
#getInTouchButton > i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.circle button:hover,
#getInTouchButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(155, 111, 196, 0.4);
  border: none;
  color: #10193d;
}

.circle button:hover > span,
.circle button:hover > i,
#getInTouchButton:hover > span,
#getInTouchButton:hover > i {
  color: #10193d;
}

.circle button:active,
#getInTouchButton:active {
  transform: translateY(0);
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #ffffff;
}

#getInTouchButton i {
  transition: transform 0.3s ease;
}

#getInTouchButton:hover i {
  transform: translateX(5px);
}

/* Right side - text and stats */
.exp-box {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.exp-box-1,
.exp-box-2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: stretch;
  width: 100%;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #9b6fc4;
  padding: 6px 16px;
  background: rgba(228, 193, 249, 0.3);
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 5px;
}

.about-headline {
  font-size: 4rem;
  font-weight: 900;
  color: #10193d;
  margin: 0 0 10px 0;
  line-height: 1.1;
}

.about-name-accent {
  background: linear-gradient(135deg, #9b6fc4 0%, #e4c1f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.about-name-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(228, 193, 249, 0.5);
  z-index: -1;
  border-radius: 4px;
}

.about-title {
  border: none;
  border-radius: 20px;
  padding: 0;
  box-shadow: none;
  cursor: default;
  font-family: 'Roobert', 'Arial', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #10193d;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
}

.about-title .p1,
.about-title .p2 {
  background: #ffffff;
  padding: 24px 28px 24px 70px;
  border-radius: 16px;
  width: 100%;
  margin: 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
  border-left: 4px solid #e4c1f9;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.about-title .p1:hover,
.about-title .p2:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(16, 25, 61, 0.18);
  border-left-color: #9b6fc4;
}

.about-title .p2 {
  border-left-color: #b88fd9;
}

.p-icon {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e4c1f9 0%, #b88fd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10193d;
  font-size: 1rem;
}

.about-title:hover {
  border: none;
}

.about-title:active {
  transform: none;
  color: #10193d;
  background: transparent;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #faf3ff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.about-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(16, 25, 61, 0.1);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #10193d 0%, #9b6fc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c7290;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media only screen and (max-width: 992px) {
  #section-about {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 30px;
    text-align: center;
  }

  .circle {
    align-items: center;
  }

  .about-eyebrow {
    margin: 0 auto 5px;
  }

  .about-headline {
    text-align: center;
  }

  .about-title .p1,
  .about-title .p2 {
    text-align: left;
  }

  .circle-orbit {
    width: 320px;
    height: 320px;
  }

  .circle-img-wrap {
    width: 240px;
    height: 240px;
  }
}

@media only screen and (max-width: 600px) {
  #section-about {
    padding: 50px 20px;
    gap: 50px;
  }

  .circle-orbit {
    width: 280px;
    height: 280px;
  }

  .circle-img-wrap {
    width: 200px;
    height: 200px;
  }

  .orbit-badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .about-headline {
    font-size: 2.5rem;
  }

  .about-title .p1,
  .about-title .p2 {
    padding: 20px 20px 20px 60px;
    font-size: 0.95rem;
  }

  .p-icon {
    left: 14px;
    top: 20px;
    width: 32px;
    height: 32px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.box2 {
  /* height: 100vh; */
  width: 100%;
  background-color: #e4c1f9;
  margin: 60px 0 0 0;
}
.stop-spinning {
  animation: none;
}

.scroll-circle {
  position: fixed;
  bottom: 102px;
  right: 80px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border-color: #f8f8f8;
  border: 5px;
  background-color: #10193d;
  color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  z-index: 900;
}

.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #f8f8f8 transparent;
  margin-bottom: 10px;
}

.scroll-text2 {
  width: 100px;
  animation: scrollTextAnim 5s infinite linear;
}

.scroll-text {
  font-size: 20px;
  font-weight: bold;
  animation: scrollTextAnim 1s infinite linear;
}

@keyframes scrollTextAnim {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.scroll-arrow22 {
  position: fixed;
  left: auto;
  top: auto;
  bottom: auto;
  right: 0;
  bottom: 0;
  display: flex;
  width: 150px;
  height: 150px;
  margin-right: 40px;
  margin-bottom: 60px;
  justify-content: center;
  align-items: center;
  transform: translate3d(0px, -1.3335px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 1;
  cursor: pointer;
  z-index: 100;
}

.scroll-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.centered-i {
  font-size: 24px;
  font-weight: bold;
  color: #f8f8f8;
}

.image-31 {
  width: 45px;
  animation: jumpUpDown 0.5s infinite alternate;
}

@keyframes jumpUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-7px);
  }
}

.stroke-text22 {
  font-size: 150px;
  font-weight: bold;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px #10193d;
  display: inline;
  margin-right: 100px;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.work-marquee-container {
  display: flex;
  width: 100%;
  height: 4vw;
  margin-top: 16px;
  margin-left: 0;
  align-items: center;
  grid-column-gap: 4vw;
  transform: translate(0, 0);
}

.work-marquee-outer-container {
  overflow-x: hidden;
  height: 100px;
  margin-left: -20px;
  border-top: 2px solid #10193d;
  border-bottom: 2px solid #f8f8f8;
  background-color: #10193d;
  box-shadow: 7px 7px 0 0 #10193d;
  transform: rotate(-3deg);
  transition: transform 0.3s ease-in-out;
  margin: 0 -10px 0 -10px;
}

.work-set {
  display: flex;
  grid-column-gap: 3vw;
  grid-row-gap: 0vw;
}

.work-heading {
  margin: 0;
  color: #f8f8f8;
  font-size: 4vw;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.3s ease-in-out;
}

.work-heading {
  transition: transform 0.5s ease-in-out;
}

.work-set {
  animation: marquee 15s linear infinite;
}

.work-heading {
  cursor: pointer;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.work-set {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.work-set::before,
.work-set::after {
  content: attr(data-text);
}

.work-heading {
  margin-right: 50px;
  cursor: pointer;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * 100% / 3));
  }
}

#section-portfolio {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  height: auto;
  padding: 100px 30px 80px;
  background: linear-gradient(135deg, #e4c1f9 0%, #f0d9ff 50%, #e4c1f9 100%);
  overflow: hidden;
}

#section-portfolio::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 111, 196, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#section-portfolio::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 25, 61, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.portfolio-title {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  color: #10193d;
  line-height: 1.1;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.portfolio-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #10193d, #9b6fc4);
  border-radius: 4px;
  margin: 15px auto 0;
}

.portfolio-item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 85%;
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
  margin-bottom: 18px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.portfolio-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #10193d 0%, #9b6fc4 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 25, 61, 0.18);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(155, 111, 196, 0.3);
  color: #10193d;
}

.portfolio-item:hover::before {
  transform: scaleY(1);
}

.portfolio-item.active {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(16, 25, 61, 0.18);
  border-color: #9b6fc4;
  color: #10193d;
}

.portfolio-item.active::before {
  transform: scaleY(1);
}

.ppc-box {
  position: relative;
  font-size: 1.4rem;
  cursor: pointer;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 20px 30px;
  gap: 25px;
  box-sizing: border-box;
}

.portfolio-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #9b6fc4 0%, #e4c1f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 60px;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-number,
.portfolio-item.active .portfolio-number {
  transform: scale(1.1);
}

.portfolio-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e4c1f9 0%, #b88fd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10193d;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 111, 196, 0.3);
}

.portfolio-item:hover .portfolio-icon {
  transform: rotate(-8deg) scale(1.05);
  background: linear-gradient(135deg, #b88fd9 0%, #9b6fc4 100%);
}

.portfolio-item.active .portfolio-icon {
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #e4c1f9;
}

.portfolio-label {
  flex: 1;
  font-weight: 700;
  font-size: 1.3rem;
  color: #10193d;
  letter-spacing: 0.3px;
}

.submenu {
  display: block;
  position: static;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
  background: linear-gradient(180deg, rgba(228, 193, 249, 0.1) 0%, rgba(228, 193, 249, 0.3) 100%);
}

.submenu-item {
  padding: 20px 0 25px 0;
  background: transparent;
  border-radius: 0;
  height: auto;
  min-height: auto;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
  border-top: 1px dashed rgba(155, 111, 196, 0.4);
}

.submenu-item > div {
  display: inline-flex;
}

.submenu-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #10193d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 20px;
  background: #ffffff;
  border: 1.5px solid rgba(155, 111, 196, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(16, 25, 61, 0.06);
}

.submenu-item a::before {
  content: '\2192';
  font-size: 1rem;
  color: #9b6fc4;
  transition: transform 0.3s ease;
}

.submenu-item a:hover {
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(16, 25, 61, 0.25);
}

.submenu-item a:hover::before {
  color: #e4c1f9;
  transform: translateX(3px);
}

.submenu-item.to-link a {
  font-size: 1.05rem;
  padding: 12px 26px;
}

.padding-submenu {
  padding: 0;
}

.portfolio-item.active .submenu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.portfolio-item.active .toggle {
  transform: rotate(135deg);
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #e4c1f9;
}

.toggle {
  position: relative;
  right: auto;
  top: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(16, 25, 61, 0.3);
}

.portfolio-item:hover .toggle {
  background: linear-gradient(135deg, #9b6fc4 0%, #b88fd9 100%);
  color: #10193d;
}

@media only screen and (max-width: 768px) {
  #section-portfolio {
    padding: 70px 20px 60px;
  }

  .portfolio-item {
    width: 100%;
  }

  .ppc-box {
    padding: 18px 20px;
    gap: 15px;
    min-height: 80px;
  }

  .portfolio-number {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .portfolio-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .portfolio-label {
    font-size: 1.05rem;
  }

  .toggle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .submenu {
    padding: 0 20px;
  }

  .submenu-item a {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

@media only screen and (max-width: 480px) {
  .portfolio-icon {
    display: none;
  }

  .portfolio-number {
    font-size: 1.3rem;
    min-width: 35px;
  }

  .portfolio-label {
    font-size: 0.95rem;
  }

  .ppc-box {
    gap: 12px;
    padding: 15px 18px;
  }
}

.to-link {
  text-align: center;
  display: flex;
  align-items: center;
}

.box3 {
  width: 100%;
  background-color: #f8f8f8;
}

.education-title {
  display: block;
  position: absolute;
  font-size: 4rem;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  margin-top: -90px;
  color: #10193d;
  line-height: 1.1;
}

#section-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 150px;
}

.award-item {
  padding: 30px;
  box-sizing: border-box;
  flex-basis: calc(33.33% - 20px);
  height: 280px;
  margin: 20px;
  background-color: #f8f8f8;
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
  color: #10193d;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
}

.award-item:hover,
.award-item.clicked {
  box-shadow: 0 15px 40px rgba(16, 25, 61, 0.18);
  transform: scale(1.01);
  background-color: #e4c1f9;
  color: #f8f8f8;
}

.animate-education-box {
  opacity: 1;
  animation: dropAndBounce 1.4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  will-change: transform, opacity;
}

@keyframes dropAndBounce {
  0% {
    opacity: 0;
    transform: translateY(-700px) rotate(-6deg) scale(0.95);
  }
  35% {
    opacity: 1;
  }
  55% {
    transform: translateY(0) rotate(0deg) scale(1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  }
  70% {
    transform: translateY(-30px) rotate(1.5deg) scale(0.99);
  }
  82% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  90% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.html-css {
  background-image: url(/img/beonmax.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.amazon-setup {
  background-image: url(/img/setup.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.tkuk {
  background-image: url(/img/tquk.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.arden {
  background-image: url(/img/ardenlogo.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.itcareerswitch {
  background-image: url(/img/itcareerswitch.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.codacademy {
  background-image: url(/img/codacademy.svg);
  background-size: 75%;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
}

.readmore {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #10193d;
  color: #f8f8f8;
  padding: 10px 20px;
  border-radius: 10px;
}

.award-item:hover .readmore {
  display: block;
}

.award-item:hover .year-box {
  display: block;
}

.year-box {
  display: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  margin: 150px 0 0 50%;
  transform: translateX(-50%);
}

.year-2021::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.year-2021::after {
  content: '2021';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.year-2022::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.year-2022::after {
  content: '2022';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}

.year-2023::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.year-2023::after {
  content: '2023';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}



/* Contact Section */
.box4 {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #e4c1f9 0%, #f0d9ff 100%);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.lets-talk {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  color: #10193d;
  margin: 0 0 50px 0;
  position: static;
  line-height: 1.1;
}

.envelope-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1500px;
}

.envelope {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(16, 25, 61, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.8s ease, min-height 0.6s ease 0.8s;
}

.form {
  padding: 40px;
  width: 100%;
  height: 100%;
  min-height: inherit;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form .text-label,
.form label {
  display: none;
}

.form input:not(.submit-button),
.form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #10193d;
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  color: #10193d;
  background: #ffffff;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #999999;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #10193d;
  box-shadow: 0 0 0 3px rgba(228, 193, 249, 0.5);
}

.textarea-box {
  resize: vertical;
  min-height: 150px;
  max-height: 300px;
  font-family: 'Arial', sans-serif;
}

input.submit-button,
.form input.submit-button,
input[type="submit"].submit-button {
  width: 100% !important;
  padding: 15px !important;
  background: linear-gradient(135deg, #10193d 0%, #1a2454 100%) !important;
  background-color: #10193d !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  font-family: 'Arial', sans-serif !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  display: block !important;
  text-align: center !important;
  text-shadow: none !important;
}

.submit-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 20px rgba(16, 25, 61, 0.3) !important;
}

.submit-button:active {
  transform: translateY(0) !important;
}

/* Envelope body (the rectangle envelope shape that appears) */
.envelope-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4c1f9 0%, #d4a4f0 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease 0.4s;
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(16, 25, 61, 0.1);
}

/* Envelope flaps */
.flap {
  position: absolute;
  background: linear-gradient(135deg, #b88fd9 0%, #9b6fc4 100%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.flap.bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #d4a4f0 0%, #c089e0 100%);
  border-radius: 0 0 20px 20px;
  transform: translateY(0);
}

.flap.left {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #c089e0 0%, #a872d0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border-radius: 20px 0 0 20px;
}

.flap.right {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #a872d0 0%, #8e5cb8 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  border-radius: 0 20px 20px 0;
}

.flap.top {
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(135deg, #9b6fc4 0%, #7d4fa8 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transform: rotateX(0deg);
  border-radius: 20px 20px 0 0;
  z-index: 4;
}

/* CLOSED STATE - Envelope closing animation */
.envelope.closed {
  min-height: 350px;
}

.envelope.closed .form {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.envelope.closed .envelope-body {
  opacity: 1;
  transition: opacity 0.4s ease 0.3s;
}

.envelope.closed .flap.bottom {
  opacity: 1;
  transition: opacity 0.3s ease 0.4s;
}

.envelope.closed .flap.left {
  opacity: 1;
  transition: opacity 0.3s ease 0.6s;
}

.envelope.closed .flap.right {
  opacity: 1;
  transition: opacity 0.3s ease 0.8s;
}

.envelope.closed .flap.top {
  opacity: 1;
  animation: closeTopFlap 1s ease 1s forwards;
}

@keyframes closeTopFlap {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/* Sent message */
.sent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  opacity: 0;
  z-index: 5;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(16, 25, 61, 0.3);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.envelope.closed .sent {
  opacity: 1;
  transition: opacity 0.5s ease 2s;
}

@media only screen and (max-width: 768px) {
  .box4 {
    padding: 40px 15px;
    min-height: auto;
  }

  .lets-talk {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .envelope {
    max-width: 100%;
    min-height: 450px;
  }

  .form {
    padding: 30px;
  }

  .form input:not(.submit-button),
  .form textarea {
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .submit-button {
    padding: 12px;
    font-size: 16px;
  }

  .sent {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 480px) {
  .box4 {
    padding: 30px 10px;
  }

  .lets-talk {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .envelope {
    min-height: 400px;
  }

  .form {
    padding: 20px;
  }

  .form input:not(.submit-button),
  .form textarea {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .textarea-box {
    min-height: 120px;
  }

  .submit-button {
    padding: 12px;
    font-size: 16px;
  }

  .sent {
    font-size: 1.5rem;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0a0f2c 0%, #10193d 50%, #1a2454 100%);
  color: #f8f8f8;
  padding: 80px 20px 30px;
  overflow: hidden;
  margin-top: 0;
  box-sizing: border-box;
}

.footer-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 193, 249, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: footerFloat 8s ease-in-out infinite;
}

.footer-bg-shape::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(155, 111, 196, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes footerFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #e4c1f9 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8c0d9;
  margin: 0 0 25px 0;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}

.footer-social-icon {
  font-size: 1.6em;
  color: #f8f8f8;
  transition: all 2s;
  cursor: pointer;
  padding: 6px;
  border-radius: 2px;
}

#facebook-icon-footer.animate,
#twitter-icon-footer.animate,
#linkedin-icon-footer.animate {
  transform: rotate(360deg) scale(1.2);
  color: #1e90ff;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #e4c1f9, transparent);
  border-radius: 2px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8c0d9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '\2192';
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #e4c1f9;
}

.footer-links a:hover {
  color: #e4c1f9;
  transform: translateX(8px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -16px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8c0d9;
  font-size: 0.9rem;
}

.footer-contact i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(228, 193, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4c1f9;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.footer .copi {
  margin: 0;
  color: #8a92ac;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }

  .footer-brand .footer-logo {
    font-size: 1.6rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-tagline {
    max-width: 100%;
  }
}
