/* ==========================================
   Veldara Premium Design System & Styles
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #867375; /* Muted Warm Taupe / Slate-Rose */
  --accent-color: #6B83A6;    /* Muted Steel Blue / Slate Blue */
  --accent-color-rgb: 107, 131, 166;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Force thin antialiased rendering across all text elements */
* {
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}

/* Universal Font Rules (Headings/Titles -> Outfit, Body/Text -> Inter) */
h1, h2, h3, h4, h5, h6,
.logo-laura,
.logo,
.partners-title,
.services-title,
.what-i-do-title,
.statement-text,
.stat-number,
.contact-heading,
.footer-logo,
.welcome-subtitle,
.contact-subtitle,
#hero .subtitle {
  font-family: 'Outfit', sans-serif !important;
}

body, p, a, span, li, button, input, textarea, code, .tag {
  font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }



/* Custom Cursor Follower */
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid #ffffff;
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              background-color 0.3s ease;
}
.custom-cursor-ring.hovering {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.12);
}
.custom-cursor-follower.hovering {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.85);
}



/* Scroll Video */
#scroll-video-container {
  position: fixed;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: -10;
  background: #010101;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#scroll-video-container canvas,
#scroll-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#scroll-video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}

/* Particles Canvas */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Hero Animation Zone */
#hero-animation-zone {
  position: relative;
  width: 100%;
  background: transparent;
  color: #ffffff;
  z-index: 2;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3.5rem;
  background: rgba(1, 1, 1, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-bottom 0.3s ease;
}
nav.scrolled {
  padding: 1rem 3.5rem;
  background: rgba(1, 1, 1, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
nav .logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
nav .logo:hover {
  opacity: 0.9;
}
nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav .nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}
nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
nav .nav-links a:hover {
  color: #ffffff;
}
nav .nav-links a:hover::after {
  width: 100%;
}
nav .social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
nav .social a {
  color: #a3a3a3;
  transition: color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
}
nav .social a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
nav .social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  will-change: opacity;
  overflow: hidden;
  background: transparent;
}
#hero .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,1,1,0.9) 0%, rgba(1,1,1,0.4) 50%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}
#hero .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 8rem;
}
#hero .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
#hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 52rem;
  letter-spacing: -0.025em;
  color: #ffffff;
}
#hero h1 .underlined {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
#hero h1 .underlined .line {
  display: none;
}
#hero h1 .underlined span {
  position: relative;
}
#hero .ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
#hero .code-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 0.875rem 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
#hero .code-box:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(20, 20, 20, 0.5);
  transform: translateY(-1px);
}
#hero .code-box .prompt {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}
#hero .code-box code {
  font-size: 0.875rem;
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
#hero .code-box .copy-icon {
  width: 14px;
  height: 14px;
  color: #6b7280;
  margin-left: 0.5rem;
  transition: color 0.25s ease;
}
#hero .code-box:hover .copy-icon {
  color: #ffffff;
}
#hero .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}
#hero .cta-btn:hover {
  background: #eaeaea;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}
#hero .bounce-arrow {
  position: relative; z-index: 10; display: flex; justify-content: center; padding-bottom: 2rem;
}
#hero .bounce-arrow svg { width: 1.5rem; height: 1.5rem; color: #6b7280; animation: bounce 1s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

/* Cards */
#fixed-cards {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 2rem 2.5rem; opacity: 0; pointer-events: none;
}
#fixed-cards .grid {
  max-width: 72rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
#fixed-cards .card h3 { font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-bottom: 1rem; }
#fixed-cards .card p { color: #d1d5db; font-size: 0.875rem; line-height: 1.6; }

/* Section 3 */
#section-three {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  justify-content: center; padding: 0 2.5rem 8rem;
}
#section-three .inner {
  position: relative; z-index: 10; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  opacity: 0; transform: translateY(32px); filter: blur(8px);
  transition: opacity 1s ease-out, transform 1s ease-out, filter 1s ease-out;
}
#section-three .inner.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
#section-three .inner p { color: #d1d5db; font-size: 1rem; margin-bottom: 0.75rem; }
#section-three .inner h2 { font-size: clamp(1.875rem, 6vw, 4.5rem); font-weight: 700; }

