@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  text-align: center;
  line-height: 1.5;
}
h1 {
  font-weight: 700;
}
p,
a {
  font-size: 1.6rem;
}
a {
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}
.section-title {
  margin-bottom: 4.5rem;
  font-size: 4rem;
  text-transform: uppercase;
}
@media (max-width: 37.5em) {
  .section-title {
    font-size: 2.8rem;
  }
}
.dark-blue-color {
  color: #272341;
}
.text-color-main {
  margin-left: 1rem;
  color: #5b86e5;
  -webkit-text-fill-color: #5b86e5;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) or
  (-webkit-background-clip: text) {
  .text-color-main {
    background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);
  }
}
@media (max-width: 37.5em) {
  .text-color-main {
    margin: 0;
    background-image: none;
    -webkit-text-fill-color: #5b86e5;
    box-shadow: none;
  }
}
.cta-btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
  overflow: hidden;
  border-radius: 3px;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}
.cta-btn:hover {
  box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #fff;
}
@media (max-width: 37.5em) {
  .cta-btn:hover {
    box-shadow: none;
  }
}
.cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  width: 0px;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}
@media (max-width: 37.5em) {
  .cta-btn::after {
    width: 0;
    height: 0;
    background-image: none;
  }
}
.cta-btn--hero {
  color: #5b86e5;
  -webkit-text-fill-color: #5b86e5;
  border: 2px solid rgba(0, 0, 0, 0);
  -o-border-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  border-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  border-image-slice: 1;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) or
  (-webkit-background-clip: text) {
  .cta-btn--hero {
    background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 0);
  }
}
@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  .cta-btn--hero {
    color: #5b86e5;
  }
  .cta-btn--hero:hover {
    color: #fff;
  }
}
@media (max-width: 37.5em) {
  .cta-btn--hero {
    background-image: none;
    border: 2px solid #5b86e5;
    box-shadow: none;
    -webkit-text-fill-color: #5b86e5;
  }
}
.cta-btn--hero::after {
  height: 410%;
  width: 150%;
  transform: translate(-98%, -25%) rotate(45deg);
}
.cta-btn--hero:hover {
  -webkit-text-fill-color: #000;
  text-decoration: none;
}
@media (max-width: 37.5em) {
  .cta-btn--hero:hover {
    -webkit-text-fill-color: #5b86e5;
  }
}
.cta-btn--hero:hover::after {
  transform: translate(-9%, -25%) rotate(45deg);
}
.cta-btn--resume {
  border-radius: 0;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn--resume::after {
  background: #fff;
}
.cta-btn--resume:hover {
  color: #5b86e5;
  text-decoration: none;
  box-shadow: none;
}
@media (max-width: 37.5em) {
  .cta-btn--resume:hover {
    color: #fff;
  }
}
.cta-btn--resume:hover::after {
  width: 100%;
}
.cta-btn--projects {
  box-shadow: inset 1px 1px 2px 2px rgba(174, 174, 192, 0.15),
    inset -2px -2px 2px rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0);
}
@media (max-width: 37.5em) {
  .cta-btn--projects {
    border: none;
    box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #fff;
  }
}
.cta-btn--projects::after {
  height: 250%;
  width: 130%;
}
.cta-btn--projects::after {
  transform: translate(-98%, -30%) rotate(45deg);
}
.cta-btn--projects:hover {
  box-shadow: 1.5px 1.5px 3px rgba(174, 174, 192, 0.4), -1px -1px 3px #fff;
}
.cta-btn--projects:hover::after {
  transform: translate(-12%, -30%) rotate(45deg);
}
.footer {
  background-color: #333;
  padding: 4.8rem 0;
}
.footer__text {
  font-size: 1.3rem;
  color: #b3b3b3;
}
.footer__text a {
  font-size: 1.3rem;
  color: #bfbfbf;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.footer__text a:hover,
.footer__text a:active {
  color: #36d1dc;
}
.footer hr {
  margin: 1rem auto;
  border: 0;
  width: 50%;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.social-links {
  display: flex;
  justify-content: center;
}
.social-links a {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: 5rem;
  height: 5rem;
  margin: 1.6rem 1.6rem;
  transition: all ease 0.2s;
}
.social-links a i {
  transition: all ease-in-out 0.2s;
}
.social-links a:hover {
  transform: scale(1.1) translateY(-2px);
}
.social-links a:hover .fa-envelope {
  color: #ea4335;
}
.social-links a:hover .fa-linkedin {
  color: #0077b5;
}
.social-links a:hover .fa-github {
  color: #6e5494;
}
.social-links a:hover .fab.fa-npm {
  color: #cb3837;
}
.back-to-top i {
  color: #fff;
  margin: 1rem 0 1.6rem;
  transition: all 200ms ease;
}
.back-to-top i:hover {
  transform: translateY(-2px);
}
section {
  padding: 5rem 0rem;
}
@media (max-width: 37.5em) {
  section {
    border: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
section .row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  padding: 0 1.5rem;
}
@media (max-width: 56.25em) {
  section .row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 37.5em) {
  section .row {
    padding: 0;
  }
}
section .row p + p {
  margin-top: 1rem;
}
section .row span {
  margin-top: 2rem;
}
.container {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
  max-width: 1140px;
}
@media (max-width: 75em) {
  .container {
    max-width: 960px;
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  .container {
    max-width: 720px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .container {
    max-width: 720px;
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .container {
    max-width: 540px;
    width: 100%;
  }
}
#about {
  background-color: #36d1dc;
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  color: #fff;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding-bottom: 10%;
}
@media (max-width: 75em) {
  #about {
    height: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
}
#about .about-wrapper {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 37.5em) {
  #about .about-wrapper {
    padding-bottom: 5rem;
    grid-template-columns: 1fr;
  }
}
#about .about-wrapper__image {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#about .about-wrapper__image img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 75em) {
  #about .about-wrapper__image {
    height: 100%;
  }
}
@media (max-width: 48em) {
  #about .about-wrapper__image {
    padding-bottom: 4rem;
  }
}
#about .about-wrapper__info {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
@media (max-width: 48em) {
  #about .about-wrapper__info {
    align-items: center;
    text-align: center;
  }
}
#contact {
  background-image: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  -webkit-clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 15vh, 100% 0, 100% 100%, 0 100%);
  padding: 15rem 0 10rem 0;
  margin-top: -15rem;
  margin-bottom: -1px;
  color: #fff;
}
@media (max-width: 75em) {
  #contact {
    padding: 10rem 0;
    margin-top: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }
}
#contact .contact-wrapper {
  margin-top: 3.2rem;
  padding: 0 2rem;
  backface-visibility: hidden;
}
#contact .contact-wrapper__text {
  margin-bottom: 2.5rem;
}
#contact .contact-wrapper__text,
#contact .contact-wrapper a {
  font-size: 2.4rem;
}
@media (max-width: 37.5em) {
  #contact .contact-wrapper__text,
  #contact .contact-wrapper a {
    font-size: 2rem;
  }
}
#hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  font-weight: 400;
  color: #272341;
  padding: 0rem 5.6rem;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  line-height: 1.2;
  animation: hidden 1000ms linear forwards;
}
@media (max-width: 56.25em) {
  #hero {
    justify-content: center;
  }
}
@media (max-width: 37.5em) {
  #hero {
    padding: 0rem 1.6rem;
  }
}
#hero .hero-title {
  font-size: 5.6rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
  text-align: left;
}
#hero .hero-title span {
  margin: 0;
  display: inline-block;
}
@media (max-width: 75em) {
  #hero .hero-title {
    font-size: 4rem;
  }
}
@media (max-width: 56.25em) {
  #hero .hero-title {
    font-size: 3.6rem;
    text-align: center;
  }
}
@media (max-width: 37.5em) {
  #hero .hero-title {
    font-size: 3.5rem;
    line-height: 1.5;
  }
}
@media (max-width: 20em) {
  #hero .hero-title {
    font-size: 2.8rem;
  }
}
#hero .hero-cta {
  display: flex;
}
@media (max-width: 56.25em) {
  #hero .hero-cta {
    justify-content: center;
  }
}
#hero .hero-cta a {
  font-size: 2.4rem;
}
@media (max-width: 37.5em) {
  #hero .hero-cta a {
    font-size: 2rem;
  }
}
.scroll-down-link {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid #000;
  border-radius: 50px;
  cursor: pointer;
}
.scroll-down::before,
.scroll-down::after {
  height: 10px;
  width: 10px;
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  border: 2px solid #5b86e5;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: none;
  border-left: none;
  animation: scroll-down 1s ease-in-out infinite;
}
.scroll-down::after {
  top: 30%;
  animation-delay: 0.3s;
}
@keyframes hidden {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}
#projects {
  background-color: #e5e5e5;
  color: #272341;
  margin-top: -15rem;
  padding-top: 15rem;
}
@media (max-width: 75em) {
  #projects {
    margin-top: 0;
    padding-top: 5rem;
  }
}
@media (max-width: 37.5em) {
  #projects {
    padding-bottom: 1px;
  }
}
#projects .project-wrapper {
  margin-bottom: 15rem;
}
@media (max-width: 37.5em) {
  #projects .project-wrapper {
    margin-bottom: 0rem;
  }
}
#projects .project-wrapper .row {
  margin: 0;
  margin-bottom: 8rem;
}
@media (max-width: 37.5em) {
  #projects .project-wrapper .row {
    margin-bottom: 4rem;
  }
}
#projects .project-wrapper__text {
  width: 100%;
  text-align: left;
}
@media (max-width: 75em) {
  #projects .project-wrapper__text {
    margin-bottom: 4.8rem;
  }
}
@media (max-width: 37.5em) {
  #projects .project-wrapper__text {
    margin-bottom: 2.5rem;
  }
}
#projects .project-wrapper__text-title {
  font-weight: bold;
  margin-bottom: 1.8rem;
  font-size: 3rem;
}
@media (max-width: 37.5em) {
  #projects .project-wrapper__text-title {
    font-size: 2rem;
  }
}
#projects .project-wrapper__text-info {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
#projects .project-wrapper__text-btns {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#projects .project-wrapper__image {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 75em) {
  #projects .project-wrapper__image {
    width: 100%;
    margin: 0;
  }
}
#projects .project-wrapper__image .thumbnail {
  border: none;
  box-shadow: 8px 8px 9px 7px rgba(174, 174, 192, 0.4), -5px -5px 15px 7px #fff;
}
#projects .project-wrapper__image .thumbnail .img-fluid {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 2px;
}
@media (max-width: 37.5em) {
  #projects .project-wrapper__image .thumbnail {
    box-shadow: none;
    border: 1px solid #d2d2d2;
    margin-bottom: 3.2rem;
    transform: none;
  }
}
#education {
  background-image: linear-gradient(125deg, #36d1dc 0%, #5b86e5 100%);
  -webkit-clip-path: polygon(0 0, 100% 15vh, 100% 100%, 0 100%);
  clip-path: polygon(0% 13%, 100% 0%, 100% 85%, 0% 100%);
  padding-bottom: 8%;
  margin-top: -10rem;
  margin-bottom: -1px;
  color: #fff;
}

