/* General Overview Styles */
:root {
  --raven: #0a0908;
  --petrol: #22333b;
  --mountain: #eae0d5;
  --semolina: #c6ac8f;
  --volcanic: #5e503f;
  --jet: #333533;
  --night: #242423;
  --sun: #f5cb5c;
  --eden: #e8eddf;
  --olympus: #cfdbd5;
  --blue: oklab(47% -0.02 -0.24);
  --pastel-green: #76e05e;
  /* #16DB65 for okgreen */
  --okgreen: oklab(78% -0.18 0.11);
  --tea-green: #e6fae1;
  --white: rgb(252, 248, 248);
  /* "Montserrat",  */
  --main-font: "Inter", Verdana, sans-serif;
  --font-color: oklch(0.707 0.022 261.325);
  --main-font-spacing: 0.3px;
  /* --secondary-font: "Montserrat", Verdana, sans-serif; */
  --headline-font: "Oswald", "Andalé Mono", monospace;
  --gradient-dark: oklab(17% 0 0);
  /* orange #FF9D00 */
  --gradient-orange: oklab(78% 0.07 0.16);
  --red: oklab(59.254% 0.20908 0.11795);
  --card-hdr-gradient: radial-gradient(
    farthest-corner circle at 50% 101% in oklab,
    oklab(36% 0.5 0.16) 0%,
    5%,
    oklab(17% 0 0) 65% 65%
  );
  --card-sdr-gradient: radial-gradient(
    farthest-corner circle at 50% 101%,
    #e20000 0%,
    5%,
    #0f0f0f 65% 65%
  );
  --hdr-gradient: radial-gradient(
    farthest-corner circle at 50% 103% in oklab,
    oklab(19% 0 0) 0%,
    39%,
    oklab(17% 0 0) 100% 97%
  );
  --sdr-gradient: radial-gradient(
    farthest-corner circle at 50% 103%,
    #141414 0%,
    39%,
    #0f0f0f 100% 97%
  );

  --gradient: var(--sdr-gradient);
  --border-radius: 8px;
  --card-gradient: var(--card-sdr-gradient);
}

* {
  box-sizing: border-box;
}

.content {
  padding-bottom: 10rem;
}

.spacer {
  padding-bottom: 10rem;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overflow-x: hidden;
}

* {
  /* outline: 1px solid red !important; */
  /* margin: 0 !important;
      padding: 0 !important; */
}

/* oswald-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src:
    local(""),
    url("/assets/fonts/oswald-v56-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/oswald-v56-latin-regular.woff2") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* oswald-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 700;
  src:
    local(""),
    url("/assets/fonts/oswald-v56-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/oswald-v56-latin-700.woff2") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src:
    url(),
    url("/assets/fonts/montserrat-v30-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/montserrat-v30-latin-regular.woff2") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src:
    url(),
    url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff");
}

body {
  background: var(--gradient);
}

.emphasis-orange {
  color: var(--gradient-orange);
}

.emphasis-red {
  color: var(--red);
}

.emphasis-green {
  color: var(--okgreen);
}

body {
  background-color: var(--mountain);
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

/* Sidebar Styles */
.sidebar {
  width: 250px;
  background-color: rgb(0, 0, 0);
  padding: 2rem 1rem;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  border-right: 1px solid #181818;
  font-family: var(--main-font);
}

.sidebar-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #334155;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #94a3b8;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-item:hover {
  /* background-color: #334155; */
  border: 1px solid rgb(86, 86, 86);
  color: #e2e8f0;
}

.nav-item.active {
  border: 1px solid #00ff80;
  /* background-color: #7c3aed; */
  color: white;
}

.main-content {
  margin-left: 250px; /* Same as sidebar width */
  padding: 2rem;
  flex: 1;
  width: calc(100% - 250px);
}

.floating-object {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  filter: blur(40px);
  opacity: 0.15;
}

