.profile-pic {
  position: relative;
  max-width:130px;
  max-height:130px;
  width: auto;
  height: auto;
  overflow: hidden;
  /* display: inline-block; */
  
  
  /* background-size: cover;  */
  margin: -31px; 
  margin-left:-7px;
  border: 6px solid rgba(255, 216, 235, 0.729); 
  border-radius: 50% !important;
  animation: gentle-wobble 4s ease-in-out infinite;
}

@keyframes gentle-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(0.5deg); }
  75% { transform: rotate(-0.5deg); }
}

.profile-pic:hover {
  transform: scale(1.02) rotate(3deg);
  box-shadow: 0 6px 20px rgba(244, 194, 194, 0.3);
  animation: playful-spin 0.6s ease-in-out;
}

@keyframes playful-spin {
  0% { transform: scale(1.02) rotate(3deg); }
  50% { transform: scale(1.05) rotate(-2deg); }
  100% { transform: scale(1.02) rotate(3deg); }
}

.profile-pic img {
  width: 100%;
  height: auto;
}

.tracker {
  /* visibility: hidden; */
  position: fixed;
  /* margin-inline-end: auto;  */
  bottom: 0; 
  right: 0;
}

@import url(https://fonts.googleapis.com/css?family=Poiret+One);
.social {
  margin: 0 auto;
  width: auto;
  text-align: inherit;
  /* padding: 10px; */
}

.icon-btn img {
  margin-left: auto;
  width: 50px;
  height: 50px;
  border: 0;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 30px;
  line-height: 70px;
  border-radius: 45px;
  display: inline-block;
  margin: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.github {
  color: black;
}

.linkedin {
  color: #0077b5;
}

.angellist {
  color: grey;
}

.icon-btn:hover {
  transform: scale(1.10) translateY(-5px);
  color: #FFFFFF;
}

.linkedin:hover {
  background-color: #0077b5;
  transform: scale(1.15) translateY(-5px) rotate(5deg);
}

.angellist:hover {
  background-color: grey;
  transform: scale(1.15) translateY(-5px) rotate(-5deg);
}

.github:hover {
  background-color: black;
  transform: scale(1.15) translateY(-5px) rotate(3deg);
}

/* Buttons - Read Me, Contact Us */

.readme {
  position: relative;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 1.5em;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.readme::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.readme:hover{
  color: #b8a9c9;
  background-color: white;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
} 

.readme:hover::before {
  left: 100%;
}

.contactme {
  position: relative;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 1.5em;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.contactme::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.contactme:hover{
  color: #b8a9c9;
  background-color: white;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.contactme:hover::before {
  left: 100%;
}

/* main body */

/* body-color */

body {
  color: #5a5a5a;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #fafafa;
}

/* body {
  color: black;
  font-size: 18px;
} */

/* main a -- links */

/* a {
  color: #009688;
} */

a {
  color: #b8a9c9;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: 0 0 8px rgba(184, 169, 201, 0.4);
}

/* main blockqoute */

/* blockquote {
  border-left: 5px solid #795548;
  color: #795548;
  font-size: 125%;
  font-weight: 400;
  margin: 20px 0;
  padding-left: 1.5rem;
} */

blockquote {
  border-left: 4px solid #f4c2c2;
  background-color: #fef8f8;
  color: #6a6a6a;
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  position: relative;
  transition: transform 0.3s ease;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 60px;
  color: #f4c2c2;
  opacity: 0.3;
  font-family: serif;
}

blockquote:hover {
  transform: translateX(5px);
}

blockquote * {
  font-size: inherit;
  line-height: inherit;
}

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

/* main nav */

nav {
  background-color: white;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  height: 0;
  border-bottom: 1px solid #f0f0f0;
}

/* nav {
  background: rgb(149, 126, 212);
  box-shadow: none;
  height: 0;
} */

nav i {
  padding: 0 15px;
  position: relative;
  top: 5px;
}

/* main */

/* main {
  background: url(../../assets/img/bg.png) repeat;
  padding-left: 190px;
} */

main {
  background: url(../../assets/img/bg.png) repeat;
  padding-left: 190px;
  min-height: 100vh;
}

dl {
  margin-top: 0.5rem;
}

dd {
  display: inline-block;
  font-weight: 500;
  margin-left: 0;
}

dt {
  display: inline-block;
  margin-left: 0.5rem;
}

ul.side-nav {
  width: 190px;
  background-color: white;
}

ul.side-nav li {
  padding: 0;
}

/* ul.side-nav.fixed a {
  box-sizing: content-box;
  color: rgb(48, 122, 207);
  display: block;
  line-height: 100%;
  padding: 10px 0 12px;
} */

ul.side-nav.fixed a {
  box-sizing: content-box;
  color: #b8a9c9;
  display: block;
  line-height: 100%;
  padding: 10px 0 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  position: relative;
}

ul.table-of-contents li.logo a.active, ul.table-of-contents li.logo a:hover {
  border: none;
  font-weight: 200;
}

/* ul.side-nav.fixed li.logo {
  background-color: #fafafa;
  border-bottom: 1px solid #ddd;
  box-sizing: content-box;
  min-height: 90px;
  padding: 30px 30px 40px;
} */

ul.side-nav.fixed li.logo {
  background-color: #fafafa;
  border-bottom: 1px solid #ddd;
  box-sizing: content-box;
  min-height: 90px;
  padding: 30px 30px 40px;
}

ul.side-nav.fixed li.logo a {
  font-weight: 200;
  line-height: 100%;
  color: #5a5a5a;
}

ul.table-of-contents li:not(.logo) a.active, ul.table-of-contents li:not(.logo) a:hover {
  background-color: #f8f6fa;
  border-left: 3px solid #f4c2c2;
  transform: translateX(3px);
}

ul.side-nav.fixed.table-of-contents li:not(.logo) a span, ul#slide-out li:not(.logo) a span {
  color: #5a5a5a !important;
}

li.logo span {
  display: block;
  font-size: 14px;
  color: #8a8a8a;
  font-family: 'Caveat', cursive;
}

.brand-logo h1 {
  font-size: inherit;
  line-height: inherit;
  margin: inherit;
  font-weight: inherit;
  font-family: 'Caveat', cursive;
}

.container {
  width: 95%;
}

h3 {
  font-weight: 400;
  margin-bottom: 60px;
  margin-top: 0;
  padding: 30px 40px;
  text-transform: uppercase;
  color: #9d85b8;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  font-size: 24px;
  position: relative;
}

h3::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 40px;
  width: 60px;
  height: 3px;
  background-color: #f4c2c2;
  border-radius: 2px;
  animation: subtle-pulse 2s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.7; transform: scaleX(1.1); }
}

.section {
  padding-bottom: 30px;
  padding-top: 0;
  position: relative;
}

.full-height {
  height: 100vh;
}

/* Original */

/* #intro.section {
  background: url(../../assets/img/white-ai-wallpaper.jpg) no-repeat top center/cover;
  position: relative;
} */

#intro.section {
  background-color: #beadc9;
  position: relative;
}

#intro.section .container {
  color: white;
  font-weight: 300;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

/* #intro.section .container *:not(span) {
  font-weight: 300;
  line-height: 150%;
  padding: 0 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
} */

#intro.section .container *:not(span) {
  font-weight: 300;
  line-height: 150%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
}