@media (max-width: 75em) {
  #education {
    padding: 10rem 0;
    margin-top: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

#education .about-wrapper {
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 3rem;
}

#education .about-wrapper__image {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#education .about-wrapper__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#education .about-wrapper__info {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

#education .about-wrapper__info h2 {
  color: #272341;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

@media (max-width: 37.5em) {
  #education .about-wrapper__info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 56.25em) {
  #education .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #education .about-wrapper__image {
    padding-bottom: 2rem;
  }

  #education .about-wrapper__info {
    text-align: center;
  }
}

.education-wrapper {
  margin-top: 3.2rem;
  padding: 0 2rem;
  backface-visibility: hidden;
}

#education .education-wrapper__text {
  margin-bottom: 2.5rem;
}

#education .education-wrapper__text,
#education .education-wrapper a {
  font-size: 2.4rem;
}

@media (max-width: 37.5em) {
  #education .education-wrapper__text,
  #education .education-wrapper a {
    font-size: 2rem;
  }
}
.modal {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  padding: 0;
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.modal[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  padding: 2rem;
}

.modal-content h2 {
  color: #272341;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.modal-content ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.modal-content ul li {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.modal-content button {
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .modal {
    width: 95%;
  }

  .modal-content h2 {
    font-size: 2rem;
  }

  .modal-content ul li {
    font-size: 1.4rem;
  }
}

/* Work Experience Carousel Styles */
.work-swiper {
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}

.work-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 5px;
  padding: 0 60px;
  position: relative;
  padding-bottom: 100px;
}

