@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

/* ===== Theme tokens =====
   Refined palette: warm charcoal (dark) + warm ivory (light)
   Accent system: terracotta (#C26A4D) primary + deep teal (#1F5C5E) secondary
*/
:root {
  /* Page */
  --bg-page: #0c0d11;
  --header-bg: rgba(12, 13, 17, 0.82);
  --header-border: rgba(255, 255, 255, 0.05);
  --logo-color: #f4f1ea;
  --nav-link: #c4c0b6;

  /* Text */
  --text-strong: #f4f1ea;
  --text-body: #c4c0b6;
  --text-muted: #8a877e;

  /* Surfaces (glass cards, pills) */
  --surface-bg: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  --surface-border: rgba(255,255,255,0.07);
  --surface-hover-bg: rgba(255,255,255,0.06);
  --pill-bg: rgba(255,255,255,0.035);
  --pill-bg-strong: rgba(255,255,255,0.06);
  --pill-border: rgba(255,255,255,0.09);
  --grid-dot: rgba(255,255,255,0.035);
  --hr-dashed: rgba(255,255,255,0.08);
  --shadow-card: 0 1.2rem 2.6rem rgba(0,0,0,0.45);
  --shadow-card-hover: 0 2rem 4rem rgba(0,0,0,0.6);

  /* Section gradients - cohesive charcoal base, accent tints */
  --hero-bg:
    radial-gradient(ellipse at 25% 30%, rgba(194,106,77,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(34,211,238,0.07), transparent 55%),
    linear-gradient(to bottom, #11131a 0%, #0c0d11 100%);
  --about-bg:
    radial-gradient(ellipse at 80% 0%, rgba(194,106,77,0.08), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(34,211,238,0.05), transparent 55%),
    linear-gradient(to bottom, #0c0d11 0%, #0e1015 100%);
  --skills-bg:
    radial-gradient(ellipse at 0% 0%, rgba(34,211,238,0.07), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(194,106,77,0.09), transparent 50%),
    linear-gradient(to bottom, #0e1015 0%, #0c0d11 50%, #0e1015 100%);
  --education-bg:
    radial-gradient(ellipse at 100% 0%, rgba(207,185,145,0.10), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(220,80,80,0.04), transparent 50%),
    linear-gradient(to bottom, #0c0d11 0%, #0e1015 50%, #0c0d11 100%);
  --work-bg:
    radial-gradient(ellipse at 80% 0%, rgba(34,211,238,0.07), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(168,85,247,0.04), transparent 55%),
    linear-gradient(to bottom, #0c0d11 0%, #0e1015 50%, #0c0d11 100%);
  --experience-bg:
    radial-gradient(ellipse at 20% 0%, rgba(194,106,77,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.06), transparent 50%),
    linear-gradient(to bottom, #0e1015 0%, #0c0d11 50%, #0e1015 100%);

  --footer-bg: #07080b;
}

[data-theme="light"] {
  /* Page */
  --bg-page: #faf7f1;
  --header-bg: rgba(250, 247, 241, 0.88);
  --header-border: rgba(20, 18, 15, 0.08);
  --logo-color: #1a1a1f;
  --nav-link: #4a4842;

  /* Text */
  --text-strong: #1a1a1f;
  --text-body: #4a4842;
  --text-muted: #7a7770;

  /* Surfaces */
  --surface-bg: linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  --surface-border: rgba(20,18,15,0.09);
  --surface-hover-bg: rgba(20,18,15,0.035);
  --pill-bg: rgba(20,18,15,0.035);
  --pill-bg-strong: rgba(20,18,15,0.055);
  --pill-border: rgba(20,18,15,0.10);
  --grid-dot: rgba(20,18,15,0.05);
  --hr-dashed: rgba(20,18,15,0.10);
  --shadow-card: 0 0.9rem 2rem rgba(20,18,15,0.07);
  --shadow-card-hover: 0 1.4rem 3rem rgba(20,18,15,0.12);

  --hero-bg:
    radial-gradient(ellipse at 25% 30%, rgba(194,106,77,0.14), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(34,211,238,0.07), transparent 55%),
    linear-gradient(to bottom, #faf7f1 0%, #f3eee5 100%);
  --about-bg:
    radial-gradient(ellipse at 80% 0%, rgba(194,106,77,0.09), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(34,211,238,0.06), transparent 55%),
    linear-gradient(to bottom, #f5f0e7 0%, #faf7f1 100%);
  --skills-bg:
    radial-gradient(ellipse at 0% 0%, rgba(34,211,238,0.08), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(194,106,77,0.10), transparent 50%),
    linear-gradient(to bottom, #faf7f1 0%, #f3eee5 50%, #faf7f1 100%);
  --education-bg:
    radial-gradient(ellipse at 100% 0%, rgba(207,185,145,0.20), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(220,80,80,0.05), transparent 50%),
    linear-gradient(to bottom, #f5f0e7 0%, #faf7f1 50%, #f5f0e7 100%);
  --work-bg:
    radial-gradient(ellipse at 80% 0%, rgba(34,211,238,0.08), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(168,85,247,0.05), transparent 55%),
    linear-gradient(to bottom, #faf7f1 0%, #f3eee5 50%, #faf7f1 100%);
  --experience-bg:
    radial-gradient(ellipse at 20% 0%, rgba(194,106,77,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.06), transparent 50%),
    linear-gradient(to bottom, #f5f0e7 0%, #faf7f1 50%, #f5f0e7 100%);

  --footer-bg: #1a1a1f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: var(--bg-page);
  color: var(--text-body);
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  cursor: none;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* Custom cursor */
body {
  cursor: none;
}

/* Glowing custom cursor dot */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #C26A4D;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(194, 106, 77, 0.6), inset 0 0 10px rgba(194, 106, 77, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-out, opacity 0.3s ease;
  opacity: 1;
}

.cursor::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #C26A4D;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px #C26A4D;
}

/* Cursor glow effect on interactive elements */
.cursor.active {
  width: 30px;
  height: 30px;
  border-color: #22D3EE;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.8), inset 0 0 15px rgba(34, 211, 238, 0.4);
}

/* Hide default cursor on interactive elements */
a, button, .btn, input, textarea, [role="button"], [onclick] {
  cursor: none;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: var(--text-strong);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: #C26A4D;
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--logo-color);
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #C26A4D;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: var(--nav-link);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #C26A4D;
  border-bottom: 0.2rem solid #C26A4D;
  padding: 0.5rem 0;
}

/* Theme toggle button */
.theme-toggle-li { margin-left: 1.5rem; }
.theme-toggle {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--text-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  position: relative;
}
.theme-toggle:hover {
  background: var(--surface-hover-bg);
  color: #C26A4D;
  border-color: #C26A4D;
  transform: rotate(15deg);
}
.theme-toggle .theme-icon-sun { display: none; }
.theme-toggle .theme-icon-moon { display: inline; }
[data-theme="light"] .theme-toggle .theme-icon-sun { display: inline; }
[data-theme="light"] .theme-toggle .theme-icon-moon { display: none; }
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: #ffffff;
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  background: var(--hero-bg);
}
.home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-strong);
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #C26A4D;
}
.home .content p {
  font-size: 2.5rem;
  color: var(--text-body);
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: #22D3EE;
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* about section starts */
.about {
  position: relative;
  overflow: hidden;
  background: var(--about-bg);
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.about .row { position: relative; z-index: 1; }
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: var(--text-strong);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #C26A4D;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 500;
  text-transform: none;
  color: var(--text-body);
  line-height: 1.7;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #011aff;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/* about section ends */

/* ===== Skills section (redesigned) ===== */
.skills {
  min-height: auto;
  background: var(--skills-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}
.skills::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.skills h2.heading {
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}
.skills .heading i { color: #C26A4D; margin-right: 0.8rem; }
.skills .heading span { color: rgb(255, 230, 0); }

.skills-intro {
  text-align: center;
  color: var(--text-body);
  font-size: 1.55rem;
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  max-width: 60rem;
  margin: 0 auto 4.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.skill-card {
  position: relative;
  background: var(--surface-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--surface-border);
  border-radius: 1.6rem;
  padding: 2.4rem 2.4rem 2.6rem;
  box-shadow: var(--shadow-card);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
  overflow: hidden;
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.skill-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px var(--accent);
}

.skill-card-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px dashed var(--hr-dashed);
}
.skill-card-icon {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 1rem;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), var(--accent) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 0 18px var(--accent);
  flex-shrink: 0;
}
.skill-card-head h3 {
  font-size: 1.85rem;
  color: var(--text-strong);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.skill-card-head p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 500;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.1rem;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 0.7rem;
  color: var(--text-body);
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  cursor: default;
}
.skill-chip img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(1);
  opacity: 0.92;
}
[data-theme="light"] .skill-chip img {
  filter: brightness(0);
  opacity: 0.55;
}
[data-theme="light"] .skill-chip:hover img {
  opacity: 0.8;
}
.skill-chip i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 1.8rem;
  text-align: center;
}
.skill-chip:hover {
  background: var(--surface-hover-bg);
  border-color: var(--accent);
  color: var(--text-strong);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .skills-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  .skill-card { padding: 2rem 1.6rem 2rem; }
  .skill-card-icon { width: 4.6rem; height: 4.6rem; font-size: 1.9rem; }
  .skill-card-head h3 { font-size: 1.65rem; }
  .skill-chip { font-size: 1.15rem; padding: 0.6rem 0.95rem; }
}
/* skills section ends */

/* ===== Education section (redesigned) ===== */
.education {
  min-height: auto;
  background: var(--education-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}
.education::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.education h2.heading {
  color: var(--text-strong);
  position: relative;
  z-index: 1;
}
.education .heading i { color: #CFB991; margin-right: 0.8rem; }
.education .heading span { color: #CFB991; }

.education-intro {
  text-align: center;
  color: var(--text-body);
  font-size: 1.55rem;
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  max-width: 52rem;
  margin: 0 auto 4.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
  gap: 2.4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.edu-card {
  position: relative;
  background: var(--surface-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--surface-border);
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
}
.edu-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px var(--accent);
}

.edu-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem 2.2rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 25%, transparent), transparent 70%),
    linear-gradient(180deg, var(--pill-bg-strong), rgba(255,255,255,0));
  border-bottom: 1px solid var(--surface-border);
  overflow: hidden;
}
.edu-head::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent), transparent 60%);
  pointer-events: none;
  opacity: 0.55;
}
.edu-logo-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  height: 6.4rem;
  padding: 0.9rem 1.4rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.6rem 1.4rem rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.3);
}
.edu-logo {
  display: block;
  height: 4.6rem;
  width: auto;
  max-width: 18rem;
  object-fit: contain;
}
.edu-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.edu-status {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  background: var(--pill-bg);
}
.edu-period {
  font-size: 1.2rem;
  color: var(--text-body);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.edu-body {
  padding: 2rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.edu-degree {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-transform: none;
}
.edu-org {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  margin: 0.2rem 0 0;
  letter-spacing: 0.3px;
}
.edu-loc {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  margin: 0.1rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.edu-loc i { color: var(--accent); font-size: 1.05rem; }

.edu-focus {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: var(--pill-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0.6rem;
}
.edu-focus-label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.edu-focus p {
  font-size: 1.35rem;
  color: var(--text-body);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .edu-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  .edu-degree { font-size: 1.85rem; }
  .edu-head { padding: 1.6rem 1.8rem; }
  .edu-body { padding: 1.6rem 1.8rem 2rem; }
}
/* education section ends */

/* ===== Projects section (redesigned) ===== */
.work {
  background: var(--work-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}
.work::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.work h2.heading {
  color: var(--text-strong);
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.work .heading i { color: #22D3EE; margin-right: 0.8rem; }
.work .heading span { color: rgb(255, 230, 0); }

.proj-intro {
  text-align: center;
  color: var(--text-body);
  font-size: 1.55rem;
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  max-width: 60rem;
  margin: 0 auto 4rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.proj-card {
  position: relative;
  background: var(--surface-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--surface-border);
  border-radius: 1.6rem;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.proj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.6rem;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent, #22D3EE), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity .4s ease;
}
.proj-card:hover {
  transform: translateY(-8px);
  border-color: var(--surface-border);
  box-shadow: var(--shadow-card-hover);
}
.proj-card:hover::before { opacity: 1; }

.proj-cover {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  background: #0a1438;
}
.proj-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: saturate(1.05) brightness(0.92);
}
.proj-card:hover .proj-cover img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(1);
}
.proj-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg-page) 75%, transparent) 0%, color-mix(in srgb, var(--bg-page) 20%, transparent) 50%, transparent 100%);
  pointer-events: none;
}
.proj-cat {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--bg-page) 80%, transparent);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
}
.proj-cat i { font-size: 1rem; }

.proj-body {
  padding: 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.proj-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 0.4rem;
  line-height: 1.25;
  letter-spacing: 0.2px;
}
.proj-org {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  margin: 0 0 1.2rem;
  letter-spacing: 0.3px;
}
.proj-desc {
  font-size: 1.3rem;
  color: var(--text-body);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  flex: 1;
}

.proj-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 1.2rem;
  background: var(--pill-bg);
  border: 1px solid var(--surface-border);
  border-radius: 0.9rem;
}
.proj-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}
.proj-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1;
  text-transform: none;
}
.proj-stat-label {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 500;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--hr-dashed);
}
.proj-tags span {
  font-size: 1.05rem;
  padding: 0.35rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--pill-bg);
  color: var(--accent);
  border: 1px solid var(--pill-border);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.proj-readmore {
  margin-top: 1.4rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.9rem 1.4rem;
  border-radius: 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  letter-spacing: 0.4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.proj-readmore i { font-size: 1rem; transition: transform .25s ease; }
.proj-readmore:hover {
  background: var(--accent);
  color: #060a1f;
}
.proj-readmore:hover i { transform: translateX(4px); }

/* ===== Project modal ===== */
.proj-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.proj-modal[hidden] { display: none; }
.proj-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: projFade .25s ease;
}
.proj-modal-content {
  position: relative;
  width: min(92rem, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #0d1638 0%, #0a1230 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.8rem;
  box-shadow: 0 3rem 6rem rgba(0,0,0,0.6);
  animation: projRise .3s cubic-bezier(.2,.8,.2,1);
  --accent: #22D3EE;
}
.proj-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 1.8rem 1.8rem 0 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 3;
}
@keyframes projFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes projRise {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.proj-modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 4;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.proj-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #060a1f;
  transform: rotate(90deg);
}