.floating-object:nth-child(1) {
  bottom: 25%;
  left: 50%;
  background: linear-gradient(45deg, #48dbfb, #0abde3);
  animation-delay: 2s;
}

.floating-object:nth-child(2) {
  bottom: 38%;
  left: 46%;
  background: linear-gradient(45deg, #ee5a6f, #f368e0);
  animation-delay: 4s;
}

.floating-object:nth-child(3) {
  bottom: 30%;
  left: 42%;
  background: linear-gradient(45deg, #feef45, #f1f375);
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-40px, -50px) scale(0.9);
  }
}

h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.header {
  display: flex;
  flex-direction: row;
}

.header-title {
  font-family: var(--main-font);
  color: white;
  padding: 1rem;
  font-size: 20px;
}

.sidebar-title {
  font-family: var(--main-font);
  padding: 1rem;
  font-size: 24px;
  /* color: #00ff80; */
  background: linear-gradient(
    270deg,
    rgba(168, 255, 228, 1) 0%,
    rgba(0, 255, 128, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
  min-height: 100vh;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-top: 15rem;
  font-family: var(--main-font);
  color: white;
}

.hero-title,
.hero-subtitle {
  font-weight: 600;
  font-size: 60px;
  color: white;
  /* line-height: 60px; */
  letter-spacing: -1.5px;
}
.hero-subtitle {
}

.about-me-title,
.portfolio-showcase-title,
.hero-subtitle,
.header-title,
.exp-title {
  background: linear-gradient(
    270deg,
    rgba(168, 255, 228, 1) 0%,
    rgba(0, 255, 128, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
}

.hero-description {
  color: var(--font-color);
}

.hero-links {
  display: flex;
  flex-direction: row;
  /* padding-top: 20px; */
  font-family: var(--main-font);
  cursor: pointer;
  transition: 0.3s all ease;
  border: 1px solid #00ff80;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-social {
  padding-top: 0.75rem;
  padding-left: 0.5rem;
}

.about-me-link {
  border-radius: 0.75rem;
  padding: 5px 15px;
  cursor: pointer;
  transition: 0.3s all ease;
  border: 1px solid #00ff80;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* border: 1px solid rgba(148, 163, 184, 0.2); */
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.hero-btn:hover,
.about-me-link:hover {
  background: #00ff80;
  color: black;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  text-align: center;
  color: white;
  height: auto;
  padding: 1rem;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-transform: uppercase;
}
.hero-right-btm {
  font-size: 4rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  padding-left: 0.5rem;
  gap: 0.5rem;
  text-align: left;
}
.hero-left button {
  width: auto;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: none;
  margin-right: auto;
}

.hero-info img {
  border-radius: 10px;
}

.about-me {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 10rem;
  /* padding-right: 10rem; */
  align-items: center;
  place-items: center;
  height: 100vh;
  font-family: var(--main-font);
}
.about-me-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-me-subtitle {
  color: oklch(0.707 0.022 261.325);
  text-align: center;
  font-size: 1.2rem;
  padding-top: 1rem;
  line-height: 24px;
}

.about-me-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1rem;
}
.about-me-link {
  color: white;
  text-align: center;
  border-radius: 0.5rem;
  padding: 4px 15px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.about-me-photo img {
  width: 250px;
  border-radius: 0.5rem;
}

.about-me-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: white;
  text-align: left;
  padding: 1rem;
  gap: 1rem;
}
.about-me-content-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.portfolio-showcase {
  display: grid;
  grid-template-rows: auto 1fr;
  color: white;
  text-align: center;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
  font-family: var(--main-font);
}

.portfolio-showcase-subtitle {
  padding-bottom: 1rem;
}

.portfolio-showcase-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding-top: 10px;
  /* padding-left: 10rem;
  padding-right: 10rem; */
}

.portfolio-showcase-example {
  opacity: 0;
  transition: all 0.6s ease-out;
  flex: 1;
  transform: transition all 0.3s ease;
}
.portfolio-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding-left: 24px;
  padding-right: 24px;
  font-family: var(--main-font);
  flex: 1;
}
.portfolio-title {
  padding-top: 10px;
}
.portfolio-tech {
  padding-bottom: 10px;
}
.portfolio-title,
.portfolio-tech {
  background: linear-gradient(
    270deg,
    rgba(168, 255, 228, 1) 0%,
    rgba(0, 255, 128, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.portfolio-desc,
.portfolio-link {
  color: var(--font-color);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 10px;
  width: 400px;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.portfolio-card img {
  border-radius: 20px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.portfolio-info,
.portfolio-link {
  /* border: 1px solid red; */
}
.portfolio-link {
  text-decoration: none;
  text-align: center;
  color: var(--font-color);
  border: 1px solid #00ff80;
  width: 60px;
  padding: 2px 6px;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.portfolio-link:hover {
  background-color: #00ff80;
  color: black;
}
.portfolio-tech {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.tech {
  border: 1px solid rgb(19, 13, 42);
  border-radius: 0.5rem;
  padding: 4px 6px;
  background-color: rgb(24, 24, 24);
  transition: all 0.3s ease;
}

.tech:hover {
  opacity: 0.9;
  background-color: rgb(33, 33, 33);
}

.portfolio-card:hover {
  border-color: #00ff80;
  box-shadow: 0 0 30px rgba(103, 66, 251, 0.3);
  transform: translateY(-5px);
}

/* Animation states */
.portfolio-showcase-example:nth-child(1) {
  transform: translate(-100px, 100px);
}

.portfolio-showcase-example:nth-child(2) {
  transform: translateY(100px);
}

.portfolio-showcase-example:nth-child(3) {
  transform: translate(100px, 100px);
}

.portfolio-showcase-example.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #00ff80;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-family: var(--main-font);
  border-radius: 1rem;
  gap: 16px;
  width: 400px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
}

.contact-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  gap: 5px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px;
  text-align: left;
}
.contact-title {
  font-weight: 700;
  margin-right: auto;
  background: linear-gradient(
    270deg,
    rgba(168, 255, 228, 1) 0%,
    rgba(0, 255, 128, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.contact-subtitle {
  color: var(--font-color);
}

.form-group {
  width: 80%;
}

input[type="text"],
input[type="email"],
input[type="message"],
textarea {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  padding: 4px 8px;
  border: none;
  background-color: rgba(128, 128, 128, 0.3);
  opacity: 0.3;
}
input[type="message"],
textarea {
  height: 80px;
}

.contact-submit {
  width: 80%;
  text-align: center;
  font-family: var(--main-font);
  max-width: 400px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(0, 0, 0);
  border: 1px solid #00ff80;
  border-radius: 6px;
  background-color: #00ff80;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit:hover {
  scale: 0.95;
}

input::placeholder,
textarea::placeholder {
  color: #ffffff; /* lighter color for placeholder */
  opacity: 1;
}
.divider {
  width: 80%;
  height: 1px;
  background-color: #434343;
  margin: 10px 0;
}

.social-link-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  justify-content: flex-start;
  width: 80%;
  text-align: left;
  font-family: var(--main-font);
  max-width: 400px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--font-color);
  border: 1px solid #00ff80;
  border-radius: 6px;
  text-decoration: none;
}

.social-link {
  text-decoration: none;
  color: white;
}

.experience-outer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 60px;
}
.timeline-line {
  position: absolute;
  left: 240px;
  top: 100px;
  bottom: 0;
  width: 2px;
  background: rgb(182, 182, 182);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #00ff80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
  transition: top 0.8s ease;
  top: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 255, 128, 0.7),
      0 0 0 4px rgba(0, 255, 128, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(0, 255, 128, 0),
      0 0 0 4px rgba(0, 255, 128, 0.4);
  }
}

.experience-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  font-family: var(--main-font);
  color: white;
}

.experience-header {
  text-align: center;
  font-family: var(--main-font);
  font-weight: 700;
  color: white;
}

.exp-card {
  width: 1000px;
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.date-info {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1rem;
  border: 1px solid #00ff80;
  /* background: rgba(30, 41, 59, 0.6); */
  color: #00ff80;
  border-radius: 1rem;
  padding: 2px 10px;
  font-size: 14px;
}
.date-info img {
  width: 20px;
}
/* .type, .date-info{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
} */
/* .date{
  border: 1px solid #00ff80;
  color: #00ff80;
  border-radius: 1rem;
  padding: 2px 10px;
  font-size: 14px;
} */
.type {
  position: absolute;
  top: 12px;
  right: 10px;
  background: rgba(73, 85, 104, 0.8);
  padding-top: 60px;
  border-radius: 1rem;
  padding: 2px 8px;
  font-size: 12px;
  margin-top: 28px;
  font-weight: 200;
  color: white;
}
.exp-jobtitle-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}
.jobtitle {
  padding-left: 10px;
}

.exp-location-type {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

.company-info {
  display: flex;
  flex-direction: row;
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  align-items: center;
  text-align: center;
  padding-top: 2px;
  justify-content: left;
  gap: 8px;
}
.company-info img {
  width: 16px;
}
.company-info,
.exp-intro {
  color: var(--font-color);
}
.exp-intro {
  padding-top: 10px;
}

.company-info,
.type,
.exp-intro {
  padding-left: 10px;
}

.key-achievements {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--main-font);
  color: var(--font-color);
  font-size: 16px;
}

.exp-technology-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
  color: #00ff80;
}
.exp-tech {
  padding: 2px 6px;
  background-color: rgb(35, 37, 50);
  border-radius: 1rem;
  padding: 2px 10px;
  border: 1px solid #00ff80;
  font-size: 14px;
}


/* Desktop container utility class */
/* .container {
  margin-left: auto;
  margin-right: auto;
} */

@media (max-width: 1536px) {
  /* .header.container {
    max-width: 1280px;
  } */
   /* .container{
    padding-left: 40rem;
    padding-right: 10rem;
   } */
    
}

@media (max-width: 1280px) {
  /* .header.container {
    max-width: 1024px;
  } */
}

@media (max-width: 1024px) {
  /* .header.container {
    max-width: 768px;
  } */
   .sidebar{
    display: none;
   }
   .hero{
    padding-left: 0;
    padding-right: 0;
    /* padding: 0; */
    min-height: 0;
   }
   .main-content {
  margin-left: 0; 
  padding: 2rem;
  flex: 1;
  width: 100%;
}
.about-me-photo{
  display: none;
}
.about-me{
  display: flex;
  padding: 0;
}
.hero{
  display: flex;
  align-items: center;
  justify-content: center;
}


.portfolio-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  /* padding-left: 10rem;
  padding-right: 10rem; */
}
.portfolio-card{
  width: 100%;
  
}
.portfolio-showcase{
  padding: 0;
}
.exp-card {
  width: 100%;
}
.timeline-line{
  display: none;
}
.contact-container{
  width: 100%;
}
.contact-heading{
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
}
  
}

@media (max-width: 768px) {
  /* .header.container {
    max-width: 640px;
  } */

  
}

@media (max-width: 640px) {
  /* .header.container {
    max-width: 475px;
  } */
   .exp-technology-container{
    display: none;
   }
   .date-info{
    display: none;
   }
   .type{
    display: none;
   }
 
}

@media (max-width: 475px) {
  header.container {
    width: 100%;
  }
  .hero-title{
    font-size: 40px;
  }
  
}