.work-header {
  text-align: center;
  margin-bottom: 5px;
}

.work-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #36d1dc;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #5b86e5;
  margin-bottom: 0.5rem;
}

.work-location {
  font-size: 1.6rem;
  color: #272341;
  font-weight: 500;
  margin-bottom: 1rem;
}

.work-description {
  flex: 0 1 auto;
  margin-bottom: 0;
}

.work-description p {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.work-logo {
  text-align: center;
  padding: 0;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.work-logo img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
  margin: 0;
}

.work-swiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
  bottom: 0;
}

.work-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #5b86e5;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.work-swiper .swiper-pagination-bullet-active {
  background: #36d1dc;
  opacity: 1;
}

@media (max-width: 768px) {
  .work-content {
    padding: 0 30px;
  }

  .work-header h2 {
    font-size: 2.4rem;
  }

  .work-header h3 {
    font-size: 1.8rem;
  }

  .work-location {
    font-size: 1.4rem;
  }

  .work-logo {
    height: 80px;
  }

  .work-logo img {
    max-width: 200px;
  }

  .work-swiper .swiper-button-next,
  .work-swiper .swiper-button-prev {
    display: none;
  }
}

.work-swiper .swiper-button-next,
.work-swiper .swiper-button-prev {
  color: #36d1dc;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.work-swiper .swiper-button-next {
  right: 0;
}