/* Content wrapper */
#content {
  position: relative;
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  nav {
    padding: 1.25rem 2rem;
  }
  nav.scrolled {
    padding: 0.85rem 2rem;
  }

}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav.scrolled {
    padding: 0.75rem 1.5rem;
  }
  nav .nav-links {
    display: none;
  }
  nav .logo {
    font-size: 1.25rem;
  }
  #hero .content {
    padding-bottom: 6rem;
  }
  #hero h1 {
    font-size: 2.25rem;
  }
  #hero .ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 20rem;
  }
  #hero .code-box, #hero .cta-btn {
    justify-content: center;
  }

  #section-three {
    padding-bottom: 6rem;
  }
  .custom-cursor-follower, .custom-cursor-ring {
    display: none;
  }
}

/* ========================================================
   LogoLoop styles (React Bits Variant Javascript + CSS)
   ======================================================== */
.partners-section {
  width: 100%;
  background: #ffffff;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 5;
}

.partners-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 2.5rem;
  text-align: center;
}

.logoloop {
  position: relative;
  width: 100%;
  overflow: hidden;
  --logoloop-gap: 64px;
  --logoloop-logoHeight: 48px;
  --logoloop-fadeColorAuto: #ffffff;
}

.logoloop__track {
  display: flex;
  width: max-content;
  will-change: transform;
  user-select: none;
  position: relative;
  z-index: 0;
}

.logoloop__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.logoloop__item {
  flex: 0 0 auto;
  margin-right: var(--logoloop-gap);
  display: flex;
  align-items: center;
}

.logoloop__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1a1a1a;
}

.logoloop__link:hover {
  color: #000000;
  transform: scale(1.1);
}

.logoloop__item svg {
  width: auto !important;
  height: var(--logoloop-logoHeight) !important;
  filter: none;
  transition: transform 0.3s ease;
}

.logoloop__item span {
  font-size: 0.9rem !important;
  color: #1a1a1a;
}

.logoloop--fade::before,
.logoloop--fade::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(30px, 12%, 180px);
  pointer-events: none;
  z-index: 10;
}

.logoloop--fade::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    transparent 100%
  );
}

.logoloop--fade::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--logoloop-fadeColor, var(--logoloop-fadeColorAuto)) 0%,
    transparent 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .logoloop__track {
    transform: translate3d(0, 0, 0) !important;
  }
  .logoloop__link {
    transition: none !important;
  }
}

