* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #0e0e10 0%, #121214 40%, #0b0b0d 100%);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #121212;
}

::-webkit-scrollbar-thumb {
  background: #d8cfc4;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #c9bfb4;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(230, 222, 212, 0.7);
  }
  70% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 10px rgba(230, 222, 212, 0);
  }
  100% {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(230, 222, 212, 0);
  }
}
@keyframes display-text {
  25%, 100% {
    display: none;
  }
}
@keyframes fill-text {
  10%, 100% {
    width: 0;
  }
  70%, 90% {
    width: 100%;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: linear-gradient(180deg, #0e0e10 0%, #121214 40%, #0b0b0d 100%);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  z-index: 1001;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
  right: 0;
}
nav.scrolled {
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.98), rgba(10, 10, 12, 0.98));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
.nav-container .links {
  display: none;
}

.nav-link a {
  color: #a8a8a8;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link a:hover {
  color: #e6e1da;
}
.nav-link a.active {
  color: #ffffff !important;
  font-weight: 600;
  position: relative;
  padding-right: 26px;
}
.nav-link a.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #e6ded4;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(230, 222, 212, 0.8);
}

.logo {
  color: #d8cfc4;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1001;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1rem;
}
.logo span {
  color: #e6e1da;
  font-weight: 700;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: #d8cfc4;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 44px;
  height: auto;
  min-height: 44px;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(180deg, #111215 0%, #0d0f13 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 5rem 2rem 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}
.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #d8cfc4;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
}
.mobile-nav-links li {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  display: block;
  color: #c7c9d1;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  background: rgba(108, 99, 255, 0.08);
  color: #e8e9ff;
}
.mobile-nav-link.active {
  background-color: #14161b;
  color: #ffffff;
  border-left: 3px solid #2f323a;
  padding-left: 15px !important;
}

.nav-link a.active,
.links a.active,
.mobile-nav-link.active {
  color: #fff !important;
  font-weight: 600;
  position: relative;
}

.links a.active {
  color: #ffffff !important;
  font-weight: 600;
  position: relative;
  padding-right: 26px;
}
.links a.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: #e6ded4;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(230, 222, 212, 0.8);
}

.nav-links {
  display: none;
}

footer {
  background: #070709;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  color: #9a9aa3;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}
footer .text span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #b0b0b0;
}
footer .text span a {
  font-weight: 500;
  color: #d8cfc4;
  text-decoration: none;
}
footer .text span a:hover {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #d8cfc4;
  color: #121212;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #c9bfb4;
  transform: translateY(-3px);
}

section {
  width: 100%;
  min-height: 90vh;
  padding: 20px;
}
section[id] {
  display: block;
  opacity: 1;
  visibility: visible;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

section .main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin-top: 8rem;
  margin-bottom: 4rem;
}

.main-container .image {
  /* Responsive circular container: keeps a perfect 1:1 aspect ratio */
  width: clamp(160px, 28vw, 250px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  /* decorate the circle here so borders/shadows don't distort the inner image */
  box-sizing: border-box;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(216, 207, 196, 0.2);
  animation: float 1.5s ease-in-out infinite;
}
.main-container .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  /* image itself does not need a border-radius because the container clips overflow */
  border-radius: 0;
}

