* {
  font-family: Geologica, Arial;
  margin-top: 0;
  margin-bottom: 0;
}


:root {
  /* Dark theme */
  --bg-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  --bg-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --second-bg-color: #8baffe;
  --main-color: #ad7acb;
  --bg-color: #1f242d;
  --text-primary: #e2e8f0;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --navbar-color: rgba(15, 23, 42, 0.9);
  --card-bg: rgba(30, 41, 59, 0.8);
  --card-border: #334155;
  --card-border-input: #6d727a;
  --accent-gradient: linear-gradient(to right, #818cf8, #f472b6);
  --shadow-color: rgba(129, 140, 248, 0.6);
  --toggle-bg: #1e293b;
  --toggle-border: #334155;
  --toggle-icon: "☀️";
}


[data-theme="light"] {
  --bg-primary: linear-gradient(135deg, #ffffff 0%, #f9faf8 100%);
  --bg-secondary: linear-gradient(135deg, #f3f3f3 0%, #f3f3f3 100%);
  --second-bg-color: #8baffe;
  --bg-color: #1f242d;
  --main-color: #644385f5;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-tertiary: #334155;
  --navbar-color: rgba(255, 255, 255, 0.8);
  --card-bg: rgba(226, 232, 240, 0.8);
  --card-border: #cbd5e1;
  --card-border-input: #cbd5e1;
  --accent-gradient: linear-gradient(to right, #4f46e5, #ec4899);
  --shadow-color: rgba(79, 70, 229, 0.4);
  --toggle-bg: #e2e8f0;
  --toggle-border: #cbd5e1;
  --toggle-icon: "🌙";
}

img {
  -webkit-user-drag: none;
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

body {
  font-family: Geologica, Arial;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-primary) !important;
  background: var(--bg-primary);
}

.project-section:nth-child(even) {
  background: var(--bg-secondary);
}

span {
  color: var(--main-color);
}

section {
  padding: 100px;
}

a {
  text-decoration: none !important;
}


/* Toggle Style */
.theme-toggle {
  position: fixed;
  top: 90px;
  right: 20px;
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-border);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.theme-toggle::before {
  content: var(--toggle-icon);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Header Style */
.navbarSticky .navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbarSticky .navbar {
  background-color: var(--navbar-color) !important;
}

.navbarSticky.scrolled .navbar {
  background: var(--navbar-color) !important;
  backdrop-filter: blur(5px);
}

.navbarSticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

#profilePic {
  width: 40px;
  border-radius: 50%;
  border: solid 1px black;
  margin-right: 5px;

  min-width: 50px;
}

.navbar a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color) !important;
}

.latest-projects.active .toggle {
  color: var(--main-color) !important;
}

.contact {
  padding: 300px;
}

.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.9125) !important;
  border: none !important;
}

.dropdown-menu a.dropdown-item:focus,
.dropdown-menu a.dropdown-item.active {
  background-color: transparent;
}

.arrow {
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}


/* Home Style */
.home {
  padding-top: 5vw;
  justify-content: center;
  align-items: center;
}

.home-container {
  display: flex;
  flex-direction: row;
  margin-bottom: -5vw;
}

.home-content h3 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 500;
}

.home-content h3:nth-of-type(2) {
  margin-bottom: 1.6rem;
}

.home-content h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.home-content p {
  margin-bottom: -1.4em;
}

.home-content .social-media {
  margin-bottom: -1em;
}

#CV-button {
  padding: 1vw 3vw;
  text-decoration: none;
}

.home-img img,
.about-img img {
  width: 33vw;
  padding-left: 5vw;
}

.me {
  border-radius: 60%;
  animation: changeShape 4s ease-in-out infinite alternate, float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.4rem);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.4rem);
  }

  100% {
    transform: translateY(0);
  }
}

.social-media a {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: .2rem solid var(--main-color);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: .3s ease;
}

.social-media a:hover {
  background-color: var(--main-color);
  color: var(--second-bg-color);
  box-shadow: 0 0 1rem var(--main-color);
}