/* Statement Section */
.statement-section {
  width: 100%;
  background: #ffffff;
  padding: 8rem 3.5rem; /* Aligned with desktop nav padding */
  display: flex;
  justify-content: flex-start; /* Aligned left, not centered */
  align-items: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

.statement-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.statement-text {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  margin: 0;
  text-align: left;
}

.statement-text .about-char {
  transition: opacity 0.15s ease;
}

@media (max-width: 1024px) {
  .statement-section {
    padding: 6rem 2rem; /* Aligned with tablet/small desktop nav padding */
  }
}

@media (max-width: 768px) {
  .statement-section {
    padding: 5rem 1.5rem; /* Aligned with mobile nav padding */
  }
  .statement-text {
    font-size: 1.85rem;
    line-height: 1.3;
  }
}

/* ========================================================
   Stats Cards Section styles
   ======================================================== */
.stats-section {
  width: 100%;
  background: #ffffff;
  padding: 4rem 3.5rem 6rem; /* Aligned with desktop nav / statement padding */
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

.stats-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}

.stat-card {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-sizing: border-box;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 129, 147, 0.3);
  box-shadow: 0 12px 40px rgba(8, 129, 147, 0.08);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.025em;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

@media (max-width: 1024px) {
  .stats-section {
    padding: 3rem 2rem 5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-card {
    padding: 2.5rem 2rem;
  }
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .stats-section {
    padding: 2rem 1.5rem 4rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ========================================================
   What We Do - Services (Sticky Stacked Cards)
   ======================================================== */
.services-section {
  width: 100%;
  background: #ffffff;
  padding: 6rem 3.5rem 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

.services-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 2.5rem;
  box-sizing: border-box;
}

.services-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  margin: 0;
  text-align: center;
}

.services-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 4px;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.services-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.services-cards-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  box-sizing: border-box;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative !important;
  top: auto !important;
  box-sizing: border-box;
  box-shadow: none;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  opacity: 0.92;
  transform: none;
}

.service-card-image-wrapper {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-sizing: border-box;
}

.service-card-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-image-wrapper img {
  transform: scale(1.025);
}

.service-card-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin-top: 0.5rem;
}

.project-serial {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

.serial-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #4e6151; /* Elegant dark sage green */
  margin-right: 8px;
}

.project-title-minimal {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-section {
    padding: 5rem 2rem 6rem;
  }
  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .services-header {
    padding: 0 1.5rem 2.5rem 1.5rem;
    margin-bottom: 3rem;
  }
  .service-card {
    padding: 0;
    border-radius: 0;
  }
  .project-title-minimal {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1.5rem 5rem;
  }
  .services-cards-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .services-header {
    padding: 0 1rem 2.5rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .service-card {
    border-radius: 0;
    padding: 0;
  }
  .project-title-minimal {
    font-size: 1.05rem;
  }
  .project-serial {
    font-size: 0.8rem;
  }
}

/* ========================================================
   Laura Navigation & Hero Styles
   ======================================================== */
.nav-laura {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3.5rem;
  background: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-laura.scrolled {
  padding: 0.85rem 3.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-laura.scrolled .logo-laura {
  color: #1a1a1a;
}
.nav-laura.scrolled .nav-links-laura a {
  color: #555555;
}
.nav-laura.scrolled .nav-links-laura a:hover {
  color: #1a1a1a;
}
.nav-laura.scrolled .nav-links-laura a.active-nav-box {
  color: #1a1a1a;
  border-color: #1a1a1a;
  background: rgba(0, 0, 0, 0.02);
}
.nav-laura.scrolled .nav-links-laura a.active-nav-box:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: #000000;
}

/* Navigation Dropdown Menu (Mobile-first, hidden on desktop) */
.nav-dropdown-menu {
  position: relative;
  display: none;
  z-index: 110;
}

.dropdown-trigger-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.3s ease;
  outline: none;
}

.nav-laura.scrolled .dropdown-trigger-btn {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-trigger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.nav-laura.scrolled .dropdown-trigger-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #000000;
}

.dropdown-trigger-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.dropdown-content-list {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: rgba(1, 1, 1, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.75rem;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-laura.scrolled .dropdown-content-list {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-dropdown-menu.active .dropdown-content-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-align: left;
}

.nav-laura.scrolled .dropdown-link-item {
  color: #555555 !important;
}

.dropdown-link-item:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

.nav-laura.scrolled .dropdown-link-item:hover {
  color: #000000 !important;
  background: rgba(0, 0, 0, 0.04);
}

.logo-laura {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.logo-laura:hover {
  opacity: 0.8;
}

.nav-links-laura {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links-laura a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c5c5c5;
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: color 0.25s ease;
}

.nav-links-laura a:hover {
  color: #ffffff;
}

.nav-links-laura a.active-nav-box {
  color: #ffffff;
  border: 1.5px solid #ffffff; /* White box outline */
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.3s, border-color 0.3s;
}

.nav-links-laura a.active-nav-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.nav-languages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666666;
}

.nav-languages a {
  color: #666666;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-languages a:hover, .nav-languages a.active-lang {
  color: #ffffff;
}

.nav-languages a.active-lang {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-separator {
  color: #444444;
  user-select: none;
}

#about {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url('portfolio/rishika_portrait_new.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 6rem 0 4rem; /* Full-width layout (0 horizontal padding) */
  z-index: 5;
  will-change: opacity;
}

#about::before {
  display: none;
}

/* White text overrides for cover photo overlay */
#about .hero-name {
  color: #ffffff;
}

#about .hero-bottom-left {
  color: rgba(255, 255, 255, 0.7);
}

#about .hero-bottom-right p {
  color: #ffffff;
}

.hero-middle-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0; /* Align edge-to-edge for full width */
  transform: translateY(20px); /* Positioned just below the nose */
  mix-blend-mode: difference; /* Apply color inversion blend mode here so all children blend with the background of #about */
}

.laura-hero-title-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-dot {
  display: none; /* Hide the blue/accent circles completely */
}