#intro.section .underline {
  border-bottom: 3px solid #f4c2c2;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
}

#intro.section .underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#intro.section .teal {
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

#intro.section .teal:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.overlay {
  background-color: rgba(255, 255, 255, 0.05);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.waves-effect.waves-blue .waves-ripple {
  /* The alpha value allows the text and background color
   of the button to still show through. */
  background-color: rgba(184, 169, 201, 0.2);
}

.card {
  margin-bottom: 60px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
  border: 1px solid #f5f5f5;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c2c2, #b8a9c9, #f4c2c2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card:nth-child(odd):hover {
  transform: translateY(-2px) scale(1.01) rotate(0.5deg);
}

.card:nth-child(even):hover {
  transform: translateY(-2px) scale(1.01) rotate(-0.5deg);
}

.card .role {
  font-size: 1rem;
  position: absolute;
  right: 38px;
  top: 35px;
  color: #b8a9c9;
  font-weight: 500;
  transition: all 0.3s ease;
}

.card:hover .role {
  transform: translateX(-5px);
  color: #9d85b8;
}

.card li a {
  margin-right: 0;
  color: #5a5a5a;
  border-bottom: 2px solid #f4c2c2;
  transition: all 0.3s ease;
  position: relative;
}

.card li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b8a9c9;
  transition: width 0.3s ease;
}