.main-container .content {
  color: #d8cfc4;
  width: 100%;
  text-align: center;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.content h1 span {
  color: #d8cfc4;
  filter: drop-shadow(0 0 5px #c9bfb4);
}

.content .typewriter {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0;
}
.content .typewriter span {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 0.5px #d8cfc4;
  animation: display-text 16s linear infinite;
  animation-delay: calc(-4s * var(--i));
}
.content .typewriter span::before {
  content: attr(data-text);
  position: absolute;
  width: 0;
  border-right: 2px solid #d8cfc4;
  color: #d8cfc4;
  white-space: nowrap;
  overflow: hidden;
  animation: fill-text 4s linear infinite;
}

.content p {
  font-size: 0.95rem;
  margin: 15px 0;
  line-height: 1.5;
  color: #b0b0b0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}
.social-links i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: 1px solid #d8cfc4;
  border-radius: 50%;
  color: #d8cfc4;
  font-size: 1.2rem;
  transition: 0.2s linear;
}
.social-links i:hover {
  transform: scale(1.1);
  color: #121212;
  background-color: #d8cfc4;
  filter: drop-shadow(0 0 5px #d8cfc4);
}

.content button {
  width: 70%;
  max-width: 250px;
  height: 45px;
  margin: 15px auto;
  background-color: #d8cfc4;
  color: #121212;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.2s linear;
  cursor: pointer;
  display: block;
}
.content button:hover {
  transform: scale(1.05);
  color: #d8cfc4;
  border: 2px solid #d8cfc4;
  background-color: transparent;
  box-shadow: 0 0 20px #d8cfc4;
}

.about {
  scroll-margin-top: 2.5rem;
  padding: 40px 20px;
}

section .content {
  width: 100%;
  margin: 0 auto;
}

.about .about-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

section .title {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
section .title span {
  color: #d8cfc4;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}
section .title span::before, section .title span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #d8cfc4;
  left: 0;
  bottom: 0;
}
section .title span::after {
  bottom: -5px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

.about .left {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about .left img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  animation: float 1.5s ease-in-out infinite;
}

.about-details .right {
  width: 100%;
  text-align: center;
}

section .topic {
  color: #e6e1d8;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.about-details .right p {
  text-align: center;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

section .button {
  margin: 20px 0;
}
section .button button {
  outline: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  background: #d8cfc4;
  color: #121212;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
section .button button:hover {
  border-color: #d8cfc4;
  background-color: transparent;
  color: #d8cfc4;
}

.skills {
  scroll-margin-top: 1rem;
  padding: 40px 20px;
}
.skills .content {
  padding: 20px 0;
}
.skills .skills-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.skills-details .text {
  width: 100%;
  text-align: center;
}

.skills-details p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.skills-details .experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
.skills-details .experience .num {
  background-color: #121212;
  color: #e6e1d8;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}
.skills-details .experience .num:hover {
  transform: translateY(-3px);
}
.skills-details .experience .exp {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b0b0b0;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

.skills-details .boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.skills-details .boxes .topic {
  font-size: 1.1rem;
  color: #e6e1d8;
  margin-bottom: 5px;
}
.skills-details .boxes .per {
  font-size: 2.5rem;
  color: #d8cfc4;
  font-weight: 600;
}

.skills-details .box {
  margin: 10px 0;
}

.services {
  scroll-margin-top: 2rem;
  padding: 40px 20px;
}
.services .boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.services .boxes .box {
  margin: 10px 0;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  padding: 25px 15px;
  cursor: default;
  color: #e4e4e7;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  background-color: #141416;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.85s cubic-bezier(0.16, 1, 0.3, 1), background-color 1.2s ease;
  transform-origin: center;
  transition-delay: 0s, 0s, 0.1s;
}
.services .boxes .box:hover {
  transform: translateY(-12px) scale(1.06);
  background-color: #1c1c1f;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.services .boxes .box:hover .icon {
  background-color: #d8cfc4;
  color: #121212;
  transform: scale(1);
}

.services .boxes .box .icon {
  height: 45px;
  width: 45px;
  background-color: var(--icon-bg2);
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 1.2rem;
  color: var(--accent2);
  margin: 0 auto 15px auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.boxes .box:hover .icon {
  background-color: #d8cfc4;
  color: #121212;
  transform: scale(1);
}

.services .boxes .box .topic {
  font-size: 1.2rem;
  color: #e6e1d8;
  margin-bottom: 10px;
  font-weight: 600;
}

.services .boxes .box p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact {
  scroll-margin-top: 2.5rem;
  padding: 40px 20px;
}
.contact .content {
  margin: 0 auto;
  padding: 20px 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info .topic {
  font-size: 1.5rem;
  color: #d8cfc4;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.contact-info p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  margin-bottom: 18px;
  background: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-item:hover {
  transform: translateY(-6px);
  background: #1e1e1e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.contact-item:hover .contact-icon {
  transform: scale(1.05);
}
.contact-item:hover .contact-text p {
  color: #d8cfc4;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #121212;
  color: #d8cfc4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease;
}

.contact-text {
  text-decoration: none;
  color: #e6e1d8;
  display: block;
}
.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #ffffff;
}
.contact-text p {
  font-size: 0.9rem;
  color: #bdbdbd;
  transition: color 0.25s ease;
}

.contact-form {
  background: #17171b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 25px 20px;
  border-radius: 8px;
}
.contact-form input,
.contact-form textarea {
  background: #1b1b20;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e6e6eb;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #9a9aa3;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9aa3;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.15);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e6e1d8;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #242433;
  border: 1px solid rgba(216, 207, 196, 0.1);
  border-radius: 8px;
  color: #e6e1d8;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: #d8cfc4;
  box-shadow: 0 0 0 2px rgba(216, 207, 196, 0.1);
}
.form-control.error {
  border-color: #b74b4b;
  box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.2);
}

.error-message {
  color: #ff4757;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.success-message {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: fadeIn 0.3s ease;
}
.success-message i {
  font-size: 1.2rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background-color: #d8cfc4;
  color: #121212;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(216, 207, 196, 0.2);
  background-color: #c9bfb4;
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@media screen and (max-width: 400px) {
  .nav-container {
    padding: 0 15px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .main-container .image {
    width: 220px;
    height: 220px;
  }
  .content h1 {
    font-size: 1.8rem;
  }
  .content .typewriter {
    font-size: 1.5rem;
  }
  .content p {
    font-size: 0.9rem;
  }
  .social-links i {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
  }
  .about .left img {
    width: 220px;
    height: 220px;
  }
  .skills-details .experience .num {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .nav-container {
    padding: 0 30px;
  }
  .logo {
    font-size: 1.8rem;
  }
  section .main-container {
    padding: 30px;
  }
  .main-container .image {
    width: 300px;
    height: 300px;
  }
  .content h1 {
    font-size: 2.3rem;
  }
  .content .typewriter {
    font-size: 2rem;
  }
  .content p {
    font-size: 1rem;
  }
  .social-links i {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.3rem;
  }
  .content button {
    width: 60%;
    height: 50px;
    font-size: 1.1rem;
  }
  .about {
    padding: 50px 30px;
  }
  section .title span {
    font-size: 2rem;
  }
  .about .left img {
    width: 300px;
    height: 300px;
  }
  section .topic {
    font-size: 1.7rem;
  }
  .about-details .right p {
    font-size: 1rem;
  }
  section .button button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  .skills {
    padding: 50px 30px;
  }
  .skills-details .experience .num {
    width: 140px;
    height: 140px;
    font-size: 3.5rem;
  }
  .skills-details .boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .skills-details .boxes .topic {
    font-size: 1.2rem;
  }
  .skills-details .boxes .per {
    font-size: 3rem;
  }
  .services {
    padding: 50px 30px;
  }
  .services .boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .services .boxes .box {
    padding: 30px 20px;
  }
  .services .boxes .box .icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 1.3rem;
  }
  .services .boxes .box .topic {
    font-size: 1.3rem;
  }
  .services .boxes .box p {
    font-size: 1rem;
  }
  .contact {
    padding: 50px 30px;
  }
  .contact .content {
    margin: 0 auto;
  }
  .contact-info .topic {
    font-size: 1.7rem;
  }
  .contact-info p {
    font-size: 1rem;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .contact-text h4 {
    font-size: 1.1rem;
  }
  .contact-form {
    padding: 30px 25px;
  }
  footer .text span {
    font-size: 1rem;
  }
  .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .page-section {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .page-section:not(:first-child) {
    margin-top: 80px;
  }
  .scroll-indicator {
    display: block !important;
  }
}
@media screen and (min-width: 1204px) {
  .mobile-menu-btn {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
  .nav-container {
    justify-content: space-around;
    padding: 0;
  }
  .nav-container .links {
    display: flex;
    list-style: none;
  }
  .nav-container .links a {
    position: relative;
    font-size: 1.1rem;
    color: #a9a39a;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
  }
  .nav-container .links a:hover {
    color: var(red);
  }
  section {
    padding: 0;
  }
  section .main-container {
    flex-direction: row;
    justify-content: space-between;
    padding-left: 100px;
    padding-right: 50px;
    gap: 50px;
    margin-top: 7rem;
    scroll-margin-top: 3rem;
  }
  .main-container .image {
    width: 350px;
    height: 350px;
    order: 2;
  }
  .main-container .content {
    width: 50%;
    text-align: left;
    order: 1;
  }
  .content h1 {
    font-size: 2.5rem;
  }
  .content .typewriter {
    font-size: 1.8rem;
  }
  .content p {
    font-size: 1.1rem;
  }
  .social-links {
    justify-content: flex-start;
    margin: 25px -10px;
  }
  .social-links i {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    margin: 0 15px;
  }
  .content button {
    width: 50%;
    margin: 20px -7px;
    font-size: 1.2rem;
  }
  .about {
    padding: 5rem 0;
  }
  section .content {
    width: 80%;
  }
  .about .about-details {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  section .title span {
    font-size: 2.5rem;
  }
  .about .left {
    width: 45%;
    display: block;
  }
  .about .left img {
    width: 400px;
    height: 400px;
  }
  .about-details .right {
    width: 55%;
    text-align: left;
  }
  section .topic {
    font-size: 2rem;
  }
  .about-details .right p {
    text-align: justify;
    font-size: 1.1rem;
  }
  .skills {
    padding: 5rem 0;
  }
  .skills .skills-details {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .skills-details .text {
    width: 50%;
    text-align: left;
  }
  .skills-details .experience {
    align-items: flex-start;
    margin: 0;
  }
  .skills-details .experience .num {
    width: 180px;
    height: 180px;
    font-size: 4.5rem;
  }
  .skills-details .experience .exp {
    font-size: 1rem;
  }
  .skills-details .boxes {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .skills-details .boxes .topic {
    font-size: 1.3rem;
  }
  .skills-details .boxes .per {
    font-size: 3.5rem;
  }
  .skills-details .box {
    width: calc(50% - 20px);
    margin: 20px 0;
  }
  .services {
    padding: 5rem 0;
  }
  .services .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .services .boxes .box {
    width: calc(33.3333333333% - 20px);
    margin: 20px 0;
  }
  .services .boxes .box .icon {
    height: 60px;
    width: 60px;
    line-height: 60px;
    font-size: 1.5rem;
  }
  .services .boxes .box .topic {
    font-size: 1.5rem;
  }
  .services .boxes .box p {
    font-size: 1.1rem;
  }
  .contact {
    padding: 5rem 0;
  }
  .contact .content {
    width: 80%;
  }
  .contact-content {
    flex-direction: row;
    gap: 4rem;
  }
  .contact-info {
    width: 50%;
  }
  .contact-info .topic {
    font-size: 2rem;
    text-align: left;
  }
  .contact-info p {
    font-size: 1.1rem;
    text-align: left;
  }
  .contact-form {
    width: 50%;
    padding: 2.5rem;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .contact-text h4 {
    font-size: 1.2rem;
  }
  .btn-primary {
    width: auto;
  }
  footer .text span {
    font-size: 1.1rem;
  }
  .back-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .nav-container .links a {
    font-size: 1.1rem;
    margin: 0 25px;
  }
  .main-container .image {
    width: 400px;
    height: 400px;
  }
  .content h1 {
    font-size: 2.5rem;
  }
  .content .typewriter {
    font-size: 2rem;
  }
  .content p {
    font-size: 1rem;
  }
  .about .left img {
    width: 450px;
    height: 450px;
  }
  section .topic {
    font-size: 2.2rem;
  }
  .skills-details .boxes .per {
    font-size: 4rem;
  }
}/*# sourceMappingURL=main.css.map */