.btn-hover {
  padding: 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 5px;
  height: 50px;
  text-align: center;
  border: none;
  background-size: 300% 100%;

  border-radius: 50px;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  animation: pulse 0.5s ease;
  color: white;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-purple {
  background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

.btn-view {
  font-size: 20px;
}


@keyframes changeShape {
  0% {
    border-top-left-radius: 80% 50%;
    border-top-right-radius: 50% 90%;
    border-bottom-right-radius: 80% 60%;
    border-bottom-left-radius: 50% 70%;
  }

  50% {
    border-top-left-radius: 60% 40%;
    border-top-right-radius: 30% 80%;
    border-bottom-right-radius: 70% 30%;
    border-bottom-left-radius: 40% 60%;
  }

  100% {
    border-top-left-radius: 70% 50%;
    border-top-right-radius: 50% 70%;
    border-bottom-right-radius: 60% 80%;
    border-bottom-left-radius: 80% 50%;
  }
}

#CV-button {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1vw 3vw;
}

/* About Style */
.about {
  padding: 6vw 4vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.images-container {
  position: relative;
  width: 50%;
  height: 500px;
}

.image-figure {
  position: absolute;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  will-change: transform;
}

.image-figure:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-figure--1 {
  left: 20%;
  top: 50px;
  transform: rotate(-3deg);
  z-index: 1;
}

.image-figure--2 {
  left: 45%;
  top: -10px;
  transform: rotate(10deg);
  z-index: 2;
}

.image-figure img {
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.image-figure:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}

.image-figure--1 img {
  width: 140%;
  height: 155%;
}

.image-figure--2 img {
  width: 155%;
  height: 170%;
}

.text {
  width: 50%;
  padding: 20px;
}

.about h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.about h2 span {
  color: var(--main-color);
}

.about h3 {
  font-size: 1.9rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.about p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-tertiary);
}

#read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: linear-gradient(135deg, #7d5aa1, #6c48a7);
  color: --text-primary;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(125, 90, 161, 0.3);
}

#read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(125, 90, 161, 0.4);
  background: linear-gradient(135deg, #6c48a7, #5a3790);
}

#zoomOnHover {
  margin-top: 30px;
}

/* Animation classes */
.scroll-animate-side {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-animate-side.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale-fade {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-scale-fade.in-view {
  opacity: 1;
  transform: scale(1);
}



/* Skills Section */
.skills-cards-section {
  padding-top: 5vw;
  padding-bottom: 3.5vw;

  h2,
  span {
    margin-bottom: 0rem;
  }
}

.skills-cards-section {
  position: relative;
  width: 100%;
  height: 300lvh;
}

.skills-card-scroll-triggers {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 100lvh;
  display: flex;
  flex-direction: column;
}

.skills-card-scroll-triggers div {
  width: 100%;
  flex-grow: 1;
  background: var(--color);
  writing-mode: vertical-rl;
  padding: 0.2em;
  text-align: center;
}

.skills-cards-inner {
  position: sticky;
  top: 0;
  height: 100lvh;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skills-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.skills-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: --text-primary;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.skills-box .skills-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, .1), var(--main-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 4rem;
  border-radius: 2rem;
  box-shadow: #1f242d 0px 10px 30px 0px;
}

.skills-container .skills-box {
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 0 1rem var(--bg-color);
}

.skills-box:hover .skills-layer {
  transform: translateY(0);
}

.skills-layer h4 {
  font-size: 2.5rem;
  color: #faf5fe;
  text-shadow: 0 0 10px #764ba2;
  margin-top: 2.5rem;
  margin-bottom: .8rem;
}

.skills-layer p,
.skills-layer ul {
  color: #f4e8ff;
  text-shadow: 0 0 10px #764ba2;
}

.skills-layer p {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  width: 140%;
}

.skills-layer .skills-programming {
  font-size: 1.6rem;
  text-align: center;
}

.skills-layer ul {
  font-size: 1.3rem;
  font-style: italic;
  list-style: none;
  padding: 0;
}

.skills-card {
  position: sticky;
  top: 0;
  min-width: 20vw;
  max-width: 40vw;
  max-height: 70vh;
  aspect-ratio: 3/4;
  border-radius: 3rem;
  font-size: 10vw;
  background: --text-primary;
  display: flex;
  align-items: center;
  justify-content: center;
  --rotate: -10deg;
  position: absolute;
  top: unset;
  transform: translateX(-75vw) scale(0.85);
  rotate: rotate(var(--rotate));
}

.skills-card:nth-of-type(odd) {
  transform: translateX(75vw) scale(0.85);
  --rotate: 10deg;
}

.skills-card:nth-of-type(1) {
  --rotate: 5deg;
}


@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .skills-card {
      animation-timeline: var(--animation-timeline);
      animation-name: to-center;
      animation-fill-mode: both;
      animation-range: entry 100lvh exit;
    }
  }
}