.card li a:hover {
  color: #b8a9c9;
  font-weight: 500;
  border-bottom-color: transparent;
}

.card li a:hover::after {
  width: 100%;
}

.card .card-content {
  padding: 32px;
}

.card .card-content p {
  padding: 5px 0 0;
  color: #6a6a6a;
}

.card h5 {
  font-size: 1.3rem;
  margin-bottom: -0.5rem;
  margin-top: 2rem;
  color: #b8a9c9;
  font-weight: 600;
  position: relative;
}

.card h5::after {
  content: '✦';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #f4c2c2;
  font-size: 0.8em;
  opacity: 0;
  transition: all 0.3s ease;
}

.card:hover h5::after {
  opacity: 1;
  right: -15px;
}

.card h6 {
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 2rem;
  text-transform: uppercase;
  color: #f4c2c2;
  font-size: 0.85rem;
}

#experience .card-action {
  background-color: #fafafa;
  border: none;
  padding: 24px 32px;
}

#experience .card .col.s12.m2 a {
  display: block;
}

#experience .card .col.s12.m2 a img {
  max-height: 60px;
  transition: all 0.3s ease;
}

#experience .card .col.s12.m2 a:hover img {
  transform: scale(1.1) rotate(2deg);
}

.card-action span {
  font-size: 85%;
  color: #8a8a8a;
}

.card ul {
  margin-bottom: 0;
}

.card ul li {
  line-height: 200%;
  list-style-type: none;
  margin-left: 20px;
  position: relative;
  color: #6a6a6a;
  transition: all 0.3s ease;
}

.card ul li::before {
  content: '•';
  color: #f4c2c2;
  font-size: 1.2em;
  position: absolute;
  left: -15px;
  transition: all 0.3s ease;
}

.card ul li:hover::before {
  transform: scale(1.3);
  color: #b8a9c9;
}

.card ul li:hover {
  transform: translateX(5px);
  color: #5a5a5a;
}

.card ul li li {
  color: #8a8a8a;
  font-size: 13px;
}

.card .card-title {
  font-size: 22px;
  color: #b8a9c9;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.card:hover .card-title {
  color: #9d85b8;
  letter-spacing: 0.5px;
}

.card .card-content .card-title {
  line-height: 2.2rem;
}

.card i.right {
  margin-left: 10px;
}

a.hoverline {
  border-bottom: 3px solid transparent !important;
  padding: 3px 3px 0 3px;
  transition: 0.25s all;
}

a.hoverline:hover {
  border-bottom: 3px solid #f4c2c2 !important;
  transform: translateY(-1px);
}

/* main a.hoverline */

/* a.hoverline:hover {
  border-bottom: 3px solid #24305e !important;
} */


#skills .card.large {
  height: 360px;
}

#skills h4 {
  border-bottom: 2px solid #f4c2c2;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: #b8a9c9;
  font-weight: 600;
  position: relative;
}

#skills h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #b8a9c9;
  transition: width 0.5s ease;
}

#skills .card:hover h4::after {
  width: 100%;
}

#skills .col img.responsive-img {
  margin: 0 auto;
  max-height: 100px;
  padding-bottom: 10px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  transition: all 0.3s ease;
}