.work-swiper .swiper-button-prev {
  left: 0;
}

.work-swiper .swiper-button-next:hover,
.work-swiper .swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.2);
}

.work-swiper .swiper-button-next:after,
.work-swiper .swiper-button-prev:after {
  font-size: 20px;
}

.work-description a {
  color: #5b86e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.work-description a:hover {
  color: #36d1dc;
}

.work-description a:visited {
  color: #5b86e5; /* Same as unvisited links */
}

.tech-stack {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.tech-stack i {
  font-size: 2.4rem !important;
  color: #5b86e5;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tech-stack i:hover {
  transform: translateY(-3px);
  color: #36d1dc;
}

/* Specific colors for tech stack icons */
.tech-stack .fa-java {
  color: #007396;
}
.tech-stack .fa-leaf {
  color: #6db33f;
}
.tech-stack .fa-angular {
  color: #dd0031;
}
.tech-stack .fa-aws {
  color: #232f3e;
}
.tech-stack .fa-jenkins {
  color: #d24939;
}
.tech-stack .fa-box {
  color: #0052cc;
}
.tech-stack .fa-shield-alt {
  color: #f44d67;
}
.tech-stack .fa-bitbucket {
  color: #0052cc;
}
/* VT Visualization Tech Stack Colors */
.tech-stack .fa-html5 {
  color: #e34f26;
}
.tech-stack .fa-css3-alt {
  color: #264de4;
}
.tech-stack .fa-js {
  color: #f7df1e;
}
.tech-stack .fa-react {
  color: #61dafb;
}
.tech-stack .fa-node-js {
  color: #339933;
}
.tech-stack .fa-cube {
  color: #4a90e2;
}
.tech-stack .fa-vr-cardboard {
  color: #ff4081;
}
.tech-stack .fa-cubes {
  color: #4a90e2;
}
.tech-stack .fa-github {
  color: #333333;
}

@media (max-width: 768px) {
  .tech-stack {
    gap: 1.5rem;
  }

  .tech-stack i {
    font-size: 2rem !important;
    width: 2rem;
    height: 2rem;
  }

  .tech-stack .custom-icon {
    width: 2rem;
    height: 2rem;
  }
}

.tech-stack .custom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #5b86e5;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.tech-stack .custom-icon:hover {
  transform: translateY(-3px);
  color: #36d1dc;
}