/* Infinite Scrolling Name Marquee (Right Scroll) */
.marquee-name-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
}

.marquee-name-track {
  display: inline-flex;
  gap: clamp(5rem, 10vw, 9rem); /* Scales with the name size so repeats read separately */
  padding-right: clamp(5rem, 10vw, 9rem); /* Must match gap for a seamless loop */
  animation: marquee-right 36s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0; /* Remove gap between dot and text as dots are hidden */
}

.marquee-item .hero-dot {
  display: none;
}

.marquee-name-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 16vw, 14rem); /* Increased font size */
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}

.hero-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 16vw, 14rem); /* Increased font size to match marquee */
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.hero-bottom-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 2rem;
  box-sizing: border-box;
}

.hero-bottom-left {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555555;
  letter-spacing: 0.2em;
}

.hero-bottom-right {
  text-align: right;
}

.hero-bottom-right p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ========================================================
   Welcome Section Styles
   ======================================================== */
.welcome-section {
  width: 100%;
  background: #ffffff;
  padding: 10rem 3.5rem 5rem 3.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

.welcome-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.5rem;
}

.welcome-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.welcome-subtitle::before,
.welcome-subtitle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #1a1a1a;
}

.welcome-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
}

.welcome-heading .cyan-text {
  color: var(--accent-color);
  font-style: italic;
}

.welcome-body {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.welcome-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #555555;
  margin: 0;
  text-align: center;
}

/* Welcome CTA row */
.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.welcome-actions .resume-btn {
  margin-top: 0;
}

/* Resume Download Button */
.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #1a1a1a;
  border-radius: 100px;
  padding: 0.85rem 2.25rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1.5rem;
}

.resume-btn:hover {
  color: #ffffff;
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.resume-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.resume-btn:hover svg {
  transform: translateY(2px);
}

@media (max-width: 1024px) {
  .welcome-section {
    padding: 8rem 2rem 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-laura {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .nav-laura.scrolled {
    padding: 0.75rem 1.5rem;
  }
  .nav-links-laura {
    display: none; /* Hide desktop nav links on mobile */
  }
  .nav-dropdown-menu {
    display: block;
  }
  
  #about {
    padding: 6rem 0 3rem; /* Full-width mobile layout (0 horizontal padding) */
    background-size: cover;
    background-position: center 15%;
  }
  
  .hero-middle-content {
    padding-left: 0;
    transform: translateY(10px); /* Positioned just below the nose on mobile */
  }
  
  .laura-hero-title-container {
    gap: 1.5rem;
  }
  
  .hero-dot {
    display: none;
  }
  
  .hero-name {
    font-size: clamp(4.5rem, 18vw, 8.5rem); /* Increased mobile font size */
  }
  
  .hero-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 0 0.5rem;
  }

  .welcome-section {
    padding: 6rem 1.5rem 3rem 1.5rem;
  }
  .welcome-container {
    gap: 2.5rem;
  }
  .welcome-heading {
    font-size: clamp(1.6rem, 8vw, 2.05rem);
    line-height: 1.25;
    text-align: center;
  }
  .welcome-heading br {
    display: none;
  }
  .welcome-body p {
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
  }
}

/* ========================================================
   What I Do Section styles
   ======================================================== */
.what-i-do-section {
  width: 100%;
  background: #ffffff;
  padding: 10rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.what-i-do-sidebar {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.what-i-do-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.what-i-do-title::before,
.what-i-do-title::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #1a1a1a;
}

.what-i-do-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
}

.what-i-do-category {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.what-i-do-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.what-i-do-category h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  text-align: center;
}

.what-i-do-category p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555555;
  margin: 0 auto 2.25rem;
  max-width: 46rem;
  text-align: center;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow, border-color, background;
}

.tag:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* ========================================================
   Responsive Media Queries for What I Do Section
   ======================================================== */
@media (max-width: 1024px) {
  .what-i-do-section {
    padding: 8rem 2rem;
    gap: 3rem;
  }
  .what-i-do-content {
    gap: 6rem;
  }
}