.proj-modal-cover {
  position: relative;
  width: 100%;
  height: 28rem;
  overflow: hidden;
  border-radius: 1.8rem 1.8rem 0 0;
  background: #0a1438;
}
.proj-modal-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.proj-modal-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d1638 0%, rgba(13,22,56,0.4) 50%, transparent 100%);
  pointer-events: none;
}
.proj-modal-cover .proj-cat {
  position: absolute;
  bottom: 1.4rem;
  left: 1.6rem;
  z-index: 2;
}

.proj-modal-body {
  padding: 2.4rem 3rem 3rem;
}
.proj-modal-body .proj-title {
  font-size: 2.6rem;
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
.proj-modal-body .proj-org {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  margin: 0 0 1.8rem;
  letter-spacing: 0.3px;
}
.proj-modal-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #d6dcf2;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
}
.proj-modal-desc p { margin: 0 0 1.2rem; }
.proj-modal-desc p:last-child { margin: 0; }

.proj-modal-section { margin-top: 2.4rem; }
.proj-modal-h {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  margin: 0 0 1rem;
  opacity: 0.9;
}
.proj-modal-body .proj-stats {
  margin: 0;
  background: rgba(255,255,255,0.025);
}
.proj-modal-body .proj-tags {
  margin: 0;
  padding: 0;
  border: none;
}

