/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  /* Prevent text selection and copying */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Prevent right-click context menu */
  -webkit-touch-callout: none;
}

/* Allow text selection in form inputs */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 80px;
  background-color: #ffffff;
  background-image:
    radial-gradient(#bbbbbb 1px, transparent 1px);
  background-size: 23px 23px;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* Form Animations */
.form-group {
  position: relative;
  overflow: hidden;
}

.form-group input,
.form-group textarea {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.form-group label {
  transition: all 0.3s ease;
}

.form-group input:focus+label,
.form-group textarea:focus+label {
  color: #000;
  transform: translateY(-25px);
}

/* Loading Animation */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Project Card Hover Effects */
.color-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Social Icons Hover Animation */
.icon {
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}


/* DESKTOP NAV - Apple Liquid Glass Effect */

nav,
.nav-links {
  display: flex;
}

#desktop-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  padding: 0;

  /* Remove default styles */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

/* Dynamic Island Container */
#desktop-nav nav {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 40px;
  padding: 0.75rem 2rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);

  /* Gooey Morphic Effect */
  filter: contrast(20) brightness(1.1);

  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Blur layer for gooey effect */
#desktop-nav nav::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: inherit;
  border-radius: inherit;
  filter: blur(20px);
  z-index: -1;
  opacity: 0.6;
}

/* Hover expansion effect */
#desktop-nav:hover nav {
  transform: scale(1.05);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Active/Scrolled state */
#desktop-nav.scrolled nav {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

nav {
  justify-content: space-between;
  align-items: center;
  height: auto;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 0.95rem;
  align-items: center;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Gooey blob effect on hover */
.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
  filter: blur(10px);
}

.nav-link:hover::before {
  width: 120%;
  height: 300%;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.3px;
}

.logo:hover {
  cursor: pointer;
  color: #f0f0f0;
  transform: scale(1.05);
}

/* HAMBURGER MENU */
#hamburger-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-icon span {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.menu-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  max-height: none;
  overflow: hidden;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-links a {
  display: block;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 10px;
  margin: 0.5rem 0;
}

.menu-links a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  text-decoration: none;
}

.menu-links li {
  list-style: none;
  margin: 1rem 0;
}

.menu-links.open {
  right: 0;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Code-style for Professional Summary */
.code-style {
  font-family: 'Lucida Console', 'Monaco', 'Courier New', monospace;
  background: #f5f5f5;
  color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95em;
  overflow-x: auto;
  margin-top: 16px;
  white-space: pre-wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 1.6;
}

/* SECTIONS */

section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
}

.section-container {
  display: flex;
}

/* PROFILE SECTION */

#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

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

.section__text p {
  font-weight: 600;
}

.section__text__p1 {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.section__text__p3 {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}

.section__text__job {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}

.section__text__p3 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000;
  margin-bottom: 3rem;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.icon {
  cursor: pointer;
  height: 2rem;
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}

/* ABOUT SECTION */

#about {
  position: relative;
  padding-top: 15vh;
}

.about-containers {
  display: flex;
  gap: 4rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
  justify-content: center;
  align-items: stretch;
}

.about-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-pic {
  border-radius: 2rem;
}

.arrow {
  position: absolute;
  right: -5rem;
  bottom: 2.5rem;
}

.details-container {
  padding: 2rem;
  flex: 1;
  background: white;
  border-radius: 1.5rem;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.details-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #000;
}

.details-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: #333;
}

.details-container p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.details-container .icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
}

.section-container {
  gap: 4rem;
  height: auto;
  padding: 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section__pic-container {
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.text-container {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.text-container h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}

.text-container p {
  color: #555;
  margin-bottom: 18px;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.8;
}

.text-container p strong {
  color: #000;
  font-weight: 600;
}

.text-container p:last-child {
  margin-bottom: 0;
}

/* Add spacing below the section heading */
.section__text__p1 {
  margin-bottom: 2rem;
}

/* Add horizontal gap between the two containers */
.about-containers {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

/* Optional: Ensure containers don't stick together on small screens */
@media (max-width: 800px) {
  .about-containers {
    flex-direction: column;
    gap: 1rem;
  }
}

/* EXPERIENCE SECTION */

#experience {
  display: none;
}

/* PROJECTS SECTION */

#projects {
  position: relative;
}

.color-container {
  border-color: rgb(163, 163, 163);
  background: rgb(250, 250, 250);
}

.project-img {
  border-radius: 2rem;
  width: 90%;
  height: 90%;
}

.project-title {
  margin: 1rem;
  color: black;
}

.project-btn {
  color: black;
  border-color: rgb(163, 163, 163);
}

/* CONTACT SECTION */

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: fit-content;
  padding-bottom: 4rem;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
}

