/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #23263a;
  color: #fff;
  min-height: 100vh;
  margin: 0;
}
body.about-bg {
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem 1.5rem 3rem;
  background: transparent;
}
.main-nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.main-nav a {
  color: #bfc4d6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s;
}
/* Underline effect for all nav links, including Projects. */
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #4f8cff;
  border-radius: 2px;
  margin-top: 4px;
  transition: width 0.3s;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}
.main-nav a.active,
.main-nav a:hover {
  color: #fff;
}
.main-nav a.active::after {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  background: #4f8cff;
  border-radius: 2px;
  margin-top: 4px;
}
.logo {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(90deg, #4f8cff 0%, #7b61ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 3rem 3rem 3rem;
  min-height: 70vh;
  gap: 2rem;
}
.hero-left {
  flex: 1;
  min-width: 220px;
}
.hero-name {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.1;
}
@keyframes arrowMove {
  0% { opacity: 0; transform: translateX(-10px); }
  40% { opacity: 1; transform: translateX(0); }
  80% { opacity: 1; transform: translateX(5px); }
  100% { opacity: 0; transform: translateX(15px); }
}
.arrow {
  font-size: 2.5rem;
  color: #4f8cff;
  vertical-align: middle;
  margin-left: 0.2em;
  display: inline-block;
  animation: arrowMove 1.6s infinite;
}
.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}
.profile-img-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: none;
  border: none;
  background: none;
  display: block;
}
.profile-img[src=""], .profile-img:not([src]) {
  background: #2e2e48;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  content: 'Your Image Here';
}
.circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50%;
  z-index: 2;
  text-align: center;
  padding: 0;
  width: 110px;
  height: 110px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  border: 4px solid #23263a;
  letter-spacing: 0.5px;
}
.circle-dev {
  background: #7b61ff;
  top: -30px;
  left: -30px;
}
.circle-exp {
  background: #4f8cff;
  bottom: -30px;
  right: -30px;
  font-size: 1.08rem;
}
.hero-right {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.intro-block {
  max-width: 340px;
  color: #e0e4f7;
}
.intro-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.intro-block p {
  font-size: 1.05rem;
  color: #bfc4d6;
}
.purple {
  color: #7b61ff;
  font-weight: 700;
}
.intro-hi {
  margin-bottom: 0.7rem;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
@media (max-width: 1100px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 1.2rem 2rem 1.2rem;
  }
  .hero-left, .hero-center, .hero-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .hero-center {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero-right {
    justify-content: center;
  }
  .profile-img-wrapper {
    width: 300px;
    height: 300px;
  }
  .profile-img {
    width: 240px;
    height: 240px;
  }
  .circle {
    width: 70px;
    height: 70px;
    font-size: 0.95rem;
    border-width: 3px;
  }
  .circle-dev {
    top: -18px;
    left: -18px;
  }
  .circle-exp {
    bottom: -18px;
    right: -18px;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    gap: 1rem;
  }
  .main-nav {
    gap: 1.2rem;
  }
  .hero-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .profile-img-wrapper {
    width: 180px;
    height: 180px;
  }
  .profile-img {
    width: 160px;
    height: 160px;
  }
  .circle {
    width: 70px;
    height: 70px;
    font-size: 0.95rem;
    border-width: 3px;
  }
  .circle-dev {
    top: -18px;
    left: -18px;
  }
  .circle-exp {
    bottom: -18px;
    right: -18px;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left, .hero-center, .hero-right {
  animation: fadeIn 1.2s ease-in;
}
.profile-img {
  animation: fadeIn 1.6s ease-in;
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem auto 3rem auto;
  max-width: 1000px;
  width: 100%;
}

/* Card Styles from Uiverse.io by ElSombrero2 */
.card {
  overflow: visible;
  width: 190px;
  height: 254px;
}
.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000ee;
  border-radius: 5px;
  position: relative;
}
.front, .back {
  background-color: #151515;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}
.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
  animation: rotation_481 5000ms infinite linear;
}
.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #151515;
  border-radius: 5px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.card:hover .content {
  transform: rotateY(180deg);
}
@keyframes rotation_481 {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}
.front {
  transform: rotateY(180deg);
  color: white;
}
.front .front-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.front-content .badge {
  background-color: #00000055;
  padding: 2px 10px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  width: fit-content;
}
.description {
  box-shadow: 0px 0px 10px 5px #00000088;
  width: 100%;
  padding: 10px;
  background-color: #00000099;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}
.title {
  font-size: 11px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}
.title p {
  width: 50%;
}
.card-footer {
  color: #ffffff88;
  margin-top: 5px;
  font-size: 8px;
}
.front .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffbb66;
  position: relative;
  filter: blur(15px);
  animation: floating 2600ms infinite linear;
}
#bottom {
  background-color: #ff8866;
  left: 50px;
  top: 0px;
  width: 150px;
  height: 150px;
  animation-delay: -800ms;
}
#right {
  background-color: #ff2233;
  left: 160px;
  top: -80px;
  width: 30px;
  height: 30px;
  animation-delay: -1800ms;
}
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }
}

.badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  border: 4px solid #23263a;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.5px;
}
.badge-left {
  left: -60px;
  background: #7b61ff;
  width: 110px;
  height: 110px;
  font-size: 1.05rem;
}
.badge-right {
  right: -70px;
  bottom: -30px;
  background: #4f8cff;
  width: 150px;
  height: 150px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text-desktop { display: inline; }
.badge-text-mobile { display: none; }
@media (max-width: 700px) {
  .badge-text-desktop { display: none; }
  .badge-text-mobile { display: inline; }
}
@media (max-width: 1100px) {
  .badge-right {
    right: -45px;
    bottom: -18px;
    width: 90px;
    height: 90px;
    font-size: 1rem;
  }
}
@media (max-width: 700px) {
  .badge-right {
    right: -20px;
    bottom: -8px;
    width: 50px;
    height: 50px;
    font-size: 0.75rem;
  }
}
@media (max-width: 700px) {
  .badge-left {
    left: -24px;
    width: 72px;
    height: 72px;
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #bfc4d6;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 700px) {
  .hamburger {
    display: flex;
    position: absolute;
    left: 1rem;
    top: 1.2rem;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #23263a;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 2rem;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    transform: translateX(-100%);
    transition: transform 0.3s;
    box-shadow: 2px 0 16px 0 rgba(0,0,0,0.15);
    z-index: 1000;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    font-size: 1.3rem;
  }
  body.nav-open .main-nav {
    transform: translateX(0);
  }
  .main-nav a {
    margin-left: 0;
    font-size: 1.2rem;
    width: 100%;
    padding: 0.7em 0;
    border-radius: 8px;
  }
  .header {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    gap: 0;
    position: relative;
  }
  .logo {
    margin-left: auto;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
  /* Hide nav by default on mobile */
  .main-nav {
    display: flex;
  }
}
@media (max-width: 700px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    gap: 2rem;
  }
  .hero-left, .hero-center, .hero-right {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .profile-img-wrapper {
    width: 220px;
    height: 220px;
  }
  .profile-img {
    width: 200px;
    height: 200px;
  }
  .badge {
    width: 60px;
    height: 60px;
    font-size: 0.95rem;
    border-width: 2.5px;
  }
  .badge-left {
    left: -24px;
  }
  .badge-right {
    right: -24px;
    bottom: -12px;
    width: 72px;
    height: 72px;
    font-size: 1.05rem;
  }
  .intro-hi {
    font-size: 1.2rem;
  }
}
/* Prevent background scroll when nav is open */
body.nav-open {
  overflow: hidden;
}

/* Pyramid Loader Styles */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-bottom-center {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  pointer-events: none;
  animation: fadeInUp 1.2s ease-in;
}
.pyramid-loader {
  position: relative;
  width: 180px;
  height: 180px;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
}
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spin 4s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotateY(360deg);
  }
}
.pyramid-loader .wrapper .side {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.pyramid-loader .wrapper .side1 {
  transform: rotateZ(-30deg) rotateY(90deg);
  background: conic-gradient( #4f8cff, #7b61ff, #b5e8f7, #23263a );
}
.pyramid-loader .wrapper .side2 {
  transform: rotateZ(30deg) rotateY(90deg);
  background: conic-gradient( #7b61ff, #b5e8f7, #4f8cff, #23263a );
}
.pyramid-loader .wrapper .side3 {
  transform: rotateX(30deg);
  background: conic-gradient( #4f8cff, #b5e8f7, #7b61ff, #23263a );
}
.pyramid-loader .wrapper .side4 {
  transform: rotateX(-30deg);
  background: conic-gradient( #b5e8f7, #4f8cff, #7b61ff, #23263a );
}
.pyramid-loader .wrapper .shadow {
  width: 40px;
  height: 40px;
  background: #7b61ff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotateX(90deg) translateZ(-20px);
  filter: blur(10px);
}
@media (max-width: 700px) {
  .pyramid-loader {
    width: 100px;
    height: 100px;
  }
  .pyramid-loader .wrapper .side {
    width: 28px;
    height: 28px;
  }
  .pyramid-loader .wrapper .shadow {
    width: 22px;
    height: 22px;
    filter: blur(6px);
  }
  .home-bottom-center {
    left: 50%;
    right: auto;
    bottom: 0.2rem;
    transform: translateX(-50%);
    justify-content: center;
    width: 100vw;
  }
}

@media (max-width: 700px) {
  .arrow {
    transform: rotate(90deg);
    display: inline-block;
  }
}

/* Tech Stack Carousel Styles */
.tech-carousel-section {
  background: #23263a;
  padding: 3rem 0 2.5rem 0;
  width: 100vw;
  overflow: hidden;
}
.carousel-title {
  color: #b5e8f7;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.tech-carousel-outer {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 0 0.5rem;
}
.tech-carousel {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  transition: all 0.2s;
  user-select: none;
  cursor: grab;
  will-change: transform;
}
.tech-carousel:active {
  cursor: grabbing;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #23263a;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 12px 0 rgba(79,140,255,0.08);
  border: 1.5px solid #35395a;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.tech-item:hover {
  background: #35395a;
  color: #b5e8f7;
}
.tech-emoji {
  font-size: 1.5rem;
}
.tech-carousel::-webkit-scrollbar {
  display: none;
}
@media (max-width: 900px) {
  .tech-carousel-section {
    padding: 2rem 0 1.5rem 0;
  }
  .tech-item {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .tech-emoji {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .carousel-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .tech-item {
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }
  .tech-emoji {
    font-size: 1rem;
  }
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.social-links {
  display: flex;
  gap: 2.2rem;
}
.social-links a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.98rem;
}
.email-link {
  color: #111;
  font-weight: 600;
  font-size: 0.98rem;
  text-transform: lowercase;
}
.about-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 3.5rem 2.5rem 0 2.5rem;
  gap: 2.5rem;
  min-height: 80vh;
}
.about-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2.5rem;
  min-width: 60px;
  justify-content: flex-start;
}
.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.down-arrow {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #111;
}
.about-section {
  display: flex;
  flex: 2;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2.5rem;
}
.about-heading {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.about-label {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
  border-left: 4px solid #111;
  padding-left: 1.2rem;
  line-height: 1.1;
}
.about-intro {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.2rem;
}
.about-desc {
  font-size: 1.08rem;
  color: #222;
  max-width: 420px;
  margin-bottom: 0.5rem;
  text-align: right;
}
.about-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.about-btn:hover {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
}
.about-cards {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  width: 100%;
  justify-content: flex-start;
  margin-top: 1.5rem;
}
.about-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  min-height: 220px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  border: 1.5px solid #111;
  background: #fff;
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.18s;
  position: relative;
}
.about-card.filled {
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
}
.about-card.outlined {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
}
.about-card.filled .about-link {
  color: #fff;
}
.about-card.outlined .about-link {
  color: #111;
}
.about-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
  border-color: #222;
}
.about-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.about-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.about-link {
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.about-link:hover {
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .about-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem 0 1rem;
    gap: 1.5rem;
  }
  .about-vertical {
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 1.5rem;
    min-width: unset;
    justify-content: flex-start;
  }
  .vertical-label {
    writing-mode: horizontal-tb;
    margin-bottom: 0;
    margin-right: 1.2rem;
  }
  .about-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .about-intro {
    align-items: flex-start;
    text-align: left;
  }
  .about-desc {
    text-align: left;
  }
  .about-cards {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
}
@media (max-width: 700px) {
  .top-bar {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 0.5rem 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .about-main {
    padding: 1rem 0.2rem 0 0.2rem;
  }
  .about-label {
    font-size: 1.3rem;
    padding-left: 0.5rem;
  }
  .about-card {
    min-width: 0;
    max-width: 100%;
    min-height: 140px;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .about-icon {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .about-title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
}

.about-section-main {
  background: #23263a;
  color: #fff;
  padding: 4rem 0 3rem 0;
  width: 100vw;
}
.about-section-main .about-label {
  color: #fff;
  border-left: 4px solid #fff;
}
.about-section-main .about-desc {
  color: #bfc4d6;
}
.about-section-main .about-btn {
  background: #fff;
  color: #23263a;
  border: none;
}
.about-section-main .about-btn:hover {
  background: #23263a;
  color: #fff;
  border: 1.5px solid #fff;
}
.about-section-main .about-card {
  background: #23263a;
  color: #fff;
  border: 1.5px solid #bfc4d6;
}
.about-section-main .about-card.filled {
  background: #111;
  color: #fff;
  border: 1.5px solid #fff;
}
.about-section-main .about-card.outlined {
  background: #23263a;
  color: #fff;
  border: 1.5px solid #bfc4d6;
}
.about-section-main .about-card.filled .about-link {
  color: #fff;
}
.about-section-main .about-card.outlined .about-link {
  color: #b5e8f7;
}
.about-section-main .about-card:hover {
  box-shadow: 0 8px 32px 0 rgba(79,140,255,0.10);
  border-color: #b5e8f7;
}
.about-section-main .about-link {
  color: #b5e8f7;
}
.about-section-main .vertical-label,
.about-section-main .down-arrow {
  color: #fff;
}
@media (max-width: 1100px) {
  .about-section-main {
    padding: 2rem 0 2rem 0;
  }
}
@media (max-width: 700px) {
  .about-section-main {
    padding: 1.2rem 0 1.2rem 0;
  }
}

.about-section-modern {
  background: #23263a;
  color: #fff;
  padding: 4rem 0 3rem 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-modern-title {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
  text-align: center;
  color: #fff;
}
.about-modern-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-modern-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #35395a;
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.10);
  margin-bottom: 1rem;
}
.about-modern-desc {
  font-size: 1.08rem;
  color: #bfc4d6;
  max-width: 420px;
  text-align: center;
  margin: 0 auto;
}
.about-modern-cards {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}
.about-modern-card {
  background: #23263a;
  color: #fff;
  border: 1.5px solid #35395a;
  border-radius: 1.2rem;
  min-width: 140px;
  max-width: 180px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(79,140,255,0.04);
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.18s;
  position: relative;
}
.about-modern-card:hover {
  box-shadow: 0 8px 32px 0 rgba(79,140,255,0.10);
  border-color: #b5e8f7;
  background: #35395a;
}
.about-modern-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.about-modern-label {
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .about-section-modern {
    padding: 2.2rem 0 2rem 0;
  }
  .about-modern-cards {
    gap: 1.2rem;
  }
  .about-modern-card {
    min-width: 100px;
    max-width: 120px;
    min-height: 100px;
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  }
  .about-modern-icon {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .about-modern-label {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .about-section-modern {
    padding: 1.2rem 0 1.2rem 0;
  }
  .about-modern-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .about-modern-img {
    width: 80px;
    height: 80px;
  }
  .about-modern-cards {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .about-modern-card {
    min-width: 0;
    max-width: 100%;
    min-height: 60px;
    padding: 0.7rem 0.3rem 0.5rem 0.3rem;
  }
}

.about-section-modern.about-row {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding: 4rem 0 3rem 0;
}
.about-img-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.about-content-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.about-content-col .about-modern-title {
  text-align: left;
  margin-bottom: 1.2rem;
}
.about-content-col .about-modern-desc {
  text-align: left;
  margin-bottom: 1.5rem;
}
.about-content-col .about-modern-cards {
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .about-section-modern.about-row {
    flex-direction: column;
    gap: 2rem;
    padding: 2.2rem 0 2rem 0;
  }
  .about-img-col {
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .about-content-col {
    align-items: center;
    text-align: center;
  }
  .about-content-col .about-modern-title,
  .about-content-col .about-modern-desc {
    text-align: center;
  }
  .about-content-col .about-modern-cards {
    justify-content: center;
  }
}

.contact-btn, .about-contact-btn {
  background: linear-gradient(90deg, #4f8cff 0%, #7b61ff 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.35em 1em;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(79,140,255,0.10);
  height: 2.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-btn:hover, .contact-btn:focus, .about-contact-btn:hover, .about-contact-btn:focus {
  background: linear-gradient(90deg, #7b61ff 0%, #4f8cff 100%);
  box-shadow: 0 4px 16px 0 rgba(79,140,255,0.18);
  outline: none;
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .contact-btn, .about-contact-btn {
    width: 100%;
    margin: 0;
    margin-top: 0.5rem;
    font-size: 1.08rem;
    padding: 0.6em 0;
    border-radius: 999px;
    height: auto;
    display: block;
    text-align: center;
  }
}

/* About Me Section Styles */
:root {
  --about-bg: #f7f8fa;
  --about-bg-dark: #23263a;
  --about-card-bg: #fff;
  --about-card-bg-dark: #23263a;
  --about-shadow: 0 8px 32px 0 rgba(60,60,100,0.10);
  --about-shadow-hover: 0 12px 36px 0 rgba(60,60,100,0.18);
  --about-text: #23263a;
  --about-text-dark: #fff;
  --about-sub: #7b61ff;
}
body.dark .aboutme-section {
  background: var(--about-bg-dark);
}
body.dark .aboutme-img-card {
  background: var(--about-card-bg-dark);
}
body.dark .aboutme-text {
  color: var(--about-text-dark);
}
body.dark .aboutme-text h3 {
  color: var(--about-sub);
}
.aboutme-section {
  background: #23263a;
  padding: 4rem 1.5rem;
  transition: background 0.3s;
}
.aboutme-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.aboutme-img-card {
  background: var(--about-card-bg);
  border-radius: 1.5rem;
  box-shadow: var(--about-shadow);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-60px);
}
.aboutme-img-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  display: block;
  transition: transform 0.3s;
}
.aboutme-img-card:hover {
  box-shadow: var(--about-shadow-hover);
  transform: scale(1.03) translateX(-60px);
}
.aboutme-text {
  flex: 2 1 400px;
  color: #fff;
  opacity: 0;
  transform: translateX(60px);
  transition: color 0.3s;
}
.aboutme-text h2, .aboutme-text h3, .aboutme-text p {
  color: #fff;
}
.aboutme-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--about-sub);
}
.aboutme-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #4f8cff;
}
.aboutme-text p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: inherit;
}
@media (max-width: 900px) {
  .aboutme-container {
    flex-direction: column-reverse;
    gap: 2.5rem;
    align-items: stretch;
  }
  .aboutme-img-card {
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    transform: translateY(40px);
    justify-content: center;
  }
  .aboutme-img-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }
  .aboutme-text {
    transform: translateY(-40px);
    text-align: center;
    padding: 0 0.5rem;
  }
  .about-contact-btn {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.08rem;
    padding: 0.7em 0;
    border-radius: 999px;
    height: auto;
    display: block;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .aboutme-section {
    padding: 2.5rem 0.5rem;
  }
  .aboutme-img-card img {
    height: 160px;
  }
  .aboutme-text h2 {
    font-size: 1.2rem;
  }
  .aboutme-text h3 {
    font-size: 1rem;
  }
  .aboutme-text p {
    font-size: 0.95rem;
  }
  .about-contact-btn {
    font-size: 1rem;
    padding: 0.6em 0;
  }
}
/* Animation classes */
.aboutme-img-card.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.aboutme-text.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 900px) {
  .aboutme-img-card.visible,
  .aboutme-text.visible {
    transform: translateY(0);
  }
}

.about-contact-btn {
  font-size: 0.92rem;
  padding: 0.38em 0.8em;
  min-width: 100px;
  max-width: 220px;
  width: auto;
  margin: 1.2rem 0 0 0;
  display: inline-block;
  text-align: center;
}
@media (max-width: 900px) {
  .about-contact-btn {
    width: 80%;
    font-size: 1rem;
    padding: 0.5em 0;
    min-width: 90px;
    max-width: 180px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .about-contact-btn {
    width: 100%;
    font-size: 0.98rem;
    padding: 0.45em 0;
    min-width: 80px;
    max-width: 140px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .aboutme-img-card {
    display: none;
  }
}

.projects-section {
  background: #23263a;
  padding: 4rem 1.5rem 3rem 1.5rem;
}
.projects-container {
  max-width: 1100px;
  margin: 0 auto;
}
.projects-heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.project-uiverse-card {
  width: 230px;
  border-radius: 20px;
  background: #1b233d;
  padding: 5px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 20px 0px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 auto;
}
.project-uiverse-card:hover {
  transform: scale(1.05);
}
.project-uiverse-card .top-section {
  height: 150px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, rgb(4, 159, 187) 0%, rgb(80, 246, 255) 100%);
  position: relative;
}
.project-uiverse-card .top-section .border {
  border-bottom-right-radius: 10px;
  height: 30px;
  width: 130px;
  background: #1b233d;
  position: relative;
  transform: skew(-40deg);
  box-shadow: -10px -10px 0 0 #1b233d;
}
.project-uiverse-card .top-section .border::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  right: -15px;
  background: rgba(255, 255, 255, 0);
  border-top-left-radius: 10px;
  box-shadow: -5px -5px 0 2px #1b233d;
}
.project-uiverse-card .top-section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(255, 255, 255, 0);
  height: 15px;
  width: 15px;
  border-top-left-radius: 15px;
  box-shadow: -5px -5px 0 2px #1b233d;
}
.project-uiverse-card .top-section .icons {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
}
.project-uiverse-card .top-section .icons .logo {
  height: 100%;
  aspect-ratio: 1;
  padding: 7px 0 7px 15px;
}
.project-uiverse-card .top-section .icons .social-media {
  height: 100%;
  padding: 8px 15px;
  display: flex;
  gap: 7px;
}
.project-uiverse-card .top-section .icons .social-media .svg {
  height: 100%;
  fill: #1b233d;
}
.project-uiverse-card .top-section .icons .social-media .svg:hover {
  fill: white;
}
.project-uiverse-card .bottom-section {
  margin-top: 15px;
  padding: 10px 5px;
}
.project-uiverse-card .bottom-section .title {
  display: block;
  font-size: 17px;
  font-weight: bolder;
  color: white;
  text-align: center;
  letter-spacing: 2px;
}
.project-uiverse-card .bottom-section .row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.project-uiverse-card .bottom-section .row .item {
  flex: 30%;
  text-align: center;
  padding: 5px;
  color: rgba(170, 222, 243, 0.721);
}
.project-uiverse-card .bottom-section .row .item .big-text {
  font-size: 12px;
  display: block;
}
.project-uiverse-card .bottom-section .row .item .regular-text {
  font-size: 9px;
}
.project-uiverse-card .bottom-section .row .item:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.126);
  border-right: 1px solid rgba(255, 255, 255, 0.126);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.project-card {
  background: #23263a;
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px 0 rgba(60,60,100,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover {
  box-shadow: 0 8px 32px 0 rgba(79,140,255,0.18);
  transform: translateY(-6px) scale(1.025);
}
.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.project-desc {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  color: #e0e4f7;
}
.project-tech {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.tech-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.2s, filter 0.2s;
  filter: grayscale(0.2) brightness(0.95);
}
.tech-icon:hover svg {
  transform: scale(1.18) rotate(-6deg);
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px #4f8cff33);
}
.project-links {
  display: flex;
  gap: 0.7rem;
  margin-top: auto;
}
.project-btn {
  background: linear-gradient(90deg, #4f8cff 0%, #7b61ff 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.32em 1em;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(79,140,255,0.10);
  text-decoration: none;
  display: inline-block;
}
.project-btn:hover, .project-btn:focus {
  background: linear-gradient(90deg, #7b61ff 0%, #4f8cff 100%);
  box-shadow: 0 4px 16px 0 rgba(79,140,255,0.18);
  outline: none;
  transform: scale(1.04);
}
@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .projects-section {
    padding: 2.5rem 0.5rem 2rem 0.5rem;
  }
  .project-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .projects-heading {
    font-size: 1.3rem;
  }
}

.skills-section {
  width: 100%;
  padding: 4rem 0 3rem 0;
  background: #181a2a;
}
.skills-section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.skills-section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
  justify-items: center;
  align-items: center;
}
.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  cursor: pointer;
  background: rgba(255,255,255,0.01);
  border-radius: 1.2rem;
  padding: 1.2rem 0.5rem 0.7rem 0.5rem;
}
.skill-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  transition: filter 0.18s;
}
.skill-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  text-align: center;
}
.skill-item:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 18px 0 rgba(79,140,255,0.13);
  background: rgba(79,140,255,0.08);
}
.skill-item:hover .skill-icon svg {
  filter: drop-shadow(0 0 6px #4f8cff88);
}
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 1.1rem;
  }
  .skills-section-heading {
    font-size: 1.5rem;
  }
  .skill-label {
    font-size: 0.98rem;
  }
  .skills-section {
    padding: 2.5rem 0 2rem 0;
  }
}

.skills-expertise-section {
  background: #23263a;
  padding: 4rem 1.5rem 3rem 1.5rem;
}
.skills-expertise-container {
  max-width: 900px;
  margin: 0 auto;
  background: #23263a;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(60,60,100,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
}
.skills-expertise-heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
}
.skills-expertise-subheading {
  color: #bfc9e6;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.skills-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.skills-expertise-tag {
  background: #1b233d;
  color: #4f8cff;
  border-radius: 999px;
  padding: 0.38em 1.1em;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1.5px solid #4f8cff;
  display: inline-block;
}
.skills-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: center;
}
.skillx-block {
  background: #1b233d;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(60,60,100,0.10);
  padding: 1.1rem 1.3rem 1.1rem 1.1rem;
  min-width: 220px;
  max-width: 270px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.skillx-block:hover {
  box-shadow: 0 4px 24px 0 rgba(79,140,255,0.18);
  transform: translateY(-2px) scale(1.03);
}
.skillx-icon {
  margin-bottom: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.skillx-name {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-left: 0.1rem;
}
.skillx-bar {
  width: 100%;
  height: 12px;
  background: #23263a;
  border-radius: 8px;
  margin: 0.5rem 0 0.2rem 0;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(79,140,255,0.08);
}
.skillx-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 8px;
  background: linear-gradient(90deg, #4f8cff 60%, #7b61ff 100%);
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skillx-percent {
  color: #4f8cff;
  font-size: 0.98rem;
  font-weight: 700;
  margin-left: auto;
  margin-top: -1.5rem;
  margin-bottom: 0.2rem;
  align-self: flex-end;
}
@media (max-width: 900px) {
  .skills-expertise-list {
    gap: 1.2rem 1.2rem;
  }
  .skills-expertise-container {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
}
@media (max-width: 700px) {
  .skills-expertise-list {
    flex-direction: column;
    gap: 1.1rem 0;
  }
  .skillx-block {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
}

.projects-showcase-section {
  background: #23263a;
  padding: 4rem 1.5rem 3rem 1.5rem;
}
.projects-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card-v2 {
  background: #1b233d;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(60,60,100,0.13);
  overflow: hidden;
  max-width: 370px;
  min-width: 270px;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  flex: 1 1 370px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.project-card-v2:hover {
  box-shadow: 0 8px 32px 0 #4f8cff44;
  transform: translateY(-4px) scale(1.025);
}
.project-card-v2.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.project-card-v2.fade-out {
  opacity: 0 !important;
  transform: translateY(40px) !important;
}
.project-card-img-wrap {
  position: relative;
}
.project-card-img {
  width: 100%;
  display: block;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: cover;
  height: 180px;
  background: #23263a;
}
.project-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #38bdf8;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.32em 1.1em;
  box-shadow: 0 2px 8px #4f8cff22;
  z-index: 2;
  letter-spacing: 0.5px;
}
.project-card-content {
  padding: 1.2rem 1.3rem 0.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.project-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}
.project-card-title {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  flex: 1;
  margin: 0;
}
.project-card-skill {
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.18em 0.8em;
  background: #23263a;
  color: #38bdf8;
  border: 1.5px solid #38bdf8;
}
.project-card-skill--intermediate {
  color: #fbbf24;
  border-color: #fbbf24;
}
.project-card-desc {
  color: #bfc4d6;
  font-size: 1.01rem;
  margin: 0 0 0.2em 0;
}
.project-card-meta-row {
  display: flex;
  align-items: center;
  gap: 1.1em;
  font-size: 0.98rem;
  margin-bottom: 0.2em;
  flex-wrap: wrap;
}
.project-card-meta {
  display: flex;
  align-items: center;
  gap: 0.3em;
  color: #7b61ff;
  font-weight: 600;
  background: #23263a;
  border-radius: 7px;
  padding: 0.13em 0.7em;
}
.project-card-category {
  color: #38bdf8;
  background: #1b233d;
  border: 1.5px solid #38bdf8;
}
.project-card-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.2em;
}
.project-card-tech {
  background: #23263a;
  color: #bfc4d6;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.13em 0.8em;
  border: 1.2px solid #35395a;
  transition: background 0.2s, color 0.2s;
}
.project-card-tech-more {
  background: #4f8cff;
  color: #fff;
  border: none;
}
.project-card-footer {
  display: flex;
  gap: 0.7em;
  padding: 1.1em 1.3em 1.3em 1.3em;
  margin-top: auto;
}
.project-card-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45em 1.3em;
  border: none;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(79,140,255,0.10);
}
.project-card-btn--demo {
  background: linear-gradient(90deg, #4f8cff 0%, #7b61ff 100%);
  color: #fff;
  border: none;
}
.project-card-btn--demo:hover {
  background: linear-gradient(90deg, #7b61ff 0%, #4f8cff 100%);
  box-shadow: 0 4px 16px 0 #4f8cff33;
  transform: scale(1.05);
}
.project-card-btn--code {
  background: #23263a;
  color: #fff;
  border: 1.5px solid #35395a;
}
.project-card-btn--code:hover {
  background: #35395a;
  box-shadow: 0 4px 16px 0 #7b61ff33;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .projects-showcase-grid {
    flex-direction: column;
    gap: 2.2rem;
  }
}
@media (max-width: 600px) {
  .project-card-v2 {
    max-width: 100vw;
    min-width: 0;
    width: 100%;
    margin: 1.2rem 0;
  }
  .project-card-img {
    height: 140px;
  }
  .project-card-content, .project-card-footer {
    padding-left: 0.7em;
    padding-right: 0.7em;
  }
}

.aboutme-tags {
  display: flex;
  gap: 0.7em;
  margin: 0.7em 0 0.7em 0;
  flex-wrap: wrap;
}
.aboutme-tag {
  display: inline-flex;
  align-items: center;
  background: #23263a;
  color: #4f8cff;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.22em 1em 0.22em 0.7em;
  border: 1.5px solid #35395a;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s;
}
.aboutme-tag svg {
  margin-right: 0.4em;
  min-width: 18px;
  min-height: 18px;
}
@media (max-width: 700px) {
  .aboutme-tags {
    gap: 0.4em;
    margin: 0.5em 0 0.5em 0;
  }
  .aboutme-tag {
    font-size: 0.92rem;
    padding: 0.18em 0.7em 0.18em 0.5em;
  }
}

.aboutme-tag--green {
  background: #1e3a2a;
  color: #4ade80;
  border-color: #256d3a;
}

.project-card-badge--completed {
  background: #1e3a2a;
  color: #4ade80;
  border: 1.5px solid #256d3a;
}
.project-card-badge--ongoing {
  background: #3a2a1e;
  color: #fbbf24;
  border: 1.5px solid #b45309;
}

.projects-subheading {
  color: #bfc9e6;
  font-size: 1.13rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.aboutme-key {
  font-weight: 800;
  font-size: 1.13em;
  padding: 0 0.15em;
  border-radius: 0.3em;
  display: inline-block;
  line-height: 1.2;
}
.aboutme-key--green {
  color: inherit;
  background: none;
}
.aboutme-key--blue {
  color: inherit;
  background: none;
}
.aboutme-key--pink {
  color: inherit;
  background: none;
}

.projects-cta-container {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  background: #23263a;
  border-radius: 18px;
  border: 2px solid #22c55e;
  box-shadow: 0 2px 16px 0 rgba(60,60,100,0.10), 0 0 0 4px rgba(34,197,94,0.10);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.projects-cta-heading {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.projects-cta-subheading {
  color: #bfc9e6;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}
.projects-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.projects-cta-btn {
  background: linear-gradient(90deg, #4f8cff 0%, #7b61ff 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(79,140,255,0.10);
  margin-bottom: 0.5rem;
}
.projects-cta-btn--start {
  background: linear-gradient(90deg, #22c55e 0%, #4f8cff 100%);
}
.projects-cta-btn--contact {
  background: linear-gradient(90deg, #7b61ff 0%, #4f8cff 100%);
}
.projects-cta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px 0 rgba(79,140,255,0.18);
}
@media (max-width: 700px) {
  .projects-cta-container {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .projects-cta-btns {
    flex-direction: column;
    gap: 0.7rem;
  }
  .projects-cta-btn {
    width: 100%;
    font-size: 0.98rem;
  }
}

.skills-expertise-list--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
}
.skills-expertise-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.skillx-block {
  width: 100%;
  box-sizing: border-box;
}
.skillx-bar {
  width: 100%;
}
@media (max-width: 900px) {
  .skills-expertise-list--columns {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
  }
  .skills-expertise-col {
    gap: 1.2rem;
  }
}

.skills-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}
.skill-item {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: rgba(255,255,255,0.01);
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  cursor: pointer;
  box-sizing: border-box;
}
.skill-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  transition: filter 0.18s;
}
.skill-label {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  text-align: left;
}
.skill-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(79,140,255,0.13);
  background: rgba(79,140,255,0.08);
}
.skill-item:hover .skill-icon svg {
  filter: drop-shadow(0 0 6px #4f8cff88);
}
@media (max-width: 700px) {
  .skill-item {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.7rem;
  }
  .skill-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .skill-label {
    text-align: center;
    font-size: 1rem;
  }
}

.skills-section-subheading {
  color: #bfc6e6;
  font-size: 1.13rem;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.skills-section-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.skills-section-tag {
  background: rgba(79,140,255,0.09);
  color: #4f8cff;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.38em 1.1em;
  letter-spacing: 0.01em;
  display: inline-block;
}
@media (max-width: 700px) {
  .skills-section-subheading {
    font-size: 1rem;
  }
  .skills-section-tags {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }
  .skills-section-tag {
    font-size: 0.92rem;
    padding: 0.32em 0.8em;
  }
}
.skills-section-tag:nth-child(1) {
  background: rgba(79,140,255,0.13);
  color: #4f8cff;
}
.skills-section-tag:nth-child(2) {
  background: rgba(62,207,142,0.13);
  color: #3ecf8e;
}
.skills-section-tag:nth-child(3) {
  background: rgba(144,99,255,0.13);
  color: #9063ff;
}
.skills-section-tag:nth-child(4) {
  background: rgba(255,99,186,0.13);
  color: #ff63ba;
}

/* --- About Me Section Responsive Improvements --- */
@media (max-width: 700px) {
  .aboutme-tags {
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
    margin: 0.5em 0 0.5em 0;
  }
  .aboutme-tag {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.3em;
  }
  .about-contact-btn {
    width: 100%;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-size: 1.08rem;
    padding: 0.7em 0;
    border-radius: 999px;
    height: auto;
    display: block;
    text-align: center;
  }
}
@media (min-width: 900px) {
  .aboutme-tags {
    padding-top: 1.5em;
  }
  .about-contact-btn {
    margin-top: 2em;
  }
}

/* Skills & Expertise Cards Redesign */
.skills-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .skills-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.skill-card {
  background: #181926;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(60,60,100,0.13);
  padding: 1.5rem 2rem 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 110px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.skill-card:hover {
  box-shadow: 0 8px 32px 0 #4f8cff44;
  transform: translateY(-4px) scale(1.025);
}
.skill-card-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.1rem;
}
.skill-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23263a;
  box-shadow: 0 2px 8px 0 rgba(79,140,255,0.10);
}
.skill-card-icon img {
  width: 32px;
  height: 32px;
  display: block;
}
.skill-card-info {
  flex: 1;
  min-width: 0;
}
.skill-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.skill-card-subtitle {
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-block;
  border-radius: 999px;
  padding: 0.18em 0.9em;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  letter-spacing: 0.5px;
}
.skill-tag-backend { background: #1e3a2a; color: #4ade80; }
.skill-tag-frontend { background: #1e2a3d; color: #60a5fa; }
.skill-tag-database { background: #2a1e3d; color: #a78bfa; }
.skill-tag-design { background: #3d1e2a; color: #f472b6; }
.skill-tag-ai { background: #3d321e; color: #fbbf24; }
.skill-tag-healthcare { background: #3d2a1e; color: #f87171; }
.skill-card-percent {
  font-size: 1.18rem;
  font-weight: 900;
  color: #fff;
  text-align: right;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.skill-card-level {
  font-size: 0.92rem;
  font-weight: 700;
  color: #bfc4d6;
  margin-top: -2px;
  margin-left: 0.2em;
  display: block;
}
.skill-card-bar-wrap {
  width: 100%;
  height: 10px;
  background: #23263a;
  border-radius: 8px;
  margin-top: 0.2rem;
  overflow: hidden;
}
.skill-card-bar {
  height: 10px;
  border-radius: 8px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skill-bar-backend { background: linear-gradient(90deg, #22c55e 60%, #4f8cff 100%); }
.skill-bar-frontend { background: linear-gradient(90deg, #60a5fa 60%, #4f8cff 100%); }
.skill-bar-database { background: linear-gradient(90deg, #a78bfa 60%, #4f8cff 100%); }
.skill-bar-design { background: linear-gradient(90deg, #f472b6 60%, #4f8cff 100%); }
.skill-bar-ai { background: linear-gradient(90deg, #fbbf24 60%, #4f8cff 100%); }
.skill-bar-healthcare { background: linear-gradient(90deg, #f87171 60%, #4f8cff 100%); }

@media (max-width: 600px) {
  .skills-expertise-container {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .skill-card {
    padding: 1.1rem 0.7rem 1rem 0.7rem;
  }
  .skills-cards-grid {
    gap: 1.1rem;
  }
  .skill-card-title {
    font-size: 1.01rem;
  }
  .skill-card-percent {
    font-size: 1.01rem;
  }
}

.skills-expertise-tag--green { background: #1e3a2a; color: #4ade80; border-color: #4ade80; }
.skills-expertise-tag--blue { background: #1e2a3d; color: #60a5fa; border-color: #60a5fa; }
.skills-expertise-tag--purple { background: #2a1e3d; color: #a78bfa; border-color: #a78bfa; }
.skills-expertise-tag--pink { background: #3d1e2a; color: #f472b6; border-color: #f472b6; }

@keyframes fadeInUpSkillCard {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.skill-card {
  opacity: 0;
  transform: translateY(40px);
}
.skill-card.fade-in-up {
  animation: fadeInUpSkillCard 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.skill-card-bar {
  width: 0;
}
.skill-card-bar.animated {
  transition: width 1.5s ease-in-out;
}



/* Technologies & Tools Section */
.technologies-tools-section {
  width: 100%;
  padding: 3rem 0 2rem 0;
  background: #181926;
  margin-top: 2rem;
}

.technologies-tools-heading {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

.technologies-tools-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem; /* Equal left and right padding */
  border: 3px solid #22c55e;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center; /* Center cards in their columns */
}

@media (max-width: 900px) {
  .technologies-tools-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 1.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .technologies-tools-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  
  .technologies-tools-heading {
    font-size: 1.3rem;
  }
  
  .technologies-tools-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 1rem;
  }
  
  .tech-tool-card {
    padding: 0.8rem;
    min-height: 80px;
    max-width: 100px;
  }
  
  .tech-tool-icon svg {
    max-width: 36px;
    max-height: 36px;
  }
  
  .tech-tool-name {
    font-size: 0.7rem;
  }
  
  .tech-tool-category {
    font-size: 0.6rem;
  }
}

.tech-tool-card {
  background: #1b233d;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(34, 197, 94, 0.2);
  aspect-ratio: 1;
  min-height: 80px;
  max-width: 120px;
  position: relative;
}

.tech-tool-card::before,
.tech-tool-card::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #6b7280;
  border-radius: 50%;
}

.tech-tool-card::before {
  top: 12px;
  right: 12px;
}

.tech-tool-card::after {
  bottom: 12px;
  left: 12px;
}

.tech-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.tech-tool-icon {
  margin-bottom: 0.5rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.tech-tool-icon svg {
  width: 100%;
  height: auto;
  max-width: 48px;
  max-height: 48px;
}

.tech-tool-name {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.tech-tool-category {
  color: #6b7280;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category-specific colors */
.tech-tool-card:nth-child(1) .tech-tool-category {
  color: #0ea5e9; /* Docker - Blue */
}

.tech-tool-card:nth-child(2) .tech-tool-category,
.tech-tool-card:nth-child(6) .tech-tool-category {
  color: #10b981; /* AI - Green */
}

.tech-tool-card:nth-child(3) .tech-tool-category {
  color: #8b5cf6; /* Automation - Purple */
}

.tech-tool-card:nth-child(4) .tech-tool-category {
  color: #f59e0b; /* WordPress - Orange */
}

.tech-tool-card:nth-child(5) .tech-tool-category {
  color: #3b82f6; /* Supabase - Blue */
}

.tech-tool-card:nth-child(7) .tech-tool-category {
  color: #ef4444; /* Postman - Red */
}

.tech-tool-card:nth-child(8) .tech-tool-category,
.tech-tool-card:nth-child(10) .tech-tool-category,
.tech-tool-card:nth-child(12) .tech-tool-category {
  color: #f472b6; /* Design - Pink */
}

.tech-tool-card:nth-child(9) .tech-tool-category {
  color: #6b7280; /* GitHub - Grey */
}

.tech-tool-card:nth-child(11) .tech-tool-category {
  color: #06b6d4; /* VSCode - Cyan */
}

/* Work Experience Section */
.work-experience-section {
  width: 100%;
  padding: 4rem 0;
  background: #181926;
  margin-top: 2rem;
}

.work-experience-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.work-experience-heading {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-experience-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.work-experience-card {
  background: #1b233d;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.work-experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-experience-card:hover::before {
  opacity: 1;
}

.work-experience-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.work-experience-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.work-experience-icon--design {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.work-experience-info {
  flex: 1;
  min-width: 0;
}

.work-experience-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.work-experience-company {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.work-experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.work-experience-date,
.work-experience-location {
  display: flex;
  align-items: center;
}

.work-experience-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 0;
  right: 0;
}

.work-experience-tag--fulltime {
  background: #22c55e;
  color: #fff;
}

.work-experience-tag--remote {
  background: #fff;
  color: #1f2937;
}

.work-experience-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.work-experience-technologies {
  margin-bottom: 1.5rem;
}

.work-experience-tech-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.work-experience-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.work-experience-tech-tag {
  padding: 0.375rem 0.75rem;
  background: #374151;
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.2);
  transition: all 0.3s ease;
}

.work-experience-tech-tag:hover {
  background: #4b5563;
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-1px);
}

.work-experience-link {
  display: inline-flex;
  align-items: center;
  color: #22c55e;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.work-experience-link:hover {
  color: #16a34a;
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .work-experience-section {
    padding: 3rem 0;
  }
  
  .work-experience-container {
    padding: 0 1rem;
  }
  
  .work-experience-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .work-experience-card {
    padding: 1.5rem;
  }
  
  .work-experience-header {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .work-experience-icon {
    width: 50px;
    height: 50px;
  }
  
  .work-experience-title {
    font-size: 1.25rem;
  }
  
  .work-experience-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .work-experience-tag {
    position: static;
    align-self: flex-start;
    margin-top: 0.5rem;
  }
  
  .work-experience-tech-tags {
    gap: 0.375rem;
  }
  
  .work-experience-tech-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.625rem;
  }
}

@media (max-width: 480px) {
  .work-experience-card {
    padding: 1.25rem;
  }
  
  .work-experience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .work-experience-icon {
    width: 45px;
    height: 45px;
  }
  
  .work-experience-title {
    font-size: 1.125rem;
  }
  
  .work-experience-description {
    font-size: 0.875rem;
  }
}

/* Journey Call to Action Container */
.journey-cta-container {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid #22c55e;
  border-radius: 12px;
  text-align: center;
}

.journey-cta-heading {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.journey-cta-subheading {
  font-size: 1.1rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.journey-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.journey-cta-btn {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.journey-cta-btn--resume {
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.journey-cta-btn--resume:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.journey-cta-btn--contact {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.journey-cta-btn--contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
  .journey-cta-container {
    margin-top: 1.5rem;
    padding: 1.25rem 1rem;
  }
  
  .journey-cta-heading {
    font-size: 1.8rem;
  }
  
  .journey-cta-subheading {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .journey-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .journey-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Contact Section */
.contact-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
  padding: 4rem 0;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  animation: float 6s ease-in-out infinite;
}

.floating-element--1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element--2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element--3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.contact-tagline {
  font-size: 1.2rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-welcome-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-welcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.welcome-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.welcome-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.welcome-subtitle {
  font-size: 1rem;
  color: #a855f7;
  margin-bottom: 1rem;
  font-weight: 600;
}

.welcome-description {
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-method-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.contact-method-icon--email {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-method-icon--phone {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-method-icon--whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-method-icon--linkedin {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.contact-method-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-method-value {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 0.25rem;
  word-break: break-all;
}

.contact-method-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Location Card */
.contact-location-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.location-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.location-value {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 0.25rem;
}

.location-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Availability Card */
.contact-availability-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-availability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.availability-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.availability-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.availability-schedule {
  margin-bottom: 1rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.schedule-day {
  color: #a1a1aa;
}

.schedule-time {
  color: #fff;
  font-weight: 500;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-text {
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
}

/* Action Buttons */
.contact-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-action-btn--schedule {
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  color: white;
}

.contact-action-btn--schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.contact-action-btn--chat {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.contact-action-btn--chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* Contact Form Side */
.contact-form-side {
  position: sticky;
  top: 2rem;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-form-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6b7280;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.form-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #a1a1aa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-content {
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-side {
    position: static;
  }
  
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-action-buttons {
    flex-direction: column;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-title {
    font-size: 1.4rem;
  }
  
  .contact-tagline {
    font-size: 1rem;
  }
  
  .contact-welcome-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-method-card,
  .contact-location-card,
  .contact-availability-card {
    padding: 1rem;
  }
  
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  border-top: 1px solid rgba(79, 140, 255, 0.1);
  padding: 4rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 140, 255, 0.3) 50%, transparent 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-name {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.footer-description {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(79, 140, 255, 0.1);
  border: 1px solid rgba(79, 140, 255, 0.2);
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(79, 140, 255, 0.2);
  border-color: rgba(79, 140, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.3);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
  border-radius: 1px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-nav-link:hover {
  color: #fff;
  padding-left: 1rem;
}

.footer-nav-link:hover::before {
  width: 0.75rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(79, 140, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #fff;
}

.footer-back-to-top {
  display: flex;
  align-items: center;
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(79, 140, 255, 0.2);
  border-radius: 12px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-color: rgba(79, 140, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 1.5rem 0;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-top {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .footer-name {
    font-size: 1.5rem;
  }
  
  /* Mobile navigation adjustments */
  .main-nav {
    padding: 5rem 1.5rem 2rem 1.5rem;
    gap: 1.5rem;
    max-width: 300px;
  }
  
  .main-nav a {
    font-size: 1.1rem;
    padding: 0.6rem 0;
    width: 100%;
  }
  
  .main-nav svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-social {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .back-to-top-btn {
    width: 40px;
    height: 40px;
  }
  
  .footer-name {
    font-size: 1.3rem;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Up Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Initial state for animated elements */
.tech-tool-card,
.work-experience-card,
.contact-method-card,
.contact-welcome-card,
.contact-location-card,
.contact-availability-card,
.contact-form-card,
.footer-brand,
.footer-column {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tech-tool-card.fade-in-up,
.work-experience-card.fade-in-up,
.contact-method-card.fade-in-up,
.contact-welcome-card.fade-in-up,
.contact-location-card.fade-in-up,
.contact-availability-card.fade-in-up,
.contact-form-card.fade-in-up,
.footer-brand.fade-in-up,
.footer-column.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for better visual effect */
.tech-tool-card:nth-child(1) { transition-delay: 0.1s; }
.tech-tool-card:nth-child(2) { transition-delay: 0.2s; }
.tech-tool-card:nth-child(3) { transition-delay: 0.3s; }
.tech-tool-card:nth-child(4) { transition-delay: 0.4s; }
.tech-tool-card:nth-child(5) { transition-delay: 0.5s; }
.tech-tool-card:nth-child(6) { transition-delay: 0.6s; }
.tech-tool-card:nth-child(7) { transition-delay: 0.7s; }
.tech-tool-card:nth-child(8) { transition-delay: 0.8s; }
.tech-tool-card:nth-child(9) { transition-delay: 0.9s; }
.tech-tool-card:nth-child(10) { transition-delay: 1.0s; }
.tech-tool-card:nth-child(11) { transition-delay: 1.1s; }
.tech-tool-card:nth-child(12) { transition-delay: 1.2s; }

.work-experience-card:nth-child(1) { transition-delay: 0.1s; }
.work-experience-card:nth-child(2) { transition-delay: 0.2s; }
.work-experience-card:nth-child(3) { transition-delay: 0.3s; }

.contact-method-card:nth-child(1) { transition-delay: 0.1s; }
.contact-method-card:nth-child(2) { transition-delay: 0.2s; }
.contact-method-card:nth-child(3) { transition-delay: 0.3s; }
.contact-method-card:nth-child(4) { transition-delay: 0.4s; }

.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }


@media (max-width: 600px) {
  /* Hide the tech row on mobile */
  .project-card-tech-row {
    display: none;
  }

  /* Shorten the description text on mobile */
  .project-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
 

@media (max-width: 400px) {
  /* Make description only 1 line */
  .project-card-desc {
    -webkit-line-clamp: 1;
    font-size: 0.9rem;
  }

  /* Reduce spacing around content */
  .project-card-content, 
  .project-card-footer {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  /* Reduce image height slightly */
  .project-card-img {
    height: 120px;
  }

  /* Smaller button text */
  .project-card-btn {
    font-size: 0.85rem;
    padding: 0.4em 0.6em;
  }
}