@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  .proj-cover { height: 16rem; }
  .proj-title { font-size: 1.7rem; }
  .proj-stats { grid-template-columns: 1fr; }
  .proj-modal { padding: 0; }
  .proj-modal-content { border-radius: 0; max-height: 100vh; height: 100vh; }
  .proj-modal-content::before { border-radius: 0; }
  .proj-modal-cover { border-radius: 0; height: 22rem; }
  .proj-modal-body { padding: 2rem 1.6rem 2.4rem; }
  .proj-modal-body .proj-title { font-size: 2.1rem; }
}

/* ===== Experience section (redesigned) ===== */
.experience {
  background: var(--experience-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--grid-dot) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.experience h2.heading {
  color: var(--text-strong);
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.experience .heading i {
  color: #C26A4D;
  margin-right: 0.8rem;
}
.experience .heading span {
  color: rgb(219, 136, 26);
}
.experience-intro {
  text-align: center;
  color: var(--text-body);
  font-size: 1.55rem;
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  max-width: 60rem;
  margin: 0 auto 5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.exp-timeline {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
  z-index: 1;
}
.exp-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(194,106,77,0.6) 8%,
    rgba(194,106,77,0.6) 92%,
    transparent 100%);
  transform: translateX(-50%);
}

.exp-card {
  position: relative;
  width: 50%;
  padding: 0 4.5rem 2rem;
  box-sizing: border-box;
}
.exp-card + .exp-card {
  margin-top: -10rem;
}
.exp-card[data-side="right"] {
  margin-left: 50%;
  padding-right: 0;
}
.exp-card[data-side="left"] {
  padding-left: 0;
}

.exp-marker {
  position: absolute;
  top: 1.8rem;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), var(--accent, #C26A4D) 60%);
  border: 3px solid var(--bg-page);
  box-shadow:
    0 0 0 2px var(--accent, #C26A4D),
    0 0 24px var(--accent, #C26A4D),
    0 0 48px rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  transition: transform .4s ease;
}
.exp-card[data-side="right"] .exp-marker {
  left: -2.7rem;
}
.exp-card[data-side="left"] .exp-marker {
  right: -2.7rem;
}
.exp-card:hover .exp-marker {
  transform: scale(1.08) rotate(-6deg);
}

.exp-body {
  position: relative;
  background: var(--surface-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 1.4rem;
  padding: 2.6rem 2.6rem 2.2rem;
  box-shadow: var(--shadow-card);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
  overflow: hidden;
}
.exp-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent, #C26A4D), transparent);
}
.exp-body::after {
  content: '';
  position: absolute;
  top: 2.4rem;
  width: 0; height: 0;
  border: 12px solid transparent;
}
.exp-card[data-side="right"] .exp-body::after {
  left: -12px;
  border-right-color: var(--surface-border);
}
.exp-card[data-side="left"] .exp-body::after {
  right: -12px;
  border-left-color: var(--surface-border);
}
.exp-body:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px var(--accent);
}

.exp-year-tag {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  opacity: 0.85;
}

.exp-header {
  margin-bottom: 1.6rem;
  padding-right: 8rem;
}
.exp-company {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.exp-role {
  font-size: 1.4rem;
  color: var(--accent, #C26A4D);
  font-weight: 600;
  margin: 0.5rem 0 1.1rem;
  text-transform: none;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.3px;
}
.exp-meta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.exp-pill {
  font-size: 1.15rem;
  padding: 0.45rem 1rem;
  background: var(--pill-bg-strong);
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  color: var(--text-body);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.exp-pill i {
  color: var(--accent);
  font-size: 1.05rem;
}

.exp-achievements {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.exp-achievements li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2.4rem;
  font-size: 1.32rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 0.6rem;
  text-transform: none;
  font-family: 'Nunito', sans-serif;
}
.exp-achievements li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.95;
  box-shadow: 0 0 8px var(--accent);
}
.exp-metric {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  padding: 0 0.15rem;
  font-size: 1.4rem;
  letter-spacing: 0.3px;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--hr-dashed);
}
.exp-tags span {
  font-size: 1.05rem;
  padding: 0.35rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--pill-bg);
  color: var(--accent);
  border: 1px solid var(--pill-border);
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.exp-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.exp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #C26A4D, #8C4030);
  color: #1a0738;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Nunito', sans-serif;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 1rem 2rem rgba(194,106,77,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.exp-cta-btn i {
  font-size: 1.3rem;
  transition: transform .3s ease;
}
.exp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.6rem 2.8rem rgba(194,106,77,0.4);
}
.exp-cta-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .exp-timeline { padding: 1rem 1rem 2rem; }
  .exp-timeline::before { left: 2.4rem; }
  .exp-card,
  .exp-card[data-side="right"],
  .exp-card[data-side="left"] {
    width: 100%;
    margin-left: 0;
    padding: 0 0 4rem 5.5rem;
    text-align: left;
  }
  .exp-card + .exp-card { margin-top: 0; }
  .exp-card[data-side="right"] .exp-marker,
  .exp-card[data-side="left"] .exp-marker {
    left: -0.4rem;
    right: auto;
  }
  .exp-card[data-side="right"] .exp-body::after,
  .exp-card[data-side="left"] .exp-body::after {
    left: -12px;
    right: auto;
    border-right-color: rgba(255,255,255,0.08);
    border-left-color: transparent;
  }
  .exp-header { padding-right: 0; }
  .exp-year-tag {
    position: static;
    display: inline-block;
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 480px) {
  .exp-body { padding: 2rem 1.6rem 1.6rem; }
  .exp-company { font-size: 1.85rem; }
  .exp-marker { width: 4.4rem; height: 4.4rem; font-size: 1.6rem; }
  .exp-card[data-side="right"] .exp-marker,
  .exp-card[data-side="left"] .exp-marker {
    left: -0.2rem;
  }
}
/* work section ends */

/* experience section starts */
/*.experience .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #020133;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*circles on timeline*/
/*.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(255, 255, 255);
  border: 4px solid #ff9f55;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #02094b;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
/*.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f68c09;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f68c09;
}
/* arrows pointing left  */
/*.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f68c09;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f68c09 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #f68c09;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.experience .content .desc p {
  font-size: 1.2rem;
}*/
/* view all button */
/*.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #1a047e;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
/*@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #f68c09;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f68c09 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact {
  background: #121213;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