.contact-form-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.contact-form {
  background: white;
  border: rgb(53, 53, 53) 0.1rem solid;
  border-color: rgb(163, 163, 163);
  border-radius: 2rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: rgb(53, 53, 53);
  font-size: 1.75rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: move;
}

.form-group label {
  color: rgb(85, 85, 85);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid rgb(200, 200, 200);
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
}

#functional_requirements,
#tools_technologies,
#description {
  min-height: 60px;
  max-height: 100px;
}

.contact-form .btn {
  align-self: center;
  margin-top: 1rem;
}

@media screen and (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 0 1rem;
  }
}


/* FOOTER SECTION - Minimal Modern Design */

footer {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.footer-left .logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.footer-left .email-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-left .email-link:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.footer-right .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
}

.social-button {
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.social-button:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.book-call-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.book-call-btn:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Removed Drag and Drop Styles for Contact Form */
.form-group:hover {
  background-color: transparent;
}

.form-group::before {
  display: none;
}

#contact-info {
  background-color: rgb(250, 250, 250);
  padding: 4rem 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info-container {
  width: 100%;
  max-width: 1200px;
  background-color: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(53, 53, 53);
}

.contact-methods {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 1rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}

.contact-method:hover {
  background-color: rgb(245, 245, 245);
}

.contact-method .icon {
  width: 3rem;
  height: 3rem;
}

.contact-method div h3 {
  color: rgb(85, 85, 85);
  margin-bottom: 0.5rem;
}

.contact-method div p {
  color: rgb(53, 53, 53);
  font-weight: 500;
}

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

.quick-links h3 {
  margin-bottom: 1rem;
  color: rgb(85, 85, 85);
}

.quick-link-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 1200px) {
  #contact-info {
    padding: 4rem 2rem;
  }

  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 1200px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: block;
  }
}

#desktop-nav,
#desktop-nav .logo,
#desktop-nav .nav-links,
#desktop-nav .nav-links li a,
#desktop-nav .nav-links li a:hover {
  all: unset;
}

/* New Navigation Styles */
#desktop-nav.header-container {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  width: 55%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

#desktop-nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
  padding: 8px 15px;
  border-radius: 999px;
  line-height: 1;
}

#desktop-nav .logo:hover {
  color: #000;
  cursor: pointer;
}

#desktop-nav .logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #02bb02;
  ;
  /* Green dot */
  border-radius: 50%;
}

#desktop-nav .nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

#desktop-nav .nav-link {
  color: #555;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 8px 15px;
  border-radius: 999px;
  line-height: 1;
  display: inline-block;
}

#desktop-nav .nav-link.active,
#desktop-nav .nav-link:hover {
  color: #000;
}

#desktop-nav .nav-link[href="#contact"] {
  background-color: transparent;
  border: none;
  padding: 5px 15px;
}

/* Specific section active states */
#desktop-nav .nav-link[href="#about"].active,
body:has(#about:target) #desktop-nav .nav-link[href="#about"] {
  color: rgb(0, 0, 0);
}


#desktop-nav .nav-link[href="#projects"].active,
body:has(#projects:target) #desktop-nav .nav-link[href="#projects"] {
  color: rgb(0, 0, 0);
}

#desktop-nav .nav-link[href="#contact"].active,
body:has(#contact:target) #desktop-nav .nav-link[href="#contact"] {
  color: rgb(0, 0, 0);
}

/* Style for Resume link specifically */
#desktop-nav .nav-link[href$=".pdf"] {
  color: #555;
  padding: 8px 15px;
  border-radius: 999px;
  transition: all 0.3s ease;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#desktop-nav .nav-link[href$=".pdf"]:hover {
  transform: translateY(-1px);
  color: rgb(0, 0, 0);

}

.menu-links a[href$=".pdf"] {
  background-color: transparent;
  border-radius: 0;
  margin: 0;
}

/* Wave Emoji Animation */
.wave-emoji {
  display: inline-block;
  animation: wave 1.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.qwitcher-name {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
  margin: 10px 0 10px 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
}

.qwitcher-name::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -50px;
  right: -50px;
  bottom: -20px;
  z-index: -2;
}

.qwitcher-name:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #2c3e50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qwitcher-name::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.qwitcher-name:hover::before,
.qwitcher-name.horizontal-hover::before {
  width: 120%;
  height: 120%;
}

.qwitcher-name.horizontal-hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #2c3e50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.role-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
}

.role-title .italic-w,
.role-title .italic-eb {
  font-style: italic;
  color: #000000;
  font-size: 1.2em;
  font-family: 'Playfair Display', serif;
}