#skills .col img.responsive-img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.1);
}

.card.large .card-content p {
  color: inherit;
  margin: 0;
  padding: 30px 0;
}

#experience .card-content .row {
  border-bottom: 1px solid rgba(244, 194, 194, 0.3);
  padding-bottom: 10px;
}

.card.large .card-image {
  height: 230px;
  overflow: hidden;
}

.card.large .card-image img {
  transition: all 0.5s ease;
}

.card.large:hover .card-image img {
  transform: scale(1.05);
}

.card.large .card-content {
  height: auto;
}

.card.medium .card-image {
  height: 240px;
}

.card-action a.btn-floating {
  margin-bottom: 0;
  background-color: #b8a9c9;
  box-shadow: 0 2px 8px rgba(184, 169, 201, 0.3);
  transition: all 0.3s ease;
}

.card-action a.btn-floating:hover {
  background-color: #a897bd;
  transform: translateY(-1px) rotate(10deg);
  box-shadow: 0 4px 12px rgba(184, 169, 201, 0.4);
}

#contact a:not(.btn-floating) {
  bottom: 6px;
  left: 20px;
  position: relative;
}

#experience .col.s12.m2 {
  text-align: center;
}

.fa-external-link:before {
  left: 3px;
  position: relative;
  top: 2px;
}

small {
  display: none;
}

.grey-text {
  color: #8a8a8a !important;
}

.teal-text {
  color: #b8a9c9 !important;
}

.teal {
  background-color: #b8a9c9 !important;
}

/* .teal {
  background-color: #00695c !important;
} */

@media (min-width: 1200px) {
  #experience .container {
    width: 860px;
  }
}

@media (max-width: 1360px) {
  .card ul li {
    font-size: 14px;
    line-height: 200%;
    margin-left: 20px;
  }
}

@media (max-width: 1160px) {
  .card ul li {
    line-height: 150%;
  }
}

@media (max-width: 992px) {
  main {
    padding-left: 0px;
    padding-top: 72px;
  }
  ul.side-nav a {
    line-height: 100%;
    padding: 0;
    width: 100%;
  }
  nav {
    background-color: white;
    height: 72px;
    position: absolute;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
  nav a.button-collapse, nav a.button-collapse i {
    color: #b8a9c9;
    height: 64px;
    line-height: 64px;
  }
  h3 {
    padding: 20px 30px;
    margin-bottom: 40px;
  }
  .container {
    margin: 0 auto;
  }
  nav.hide-on-large.only.trigger {
    display: block;
    position: fixed;
    top: 0;
    z-index: 2;
  }
  .name-title {
    display: block;
    height: 100%;
    padding-top: 20px;
    text-align: center;
    width: 100%;
    position: absolute;
  }
  .name-title>span, .name-title>a {
    position: relative;
    line-height: 22px;
  }
  .name-title a {
    font-size: 22px;
    display: block;
    color: #b8a9c9;
    font-weight: 600;
  }
  .name-title span {
    display: block;
    font-size: 13px;
    color: #f4c2c2;
  }
  h3, .container {
    position: relative;
    top: 72px;
  }
  section#intro {
    margin-bottom: -72px;
  }
  .card .role {
    position: relative;
    right: initial;
    top: initial;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
    line-height: 200%;
    margin: 30px 0 0;
  }
  #intro.section .container *:not(span) {
    padding: 0;
  }
  .card .card-content .card-title {
    font-size: 18px;
    line-height: 22px;
  }
  #experience span.card-title {
    text-align: center;
    display: block;
  }
  #experience span.card-title a {
    margin: 0;
  }
  i.mdi-navigation-close.right {
    position: relative;
    bottom: 15px;
  }
  #contact a:not(.btn-floating) {
    text-align: center;
    display: block;
    left: initial;
    bottom: initial;
  }
  #contact a.btn-floating.btn-large {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  #intro.section {
    background-position-x: 30%;
  }
}