@media (max-width: 768px) {
  .what-i-do-section {
    padding: 6rem 1.5rem;
    gap: 3.5rem;
  }
  
  .what-i-do-sidebar {
    margin-bottom: 2rem;
  }
  
  .what-i-do-content {
    gap: 4.5rem;
  }
  
  .what-i-do-category {
    padding-bottom: 4rem;
  }
  
  .what-i-do-category h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }
  
  .what-i-do-category p {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  
  .tag {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* ========================================================
   Contact Section Styles
   ======================================================== */
.contact-section {
  width: 100%;
  background: #010101;
  color: #ffffff;
  padding: 5rem 3.5rem 10rem 3.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.contact-info {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.contact-subtitle::before,
.contact-subtitle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
}

.contact-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-align: left;
}

.contact-heading .cyan-text {
  color: var(--accent-color);
  font-style: italic;
}

.contact-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a3a3a3;
  margin: 0;
  max-width: 38rem;
  text-align: left;
}

.quick-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-action-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.contact-action-btn .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.whatsapp-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

.email-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.email-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

.calendly-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.01);
  margin-top: 1rem;
}

.calendly-placeholder-icon {
  color: #737373;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.calendly-placeholder-icon svg {
  width: 100%;
  height: 100%;
}

.calendly-placeholder-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}

.calendly-placeholder-text span {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-form-container {
  width: 50%;
  max-width: 650px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.15rem 1rem;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #737373;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Label Logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background: #ffffff;
  padding: 0 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(var(--accent-color-rgb), 0.1);
  background: rgba(0, 0, 0, 0.02);
}

.submit-form-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.15rem 2rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-form-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.submit-form-btn .send-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.submit-form-btn:hover .send-icon {
  transform: translate(2px, -2px);
}

/* ========================================================
   Footer Section Styles
   ======================================================== */
.footer-section {
  --footer-bg: #010101;
  --footer-border: rgba(255, 255, 255, 0.05);
  --footer-border-inner: rgba(255, 255, 255, 0.08);
  --footer-logo-color: #ffffff;
  --footer-link-color: #a3a3a3;
  --footer-link-hover: #ffffff;
  --footer-copyright-color: #a3a3a3;

  width: 100%;
  background: var(--footer-bg);
  padding: 2.5rem 3.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--footer-border);
}

.footer-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--footer-logo-color);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 2.25rem;
}

.footer-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--footer-link-color);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--footer-link-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--footer-border-inner);
  padding-top: 1.5rem;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--footer-copyright-color);
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--footer-link-color);
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-socials a:hover {
  color: var(--footer-link-hover);
}

/* Light mode footer overrides for subpages */
body.about-page:not(.dark-theme) .footer-section,
body.project-detail-page:not(.dark-theme) .footer-section,
body.project-list-page:not(.dark-theme) .footer-section {
  --footer-bg: #ffffff;
  --footer-border: rgba(0, 0, 0, 0.08);
  --footer-border-inner: rgba(0, 0, 0, 0.08);
  --footer-logo-color: #1a1a1a;
  --footer-link-color: #555555;
  --footer-link-hover: #1a1a1a;
  --footer-copyright-color: #777777;
}

/* ========================================================
   Responsive Media Queries for Contact & Footer
   ======================================================== */