.role-title .smaller-text {
  font-size: 0.8em;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

.role-description {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.experience-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

/* Restore default cursor for interactive elements */
a,
button,
.icon,
input[type="submit"],
.nav-link {
  cursor: pointer;
}

/* MUSIC PLAYER SECTION */

#music-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, transparent, rgba(217, 217, 217, 0.2));
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
}

#music-player .section-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.music-container {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  position: relative;
}

.music-container iframe {
  width: 100% !important;
  height: 450px !important;
  border: none;
  display: block;
  margin: 0 auto;
}

#music-player .title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #333, #666);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

#music-player .section__text__p1 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  color: #555;
  text-align: center;
  width: 100%;
}

/* Media Queries for Music Player */
@media screen and (max-width: 1024px) {
  .music-container {
    max-width: 550px;
  }

  .music-container iframe {
    height: 400px !important;
  }

  #music-player .title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  #music-player {
    padding: 4rem 1rem;
  }

  .music-container {
    max-width: 500px;
  }

  .music-container iframe {
    height: 380px !important;
  }

  #music-player .title {
    font-size: 2.2rem;
  }

  #music-player .section__text__p1 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  #music-player {
    padding: 3rem 0.5rem;
  }

  .music-container {
    width: 95%;
  }

  .music-container iframe {
    height: 350px !important;
  }

  #music-player .title {
    font-size: 2rem;
  }

  #music-player .section__text__p1 {
    font-size: 1.3rem;
  }
}

/* AI Section Styles */
.ai-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f6f8ff 0%, #f0f3ff 100%);
  overflow: hidden;
}

.ai-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.ai-content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ai-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.ai-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(66, 133, 244, 0.1), rgba(66, 133, 244, 0.05));
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  background: linear-gradient(45deg, rgba(52, 168, 83, 0.1), rgba(52, 168, 83, 0.05));
}

@media (max-width: 768px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

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

  .ai-stats {
    grid-template-columns: 1fr;
  }
}

/* Chat Button and Chatbase Widget Integration */
.chat-button-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.chat-button:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
}

#hamburger-nav .logo {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s ease;
}

#desktop-nav .logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* PWA Styles */
.pwa-install-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pwa-install-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

.pwa-install-button i {
  font-size: 0.8rem;
}

/* Update Notification */
.update-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 300px;
  animation: slideInFromRight 0.3s ease;
}

.update-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.update-content span {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.update-btn,
.dismiss-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.update-btn {
  background: #000;
  color: white;
}

.update-btn:hover {
  background: #333;
}

.dismiss-btn {
  background: #f5f5f5;
  color: #666;
}

.dismiss-btn:hover {
  background: #e0e0e0;
}

/* Welcome Notification */
.welcome-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 350px;
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-content h3 {
  margin-bottom: 12px;
  color: #333;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.welcome-content p {
  margin-bottom: 16px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.code-summary-font {
  font-family: 'Fira Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
  background: #f5f7fa;
  color: #222;
  font-size: 1rem;
  padding: 1.2em;
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.welcome-btn {
  background: #000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.welcome-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* PWA-specific styles when installed */
.pwa-installed body {
  padding-top: 0;
}

.pwa-installed #desktop-nav.header-container {
  top: 0;
  margin-top: 0;
}

/* Mobile App Enhancements */
@media (display-mode: standalone) {
  body {
    padding-top: 20px;
  }

  #desktop-nav.header-container {
    top: 10px;
  }

  /* Hide browser-specific elements in standalone mode */
  .browser-only {
    display: none;
  }
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {

  .btn,
  button,
  .nav-link,
  .chat-button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
  }

  .form-group input,
  .form-group textarea {
    min-height: 44px;
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 12px;
  }

  .hamburger-icon {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
  }

  .social-button {
    min-height: 44px;
    padding: 8px 15px;
  }
}

/* Mobile-specific improvements */
@media screen and (max-width: 768px) {

  /* Better spacing for mobile */
  .chat-button-container {
    margin: 30px 0;
  }

  .chat-button {
    padding: 12px 30px;
    font-size: 1.1rem;
    min-height: 48px;
  }

  /* Improved form spacing */
  .contact-form {
    margin: 1rem;
    border-radius: 1.5rem;
  }

  /* Better button spacing */
  .btn-container {
    margin: 1.5rem 0;
    gap: 1rem;
  }

  /* Mobile navigation improvements */
  .menu-links a {
    margin: 0.8rem 0;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    border-radius: 12px;
    width: 80%;
    max-width: 300px;
  }

  /* Better footer spacing on mobile */
  footer {
    margin-top: 2rem;
  }

  .footer-content {
    gap: 1.5rem;
  }
}

/* Extra small mobile optimizations */
@media screen and (max-width: 480px) {
  .chat-button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .menu-links a {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    width: 90%;
  }

  .section__text {
    padding: 0 1rem;
  }

  .contact-form {
    margin: 0.5rem;
    padding: 1rem;
  }
}

/* PWA mobile adjustments */
@media (display-mode: standalone) and (max-width: 768px) {
  body {
    padding-top: 20px;
  }

  #hamburger-nav {
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: 15px;
    margin: 0 auto;
    max-width: calc(100% - 20px);
  }

  .pwa-install-button {
    display: none;
    /* Hide install button when already installed */
  }
}

/* Smooth animations for mobile */
@media screen and (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-icon,
  .menu-links a,
  .chat-button,
  .btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

/* Offline indicator */
.offline-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ff6b6b;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 10000;
  animation: slideInFromLeft 0.3s ease;
}

.offline-indicator.online {
  background: #4ecdc4;
}

/* Animations */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Safe area adjustments for notched devices */
@supports (padding-top: env(safe-area-inset-top)) {
  .pwa-installed body {
    padding-top: env(safe-area-inset-top);
  }

  .pwa-installed #desktop-nav.header-container {
    top: calc(env(safe-area-inset-top) + 10px);
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  #profile {
    height: fit-content;
    min-height: 90vh;
  }

  .qwitcher-name {
    font-size: 3rem;
  }

  .role-title {
    font-size: 2rem;
  }
}