/* VT Visualization Tech Stack Colors */
.tech-stack .fa-html5 {
  color: #e34f26;
}
.tech-stack .fa-css3-alt {
  color: #264de4;
}
.tech-stack .fa-js {
  color: #f7df1e;
}
.tech-stack .fa-react {
  color: #61dafb;
}
.tech-stack .fa-node-js {
  color: #339933;
}
.tech-stack .custom-icon[title="X3D"] {
  color: #4a90e2;
}
.tech-stack .custom-icon[title="X3DOM"] {
  color: #4a90e2;
}
.tech-stack .fa-vr-cardboard {
  color: #ff4081;
}
.tech-stack .fa-cube {
  color: #4a90e2;
}
.tech-stack .fa-github {
  color: #333333;
}

@media (max-width: 768px) {
  .tech-stack {
    gap: 1.5rem;
  }

  .tech-stack i {
    font-size: 2rem !important;
    width: 2rem;
    height: 2rem;
  }

  .tech-stack .custom-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* Blog Styles */
.blog-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post__title {
  color: #800000;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-post__date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post__content {
  color: #333;
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .blog-wrapper {
    padding: 1rem;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-post__title {
    font-size: 1.5rem;
  }
}

/* Achievements Section Styles */
.achievements-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.tab-btn {
  background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(91, 134, 229, 0.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, #5b86e5 0%, #36d1dc 100%);
  box-shadow: 0 8px 15px rgba(91, 134, 229, 0.4);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Awards Grid Styles */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.award-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #5b86e5;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-header {
  margin-bottom: 1rem;
}

.award-header h3 {
  color: #272341;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.award-date {
  color: #5b86e5;
  font-size: 1.3rem;
  font-weight: 600;
}

.award-description p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* Mobile Responsiveness for Achievements */
@media (max-width: 768px) {
  .achievements-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-item {
    padding: 1.5rem;
  }

  .award-header h3 {
    font-size: 1.6rem;
  }
}

/* Open Source Section Styles */
#opensource {
  background-color: #e5e5e5;
  color: #272341;
  margin-top: -15rem;
  padding-top: 15rem;
}

@media (max-width: 75em) {
  #opensource {
    margin-top: 0;
    padding-top: 5rem;
  }
}

@media (max-width: 37.5em) {
  #opensource {
    padding-bottom: 1px;
  }
}

#opensource .project-wrapper {
  margin-bottom: 15rem;
}

@media (max-width: 37.5em) {
  #opensource .project-wrapper {
    margin-bottom: 0rem;
  }
}

#opensource .project-wrapper .row {
  margin: 0;
  margin-bottom: 8rem;
}

@media (max-width: 37.5em) {
  #opensource .project-wrapper .row {
    margin-bottom: 4rem;
  }
}

#opensource .project-wrapper__text {
  width: 100%;
  text-align: left;
}

@media (max-width: 75em) {
  #opensource .project-wrapper__text {
    margin-bottom: 4.8rem;
  }
}

@media (max-width: 37.5em) {
  #opensource .project-wrapper__text {
    margin-bottom: 2.5rem;
  }
}

#opensource .project-wrapper__text-title {
  font-weight: bold;
  margin-bottom: 1.8rem;
  font-size: 3rem;
}

@media (max-width: 37.5em) {
  #opensource .project-wrapper__text-title {
    font-size: 2rem;
  }
}

#opensource .project-wrapper__text-info {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

#opensource .project-wrapper__text-btns {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#opensource .project-wrapper__image {
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 75em) {
  #opensource .project-wrapper__image {
    width: 100%;
    margin: 0;
  }
}

#opensource .project-wrapper__image .thumbnail {
  border: none;
  box-shadow: 8px 8px 9px 7px rgba(174, 174, 192, 0.4), -5px -5px 15px 7px #fff;
}

#opensource .project-wrapper__image .thumbnail .img-fluid {
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 2px;
}

@media (max-width: 37.5em) {
  #opensource .project-wrapper__image .thumbnail {
    box-shadow: none;
    border: 1px solid #d2d2d2;
    margin-bottom: 3.2rem;
    transform: none;
  }
}