@keyframes to-center {
  10% {
    opacity: 0.2;
  }

  30% {
    opacity: 1;
  }

  70% {
    rotate: calc(var(--rotate));
    transform: translateX(0) scale(1.07);
  }

  100% {
    transform: translateX(0) scale(1);
    rotate: calc(var(--rotate) * 0.5);
  }
}

#explore-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5vw 3vw;

  position: absolute;
  bottom: 2.5rem;
}



/* Project Section */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: var(--card-bg);
  color: var(--text-tertiary);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--btn-hover-bg);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent-gradient);
  color: white;
  border-color: #818cf8;
}

.filter-btn.active::after {
  transform: translateY(0);
  opacity: 1;
}


.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.project {
  display: flex;
  margin-bottom: 6rem;
  align-items: center;
  min-height: 400px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.project.visible {
  opacity: 1;
  transform: translateY(0);
}

.project.hidden {
  display: none;
}

.project:nth-child(even) {
  flex-direction: row-reverse;
}

.image-container {
  flex: 1;
  position: relative;
  perspective: 1500px;
  transform-style: preserve-3d;
  height: 350px;
}

.project-image {
  width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transform: rotateY(25deg) rotateX(12deg) skewY(-3deg) translateY(15px);
  box-shadow:
    0 0 25px var(--shadow-color),
    0 0 50px rgba(129, 140, 248, 0.3);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.9);
}

.project:nth-child(even) .project-image {
  transform: rotateY(-25deg) rotateX(12deg) skewY(3deg) translateY(15px);
  box-shadow:
    -25px 0 25px var(--shadow-color),
    -50px 0 50px rgba(129, 140, 248, 0.3);
}

.image-container:hover .project-image {
  transform: rotateY(-20deg) rotateX(0deg) skewY(3deg) scale(1.2) translateY(-20px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
  filter: brightness(1.06);
  z-index: 10;
}

.project:nth-child(even) .image-container:hover .project-image {
  transform: rotateY(20deg) rotateX(0deg) skewY(-3deg) scale(1.2) translateY(-20px) translateX(40px);
}

.project-content {
  flex: 1;
  padding: 2rem;
  z-index: 2;
}

.project-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-tech {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.project-tech span {
  margin: 0 0.5rem;
  color: var(--text-secondary);
}

.project-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}


/* Animation for filter buttons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Animation for project items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.4s ease forwards;
}

/* Staggered animation delays */
.project:nth-child(1) {
  animation-delay: 0.1s;
}

.project:nth-child(2) {
  animation-delay: 0.2s;
}

.project:nth-child(3) {
  animation-delay: 0.3s;
}

.project:nth-child(4) {
  animation-delay: 0.4s;
}

.project:nth-child(5) {
  animation-delay: 0.5s;
}

.project:nth-child(6) {
  animation-delay: 0.6s;
}

.project:nth-child(7) {
  animation-delay: 0.7s;
}

.project:nth-child(8) {
  animation-delay: 0.8s;
}

.project:nth-child(9) {
  animation-delay: 0.9s;
}

.project:nth-child(10) {
  animation-delay: 1.0s;
}







/* Contact Section */

.contact {
  padding: 4rem 0;
  background: var(--bg-primary);
  color: var(--text-secondary);
}

.contact form {
  max-width: 70vw;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}

.contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form .input-box input,
.contact form textarea {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--card-border-input);
  border-radius: .8rem;
  margin: .5em 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact form .input-box input {
  width: 49%;
}

.contact form .input-box input::placeholder,
.contact form textarea::placeholder {
  color: var(--text-tertiary);
}

.contact form input:focus,
.contact form textarea:focus {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--main-color);
  outline: none;
  box-shadow: 0 0 8px var(--shadow-color);
  transition: all 0.3s ease;
}


.contact form textarea {
  resize: none;
}

#send-message {
  margin-top: 2rem;
  padding: 0vw 3vw;
}



/* Footer Style */
footer {
  margin: 0 10vw;

  .footer-text,
  i {
    color: var(--text-tertiary) !important;
  }
}

footer img {
  width: 30px;
}

footer #year {
  color: var(--text-tertiary);
}