@media (max-width: 1024px) {
  .contact-section {
    padding: 4rem 2rem 8rem 2rem;
  }
  .contact-container {
    gap: 3rem;
  }
  .footer-section {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem 6rem 1.5rem;
  }
  .contact-container {
    flex-direction: column;
    gap: 4rem;
  }
  .contact-info {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .contact-form-container {
    width: 100%;
  }
  .contact-subtitle {
    justify-content: center;
  }
  .contact-heading {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
    line-height: 1.25;
    margin: 0 auto;
    text-align: center;
  }
  .contact-heading br {
    display: none;
  }
  .contact-description {
    text-align: center;
    margin: 0 auto;
  }
  .quick-contact-actions {
    justify-content: center;
  }
  .footer-section {
    padding: 2.5rem 1.5rem;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-copyright {
    text-align: center;
  }
}

/* ========================================================
   Detail and List Page Overrides (Force Light Mode Navigation)
   ======================================================== */
body.project-detail-page:not(.dark-theme),
body.project-list-page:not(.dark-theme) {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

body.project-detail-page:not(.dark-theme) #particles-canvas,
body.project-list-page:not(.dark-theme) #particles-canvas {
  display: none !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura,
body.project-list-page:not(.dark-theme) .nav-laura {
  padding: 1.25rem 3.5rem;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura .logo-laura,
body.project-list-page:not(.dark-theme) .nav-laura .logo-laura {
  color: #1a1a1a !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura .nav-links-laura a,
body.project-list-page:not(.dark-theme) .nav-laura .nav-links-laura a {
  color: #555555 !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura .nav-links-laura a:hover,
body.project-list-page:not(.dark-theme) .nav-laura .nav-links-laura a:hover {
  color: #1a1a1a !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura .nav-links-laura a.active-nav-box,
body.project-list-page:not(.dark-theme) .nav-laura .nav-links-laura a.active-nav-box {
  color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  background: rgba(0, 0, 0, 0.02) !important;
}

body.project-detail-page:not(.dark-theme) .nav-laura .nav-links-laura a.active-nav-box:hover,
body.project-list-page:not(.dark-theme) .nav-laura .nav-links-laura a.active-nav-box:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: #000000 !important;
}

/* Custom Phone Mockup Scrollbar Overrides */
.phone-grid-scroll::-webkit-scrollbar {
  width: 4px;
}
.phone-grid-scroll::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 2px;
}
.phone-grid-scroll {
  scrollbar-width: thin;
  scrollbar-color: #cccccc transparent;
}




/* ========================================================
   TEMPORARY DARK MODE TESTING STYLES
   ======================================================== */

body.dark-theme {
  background-color: #010101 !important;
  color: #ffffff !important;
}

body.dark-theme::-webkit-scrollbar-track {
  background: #010101;
}

body.dark-theme::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

body.dark-theme ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Base sections background overrides */
body.dark-theme .services-section,
body.dark-theme .welcome-section,
body.dark-theme .what-i-do-section,
body.dark-theme .contact-section,
body.dark-theme .footer-section {
  background: transparent !important;
}

body.dark-theme .partners-section {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .logoloop {
  --logoloop-fadeColorAuto: #010101 !important;
}

body.dark-theme .logoloop__item span {
  color: #ffffff !important;
}

body.dark-theme .logoloop__link {
  color: #ffffff !important;
}

body.dark-theme .logoloop__link:hover {
  color: #ffffff !important;
}

body.dark-theme .scribble-text-main {
  fill: #ffffff !important;
}

body.dark-theme .scribble-text-sub {
  fill: #a3a3a3 !important;
}

body.dark-theme .fido-stroke {
  stroke: #ffffff !important;
}

body.dark-theme .services-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .what-i-do-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Titles and headings styling overrides */
body.dark-theme .services-title,
body.dark-theme .partners-title,
body.dark-theme .welcome-subtitle,
body.dark-theme .welcome-heading,
body.dark-theme .what-i-do-title,
body.dark-theme .what-i-do-sidebar,
body.dark-theme .what-i-do-category h3 {
  color: #ffffff !important;
}

body.dark-theme .welcome-subtitle::before,
body.dark-theme .welcome-subtitle::after,
body.dark-theme .what-i-do-title::before,
body.dark-theme .what-i-do-title::after {
  background-color: #ffffff !important;
}

/* Text and body color updates */
body.dark-theme .welcome-body p,
body.dark-theme .what-i-do-category p,
body.dark-theme .services-link,
body.dark-theme .project-serial {
  color: #a3a3a3 !important;
}

body.dark-theme .services-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

body.dark-theme .services-link:hover {
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

/* Selected Portfolio Cards minimal style override */
body.dark-theme .project-title-minimal {
  color: #ffffff !important;
}

/* Custom tag buttons */
body.dark-theme .tag {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .tag:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.05) !important;
}

/* Resume download button */
body.dark-theme .resume-btn {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

body.dark-theme .resume-btn:hover {
  color: #010101 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08) !important;
}

/* Navigation bar scrolled state in dark mode */
body.dark-theme .nav-laura.scrolled {
  background: rgba(1, 1, 1, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .nav-laura.scrolled .logo-laura {
  color: #ffffff !important;
}

body.dark-theme .nav-laura.scrolled .nav-links-laura a {
  color: #a3a3a3 !important;
}

body.dark-theme .nav-laura.scrolled .nav-links-laura a:hover {
  color: #ffffff !important;
}

body.dark-theme .nav-laura.scrolled .nav-links-laura a.active-nav-box {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

body.dark-theme .nav-laura.scrolled .nav-links-laura a.active-nav-box:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
}

/* Navigation dropdown menu and items scrolled styling */
body.dark-theme .nav-laura.scrolled .dropdown-trigger-btn {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.dark-theme .nav-laura.scrolled .dropdown-trigger-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
}

body.dark-theme .nav-laura.scrolled .dropdown-content-list {
  background: rgba(1, 1, 1, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

body.dark-theme .nav-laura.scrolled .dropdown-link-item {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-theme .nav-laura.scrolled .dropdown-link-item:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Navigation header overrides specifically for detail and list pages */
body.dark-theme.project-detail-page .nav-laura,
body.dark-theme.project-list-page .nav-laura {
  background: rgba(1, 1, 1, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme.project-detail-page .nav-laura .logo-laura,
body.dark-theme.project-list-page .nav-laura .logo-laura {
  color: #ffffff !important;
}

body.dark-theme.project-detail-page .nav-laura .nav-links-laura a,
body.dark-theme.project-list-page .nav-laura .nav-links-laura a {
  color: #a3a3a3 !important;
}

body.dark-theme.project-detail-page .nav-laura .nav-links-laura a:hover,
body.dark-theme.project-list-page .nav-laura .nav-links-laura a:hover {
  color: #ffffff !important;
}

body.dark-theme.project-detail-page .nav-laura .nav-links-laura a.active-nav-box,
body.dark-theme.project-list-page .nav-laura .nav-links-laura a.active-nav-box {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

body.dark-theme.project-detail-page .nav-laura .nav-links-laura a.active-nav-box:hover,
body.dark-theme.project-list-page .nav-laura .nav-links-laura a.active-nav-box:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #ffffff !important;
}

/* ==================== PROJECTS LIST PAGE OVERRIDES (projects.html) ==================== */
body.dark-theme .projects-hero h1 {
  color: #ffffff !important;
}

body.dark-theme .projects-hero p {
  color: #a3a3a3 !important;
}

body.dark-theme .filter-btn {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #a3a3a3 !important;
}

body.dark-theme .filter-btn:hover,
body.dark-theme .filter-btn.active {
  background: #ffffff !important;
  color: #010101 !important;
  border-color: #ffffff !important;
}

body.dark-theme .project-media-wrapper {
  border: none !important;
}

body.dark-theme .project-meta-left {
  color: #a3a3a3 !important;
}

body.dark-theme .project-meta-title {
  color: #ffffff !important;
}

body.dark-theme .project-meta-category {
  color: #737373 !important;
}

/* Placeholder for missing image */
body.dark-theme .no-image-placeholder {
  background: #0d0d0d !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .no-image-text {
  color: #555555 !important;
}

/* ==================== PROJECT DETAIL PAGE OVERRIDES (project.html) ==================== */
body.dark-theme .back-to-portfolio {
  color: #a3a3a3 !important;
}

body.dark-theme .back-to-portfolio:hover {
  color: #ffffff !important;
}

body.dark-theme .project-content-col h1 {
  color: #ffffff !important;
}

body.dark-theme .project-title-tag {
  color: var(--accent-color) !important;
}

body.dark-theme .meta-item {
  color: #a3a3a3 !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .meta-item strong {
  color: #ffffff !important;
}

body.dark-theme .project-description-text {
  color: #a3a3a3 !important;
}

body.dark-theme .project-action-button {
  background: #ffffff !important;
  color: #010101 !important;
  border-color: #ffffff !important;
}

body.dark-theme .project-action-button:hover {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

body.dark-theme .project-nav-divider {
  background: rgba(255, 255, 255, 0.08) !important;
}

body.dark-theme .nav-project-btn span.nav-dir {
  color: #737373 !important;
}

body.dark-theme .nav-project-btn span.nav-title {
  color: #ffffff !important;
}

body.dark-theme .nav-project-btn:hover span.nav-dir,
body.dark-theme .nav-project-btn:hover span.nav-title {
  color: var(--accent-color) !important;
}