/* Mobile body adjustments */
@media screen and (max-width: 1200px) {
  body {
    padding-top: 80px;
  }
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 70px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Footer Responsive Design */
@media screen and (max-width: 768px) {
  footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-left .logo {
    font-size: 1.3rem;
  }

  .footer-left .email-link {
    font-size: 0.85rem;
  }

  .footer-right .social-links {
    justify-content: flex-start;
    width: 100%;
  }

  .social-button {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding-top: 1.25rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .book-call-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/* ========================================
   ANDROID APP-LIKE ENHANCEMENTS
   ======================================== */

/* Floating Action Button (FAB) for Mobile */
.fab-contact {
  display: none !important;
  /* Hidden to avoid conflict with chatbot */
}

/* Bottom Navigation Bar (Android-style) */
.bottom-nav {
  display: none !important;
  /* Hidden - keeping design minimal */
}

/* Scroll to Top Button - Keep this one */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Card-based Layout for Mobile */
@media screen and (max-width: 768px) {
  .details-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .details-container:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }

  .color-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Pull-to-Refresh Indicator */
.ptr-indicator {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.ptr-indicator.active {
  transform: translateX(-50%) translateY(0);
}

/* Swipe Indicator */
.swipe-indicator {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  pointer-events: none;
  display: none;
}

.swipe-indicator.show {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .swipe-indicator {
    display: block;
  }
}

/* Loading Skeleton Screens */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Bottom Sheet Modal (Material Design) */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  max-height: 90vh;
  overflow-y: auto;
  padding: env(safe-area-inset-bottom) 0 0 0;
}

.bottom-sheet.open {
  transform: translateY(0);
}

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 12px auto;
}

.bottom-sheet-content {
  padding: 0 1.5rem 1.5rem;
}

/* Auto-hide Navigation on Scroll (Android Pattern) */
@media screen and (max-width: 768px) {
  #hamburger-nav {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #hamburger-nav.nav-hidden {
    transform: translateY(-100%);
  }
}

/* Improved Touch Feedback */
@media (hover: none) and (pointer: coarse) {

  .btn:active,
  .chat-button:active,
  .social-button:active,
  .book-call-btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
  }

  .nav-link:active,
  .menu-links a:active {
    background: rgba(0, 0, 0, 0.08);
  }
}

/* Snackbar Notifications (Material Design) */
.snackbar {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #323232;
  color: white;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90%;
}

.snackbar.show {
  transform: translateX(-50%) translateY(0);
}

/* Scroll to Top Button (Mobile-friendly) */
.scroll-to-top {
  position: fixed;
  bottom: 140px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 997;
  border: none;
  backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
  display: flex;
}

.scroll-to-top:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Improved Form Animations for Mobile */
@media screen and (max-width: 768px) {
  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .contact-form .btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
    border-radius: 12px;
  }
}

/* Safe Area Support for Notched Devices */
@supports (padding: env(safe-area-inset-bottom)) {
  /* Removed bottom nav padding since we're not using it */
}

/* Disable Selection on Interactive Elements (App-like) */
.btn,
.chat-button,
.nav-link,
.menu-links a,
.social-button,
.fab-contact,
.bottom-nav-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Momentum Scrolling for iOS and Android */
section {
  -webkit-overflow-scrolling: touch;
  /* Note: overflow-scrolling is a legacy property, modern browsers use touch-action */
  touch-action: pan-y;
}

/* Optimize Font Rendering on Mobile */
@media screen and (max-width: 768px) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}