/* SCROLL ANIMATION */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-side {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-side.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade {
  opacity: 0;
  transition: opacity 1.1s ease-out;
}

.scroll-fade.in-view {
  opacity: 1;
}

@keyframes scaleFadeIn {
  0% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.scroll-scale-fade {
  opacity: 0;
  transform: scale(3.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-scale-fade.in-view {
  animation: scaleFadeIn 0.5s ease-out forwards;
}


/* BUTTON STYLE  */
#zoomOnHover {
  display: inline-block;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

#zoomOnHover:hover {
  transition: all .3s ease-in-out;
  transform: scale(1);
}


/* Responsive Design */

@media (min-width: 1800px) and (max-width: 2600px) {

  /* Typography */
  p,
  a,
  #read-more,
  .contact input,
  .contact textarea,
  .contact input::placeholder,
  .contact textarea::placeholder,
  .contact input:focus::placeholder,
  .contact textarea:focus::placeholder {
    font-size: 2rem;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2,
  span {
    font-size: 4rem;
  }

  h3 {
    font-size: 3.5rem;
  }

  span.footer-text,
  span.footer-text span {
    font-size: 2rem;
  }

  section {
    margin: 5vw;
    padding: 0;
  }

  /* Button Styling */
  .btn-hover {
    padding: 0 1vw;
    font-size: 2rem;
    margin: 1vw;
    height: 4vw;
    border-radius: 50px;
  }

  /* Navbar */
  .d-flex.align-items-center .nav-link,
  .navbar-nav .nav-link {
    font-size: 2rem;
    padding: 0.5rem 1rem;
  }

  #profilePic {
    width: 6rem;
    height: 6rem;
  }

  /* Home Section */
  .home-content {
    padding-right: 0;
  }

  .home-img img {
    width: 33vw;
    padding-right: 5vw;
  }

  .home-content h3 {
    margin: 1.5rem 0;
  }

  .home-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  /* About Section */
  .about-container {
    margin: 0;
    display: flex;
    min-width: 1500px;
    justify-content: center;
  }

  .about .text {
    width: 45%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .about .text p {
    font-size: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Skills Section */
  .skills-layer p {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Contact Section */
  .contact {
    padding: 0 15vw;
  }

  .social-media a {
    font-size: 2.5rem;
    margin: 0 1rem;
  }


  .image-figure {
    width: 350px;
    height: 450px;
  }

  .image-figure--1 {
    left: 15%;
  }

  .image-figure--2 {
    left: 40%;
  }
}



@media (min-width: 2300px) and (max-width: 2600px) {

  /* About Section */
  .about-container {
    margin: 0;
    min-width: 2000px !important;
    display: flex;
    justify-content: center;
  }


}

@media (min-width: 5000px) {
  .social-media {
    margin-top: 2vw;
  }

  .about-container {
    margin: 0;
    min-width: 4000px !important;
    display: flex;
    justify-content: center;
  }

  footer {
    margin: 0;
  }
}




@media (min-width: 2600px) {
  .container-fluid {
    max-width: 2000px;
    margin: 0 auto;
  }

  .about-container {
    max-width: 1800px;
    margin: 0 auto !important;
  }

  p,
  a,
  li,
  #read-more {
    font-size: 4rem !important;
  }

  h1 {
    font-size: 6.5rem !important;
  }

  h2,
  span {
    font-size: 6rem !important;
  }

  h3 {
    font-size: 5.5rem !important;
  }

  h4 {
    font-size: 5rem !important;
  }

  span.footer-text,
  span.footer-text span {
    font-size: 4rem !important;
  }

  /* Button Styling */
  .btn-hover {
    padding: 0 2vw;
    font-size: 1vw !important;
    margin: 1vw;
    height: 4vw;
    border-radius: 50px;
  }

  /* Navbar */
  .container-fluid {
    max-width: 2500px;
    margin: 0 auto;
  }

  .d-flex.align-items-center .nav-link {
    font-size: 4rem !important;
  }

  .navbar-nav .nav-link {
    font-size: 4rem !important;
    padding: 0.5rem 1rem;
  }

  #profilePic {
    width: 8rem !important;
    height: 8rem !important;
  }

  /* Home Section */
  .social-media a i,
  .social-media a {
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 8.5rem;
    width: 10rem;
    height: 10rem;
    margin: 5rem 5rem;
  }


  /* About Section */
  .about-container {
    min-width: 3000px;
  }

  /* Skills Section */
  .skills-layer p {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Contact Style*/
  .contact input,
  .contact textarea,
  .contact input::placeholder,
  .contact textarea::placeholder,
  .contact input:focus::placeholder,
  .contact textarea:focus::placeholder {
    font-size: 3.5rem;
  }
}







@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .images-container,
  .text {
    width: 100%;
  }

  .images-container {
    height: 400px;
    margin-bottom: 40px;
  }

  .image-figure--1 {
    left: 10%;
  }

  .image-figure--2 {
    left: 40%;
  }

  /* Project Section */
  .project {
    flex-direction: column !important;
    margin-bottom: 4rem;
  }

  .image-container {
    height: auto;
  }

  .project-image {
    max-width: 100%;
    height: auto;
    transform: rotateY(25deg) rotateX(12deg) skewY(-3deg) translateY(0px);
  }

  .project:nth-child(even) .image-container:hover .project-image {
    transform: rotateY(20deg) rotateX(0deg) skewY(-3deg) scale(1.2) translateY(-20px) translateX(10px);
  }

  .project-content {
    padding: 1.5rem 0;
  }

}





@media (max-width: 768px) {
  .about h2 {
    font-size: 2.5rem;
  }

  .about h3 {
    font-size: 1.6rem;
  }

  .image-figure {
    width: 250px;
    height: 350px;
  }

  .image-figure--1 {
    left: 5%;
  }

  .image-figure--2 {
    left: 35%;
  }
}

@media (max-width: 780px) {
  section {
    padding: 0 0 0 3vw;
  }

  #explore-more,
  #read-more {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .dropdown-menu {
    background-color: transparent !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Home */
  .home {
    padding-top: 5vw;
  }

  .home-container {
    flex-direction: column;
    margin-top: 3vw;
    margin-bottom: 10vw;
    margin-left: -2vw;
    text-align: center;
  }

  .home-content {
    padding-left: 4vw;
    padding-right: 3vw;
  }

  .home-content h1 {
    font-size: 2.6rem;
    padding-left: 0;
  }

  .home-content h3 {
    font-size: 2.5rem;
  }

  .home-content p {
    margin-bottom: 0;
  }

  .home-content .social-media {
    margin: 0;
  }

  .social-media a {
    min-width: 64px;
    margin: 3rem .75rem 3rem .75rem;
  }

  .home-container img {
    width: 0;
  }

  .social-media {
    display: flex;
    justify-content: space-between;
    margin: -1vw 7vw 1vw 7vw;
  }


  /* About */
  .image-figure {
    width: 200px;
    height: 300px;
  }

  .image-figure--1 {
    left: 10%;
    top: 30px;
  }

  .image-figure--2 {
    left: 30%;
    top: -20px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    padding-bottom: 10vw;
    margin-bottom: 15vw;
  }

  .about-container .text {
    padding-right: 4vw;
    margin-left: 2vw;
  }

  .image-figure--1 img {
    width: 150%;
    height: 175%;
  }

  .image-figure--2 img {
    width: 175%;
    height: 190%;
  }

  p {
    text-align: left;
  }

  /* Skills */
  :root {
    --skills-offscreen-mobile: 180vw;
  }

  .skills-card,
  .skills-box {
    min-width: 78vw;
    max-width: 92vw;
    max-height: 64vh;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transition: transform .35s ease;

    transform: translateX(calc(-1 * var(--skills-offscreen-mobile)));
    --rotate: -8deg;
    rotate: var(--rotate);
  }

  .skills-card:nth-of-type(odd),
  .skills-box:nth-of-type(odd) {
    transform: translateX(var(--skills-offscreen-mobile));
    --rotate: 8deg;
  }

  .skills-card:nth-of-type(1),
  .skills-box:nth-of-type(1) {
    transform: translateX(0);
    --rotate: 0deg;
    rotate: 0deg;
    z-index: -1;
  }

  .skills-box {
    border-radius: 2rem;
  }

  .skills-layer h4 {
    font-size: 1.6rem;
    margin-top: 1.2rem;
    border-radius: 2rem;
  }

  .skills-layer .skills-programming {
    font-size: 1.2rem;
  }

  .skills-layer p,
  .skills-layer ul {
    font-size: 1rem;
    width: 140%;
  }

  /* Footer Style */
  footer {
    margin: 0;
  }
}






/* Contact */
.contact form {
  max-width: 95%;
}

/* Footer Style */
footer img {
  width: 40px;
  margin-right: 3vw;
}