/*
  Creative Management - Website Styles
  Theme: Professional blue, white, and gray
  Layout: Responsive flexbox/grid with CSS variables
*/

:root {
  --clr-bg: #0b1220;
  --clr-bg-elev: #101a30;
  --clr-surface: #ffffff;
  --clr-text: #0b1220;
  --clr-muted: #5f6c86;
  --clr-primary-600: #1a4fd6;
  --clr-primary-700: #0f3aa6;
  --clr-primary-800: #0a2a6b;
  --clr-accent: #00c2ff;
  --clr-page-bg: #f5f7fb;
  --clr-card-bg: #ffffff;
  --clr-card-subtle: #f2f6ff;
  --clr-border: #ecf0f8;
  --clr-nav-hover: #eaf0ff;
  --clr-header-bg: rgba(255, 255, 255, 0.85);
  --clr-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --clr-footer-bg: #0f1526;
  --clr-footer-text: #cbd4e6;
  --clr-footer-link: #0153f8;
  --clr-footer-border: #202a43;
  --clr-footer-copy: #9fb0d0;
  --header-height: 72px;
  --shadow-md: 0 10px 24px rgba(16, 26, 48, 0.15);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1200px;
  --gutter: 1rem;
}

@media (min-width: 980px) {
  :root {
    --header-height: 78px;
  }
}

@media (max-width: 979px) {
  :root {
    --header-height: 64px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--clr-text);
  background: var(--clr-page-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-height);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.two {
  grid-template-columns: repeat(1, 1fr);
}

.grid.three {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 760px) {
  .grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, var(--container));
  border-radius: 100px;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  top: 0.5rem;
  width: min(98%, 1400px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.site-header.scrolled .header-inner {
  width: 100%;
  max-width: none;
  padding-inline: 1.5rem;
  padding-block: 0.6rem;
}

.site-header.scrolled .logo img {
  width: clamp(42px, 5vw, 48px);
  height: clamp(42px, 5vw, 48px);
}

.site-header.scrolled .nav-dropdown-toggle,
.site-header.scrolled .lang-toggle,
.site-header.scrolled .theme-toggle,
.site-header.scrolled .nav-menu li a {
  padding-block: 0.6rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--clr-primary-800);
  letter-spacing: -0.5px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.logo:hover {
  transform: translateX(3px);
}


/* Removed logo background shapes */


.logo img {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
  transform: scale(1.08) rotate(2deg);
}

.logo span {
  background: linear-gradient(135deg, var(--clr-primary-800) 0%, var(--clr-primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.logo span br {
  display: none;
}

.logo:hover span {
  background: linear-gradient(135deg, var(--clr-primary-700) 0%, var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dark {
  display: none;
}

body[data-theme="dark"] .logo-light {
  display: none;
}

body[data-theme="dark"] .logo-dark {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 252, 255, 0.8) 100%);
  border: 1.5px solid rgba(26, 79, 214, 0.15);
  cursor: pointer;
  padding: 11px 10px;
  border-radius: 12px;
  order: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(16, 26, 48, 0.08);
  overflow: hidden;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.1) 0%, rgba(0, 194, 255, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-toggle:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
  border-color: rgba(26, 79, 214, 0.25);
  box-shadow: 0 4px 16px rgba(16, 26, 48, 0.12);
  transform: translateY(-2px);
}

.nav-toggle:hover::before {
  opacity: 1;
}

.nav-toggle:active {
  transform: translateY(0) scale(0.96);
}

.nav-toggle .bar {
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary-800), var(--clr-primary-700));
  display: block;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(26, 79, 214, 0.2);
}

.nav.open .nav-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav.open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav.open .nav-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  order: 1;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  color: var(--clr-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.nav-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.10) 100%);
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border: 1px solid rgba(26, 79, 214, 0.1);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary-600), var(--clr-primary-700), var(--clr-primary-600));
  border-radius: 3px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(26, 79, 214, 0.3);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(26, 79, 214, 0.2);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu li a.active,
.nav-menu li a:hover {
  color: var(--clr-primary-700);
  transform: translateY(-2px);
  font-weight: 700;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 14px;
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: left;
  letter-spacing: -0.2px;
  font-family: inherit;
}

.nav-dropdown-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.10) 100%);
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border: 1px solid rgba(26, 79, 214, 0.1);
}

.nav-dropdown-toggle:hover::before,
.nav-dropdown.open .nav-dropdown-toggle::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(26, 79, 214, 0.2);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--clr-primary-700);
  transform: translateY(-2px);
  font-weight: 700;
}

.nav-dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(26, 79, 214, 0.15);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(16, 26, 48, 0.18), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  padding: 0.5rem;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1003;
  pointer-events: none;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-dropdown-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.1) 0%, rgba(0, 194, 255, 0.08) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-dropdown-menu li a:hover {
  color: var(--clr-primary-700);
  transform: translateX(4px);
}

.nav-dropdown-menu li a:hover::before {
  opacity: 1;
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-menu li {
    text-align: center;
  }

  .nav-menu li a {
    text-align: center;
  }

  .nav-dropdown-toggle {
    text-align: center;
  }

  .nav-dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
}

.nav.open #nav-menu {
  display: block;
  position: fixed;
  left: 0;
  right: auto;
  top: calc(var(--header-height) + 4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 1.25rem;
  border-radius: 20px;
  margin: 0 1rem;
  width: calc(100% - 2rem);
  min-width: 280px;
  max-width: 400px;
  border: 1px solid rgba(236, 240, 248, 0.9);
  box-shadow: 0 24px 48px rgba(16, 26, 48, 0.18), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 980px) {
  .nav.open #nav-menu {
    position: static;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
}

/* Language Switcher */
.lang-switcher-wrapper {
  position: relative;
  order: 1;
}

.lang-toggle {
  border: 1.5px solid rgba(26, 79, 214, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
  color: var(--clr-primary-800);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 3px 12px rgba(16, 26, 48, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  min-width: 70px;
}

.lang-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
}

.lang-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 26, 48, 0.18), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
  border-color: rgba(26, 79, 214, 0.3);
}

.lang-toggle:hover::before {
  opacity: 1;
}

.lang-toggle:active {
  transform: translateY(-1px);
}

.lang-toggle:focus-visible {
  outline: 3px solid rgba(26, 79, 214, 0.4);
  outline-offset: 2px;
}

.lang-toggle i {
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(26, 79, 214, 0.2));
}

.lang-toggle:hover i {
  transform: scale(1.15);
}

.lang-arrow {
  font-size: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(26, 79, 214, 0.15);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(16, 26, 48, 0.15), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  pointer-events: none;
}

.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  color: var(--clr-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.lang-option:hover {
  background: rgba(26, 79, 214, 0.08);
  color: var(--clr-primary-700);
}

.lang-option:active {
  transform: scale(0.98);
}

.lang-check {
  color: var(--clr-primary-600);
  font-size: 0.85rem;
  display: none;
}

.lang-option[data-lang].active .lang-check,
.lang-option[data-lang]:has(+ .lang-option[data-lang].active) .lang-check {
  display: inline-block;
}

.theme-toggle {
  border: 1.5px solid rgba(26, 79, 214, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
  color: var(--clr-primary-800);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(16, 26, 48, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.10) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.theme-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 26, 48, 0.18), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
  border-color: rgba(26, 79, 214, 0.3);
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:active {
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(26, 79, 214, 0.4);
  outline-offset: 2px;
}

.theme-toggle .icon-moon {
  display: none;
}

.theme-toggle i {
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(26, 79, 214, 0.2));
}

.theme-toggle:hover i {
  transform: scale(1.15) rotate(15deg);
}

@media (min-width: 980px) {
  .lang-switcher-wrapper {
    margin-right: 0.5rem;
  }

  .theme-toggle {
    margin-left: 0.5rem;
  }
}

/* Mobile Header Styles */
@media (max-width: 979px) {
  .site-header {
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
  }

  .site-header.scrolled {
    width: 95%;
    border-radius: 25px;
  }

  .header-inner {
    padding: 0.6rem 1rem;
    gap: 0.25rem;
    min-height: var(--header-height);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header.scrolled .header-inner {
    padding-inline: 1rem;
    padding-block: 0.3rem;
    width: 100%;
    max-width: none;
  }

  .logo {
    gap: 0.25rem;
    flex-shrink: 0;
    min-width: 0;
  }

  .logo span {
    display: block;
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 700;
  }

  .logo span br {
    display: block;
  }

  @media (max-width: 360px) {
    .logo span {
      display: none;
    }
  }

  .logo img {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex-shrink: 0;
    transition: all 0.4s ease;
  }

  .site-header.scrolled .logo img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .nav {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .nav-toggle {
    padding: 8px 6px;
    order: 1;
    flex-shrink: 0;
  }

  .lang-switcher-wrapper {
    order: 0;
    flex-shrink: 0;
  }

  .lang-toggle {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
    min-width: 65px;
  }

  .lang-menu {
    right: auto;
    left: 0;
    min-width: 150px;
  }

  .theme-toggle {
    padding: 0.45rem 0.65rem;
    font-size: 0.9rem;
    order: 0;
    flex-shrink: 0;
    min-width: fit-content;
  }

  .nav.open #nav-menu {
    top: calc(var(--header-height) + 2px);
    left: 0.75rem;
    right: auto;
    width: calc(100% - 1.5rem);
    min-width: 280px;
    max-width: 400px;
    margin: 0;
    padding: 1rem;
    max-height: calc(100vh - var(--header-height) - 20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    text-align: left;
  }

  .nav-menu li {
    text-align: left;
    width: 100%;
  }

  .nav-menu li a {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    text-align: left;
    justify-content: flex-start;
    white-space: nowrap;
    width: 100%;
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-top: 0.25rem;
    pointer-events: auto;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu li a {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0.5rem 0;
    gap: 0.5rem;
    min-height: var(--header-height);
  }

  .logo {
    gap: 0.4rem;
  }

  .logo img {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .nav {
    gap: 0.4rem;
  }

  .nav-toggle {
    padding: 7px 5px;
  }

  .nav-toggle .bar {
    width: 22px;
    height: 2.5px;
  }

  .theme-toggle {
    padding: 0.4rem 0.55rem;
    font-size: 0.85rem;
  }

  .nav.open #nav-menu {
    left: 0.5rem;
    right: auto;
    width: calc(100% - 1rem);
    min-width: 260px;
    max-width: 380px;
    margin: 0;
    padding: 0.85rem;
    border-radius: 14px;
    text-align: left;
  }

  .nav-menu li {
    text-align: left;
    width: 100%;
  }

  .nav-menu li a {
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    text-align: left;
    justify-content: flex-start;
    white-space: nowrap;
    width: 100%;
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.4rem 0 0.4rem 1.5rem;
    margin-top: 0.2rem;
    pointer-events: auto;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu li a {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}

/* Hero */
/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
  background: var(--clr-page-bg);
  /* padding-top: var(--header-height); removed to move content up */
}

/* Hero Background Image with 3D Effect */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-style: preserve-3d;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1) translateZ(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-bg-dark {
  display: none;
}

.hero-bg-light {
  display: block;
}

body[data-theme="dark"] .hero-bg-light {
  display: none;
}

body[data-theme="dark"] .hero-bg-dark {
  display: block;
}

.hero:hover .hero-bg-image {
  transform: scale(1.15) translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.35) 100%);
  z-index: 1;
}

/* 3D Floating Shapes */
.hero-3d-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-shape {
  position: absolute;
  border-radius: 20px;
  opacity: 0.6;
  filter: blur(40px);
  animation: float3d 20s infinite ease-in-out;
  transform-style: preserve-3d;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.4), rgba(0, 194, 255, 0.3));
  top: 10%;
  right: 10%;
  animation-delay: 0s;
  transform: translateZ(50px) rotateZ(45deg);
}

.hero-shape-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.35), rgba(26, 79, 214, 0.25));
  bottom: 15%;
  left: 15%;
  animation-delay: -7s;
  transform: translateZ(-30px) rotateZ(-30deg);
}

.hero-shape-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.3), rgba(0, 194, 255, 0.2));
  top: 50%;
  right: 20%;
  animation-delay: -14s;
  transform: translateZ(20px) rotateZ(60deg);
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0) translateX(0) translateZ(0) rotateZ(0deg);
  }

  25% {
    transform: translateY(-30px) translateX(20px) translateZ(30px) rotateZ(5deg);
  }

  50% {
    transform: translateY(-20px) translateX(-15px) translateZ(-20px) rotateZ(-5deg);
  }

  75% {
    transform: translateY(-40px) translateX(10px) translateZ(15px) rotateZ(3deg);
  }
}

.hero-inner {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-content>* {
  opacity: 0;
  animation: heroFadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.3s;
}

.hero-features {
  animation-delay: 0.4s;
}

.hero-cta {
  animation-delay: 0.5s;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 79, 214, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 79, 214, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  transform: translateZ(20px);
  box-shadow: 0 8px 32px rgba(26, 79, 214, 0.2);
}

/* Hero Title with 3D Effect */
.hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  color: var(--clr-primary-800);
  letter-spacing: -1.5px;
  font-weight: 800;
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-800) 20%, var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.15), rgba(0, 194, 255, 0.1));
  filter: blur(30px);
  z-index: -1;
  opacity: 0.6;
}

/* Hero Subtitle */
.hero-subtitle {
  margin: 0 0 1.5rem;
  max-width: 700px;
  color: #4a4a4a;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  line-height: 1.6;
  font-weight: 400;
  transform: translateZ(20px);
  text-shadow: none;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  transform: translateZ(25px);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 79, 214, 0.15);
  border-radius: 10px;
  color: var(--clr-primary-800);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  transform: translateZ(10px);
  box-shadow: 0 4px 12px rgba(26, 79, 214, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 79, 214, 0.4);
  transform: translateY(-3px) translateZ(15px);
  box-shadow: 0 8px 24px rgba(26, 79, 214, 0.25);
}

.hero-feature i {
  color: #333333;
  font-size: 1.1rem;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .hero-inner {
    max-width: 1000px;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw + 0.75rem, 3rem);
  }

  .hero-features {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 2rem;
    width: 90%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-shape {
    opacity: 0.4;
    filter: blur(30px);
  }

  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }

  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }

  .hero-shape-3 {
    width: 150px;
    height: 150px;
  }

  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .hero-feature {
    flex: 1;
    min-width: 0;
    max-width: calc(33.333% - 0.35rem);
    justify-content: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }

  .hero-feature i {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .hero-cta .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

/* Gallery Hero Specific Adjustments */
.gallery-hero-section {
  min-height: 100vh !important;
  /* Full page height */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 0;
}

.gallery-hero-section .hero-inner {
  padding-top: 0;
  /* No top padding */
  padding-bottom: 0.1rem;
  margin-top: -5rem;
  /* Pull content upward more */
}

.gallery-hero-section .hero-badge {
  margin-bottom: 0.75rem !important;
}

.gallery-hero-section .gallery-hero-title {
  margin-bottom: 0.75rem !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  /* Slightly smaller for gallery */
  text-align: justify;
}

.gallery-hero-section .gallery-hero-subtitle {
  margin-bottom: 1rem !important;
  /* Space before description */
  max-width: 600px;
  font-weight: 500;
  /* Made slightly bolder */
  color: var(--clr-primary-700);
  text-align: justify;
}

.gallery-hero-section .gallery-hero-description {
  margin: 0 auto 1.5rem !important;
  max-width: 750px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-muted);
  opacity: 0.95;
  text-align: justify;
  padding: 0 1.5rem;
}

.gallery-hero-section .hero-features {
  margin-bottom: 0.8rem !important;
  gap: 0.6rem !important;
}

/* Gallery Hero Animations */
.gallery-hero-content>* {
  opacity: 0;
  animation: heroFadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.gallery-hero-content .hero-badge {
  animation-delay: 0.1s;
}

.gallery-hero-content .gallery-hero-title {
  animation-delay: 0.2s;
}

.gallery-hero-content .gallery-hero-subtitle {
  animation-delay: 0.3s;
}

.gallery-hero-content .gallery-hero-description {
  animation-delay: 0.4s;
}

.gallery-hero-content .hero-features {
  animation-delay: 0.5s;
}

.gallery-hero-content .hero-cta {
  animation-delay: 0.6s;
}

@media (max-width: 768px) {
  .gallery-hero-section {
    min-height: auto !important;
    padding-bottom: 1.5rem;
  }

  .gallery-hero-section .hero-inner {
    padding-top: 4.5rem;
    /* Space for mobile header */
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-700) 100%);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(26, 79, 214, .3),
    0 4px 12px rgba(26, 79, 214, .2),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(26, 79, 214, .4),
    0 6px 16px rgba(26, 79, 214, .3),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--clr-primary-700);
  border: 1px solid rgba(26, 79, 214, 0.3);
  box-shadow:
    0 8px 24px rgba(26, 79, 214, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(26, 79, 214, 0.5);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(26, 79, 214, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

body[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #5a9fff 0%, #3c78ff 100%);
  color: #ffffff;
  border-color: rgba(90, 159, 255, 0.3);
  box-shadow:
    0 12px 28px rgba(90, 159, 255, 0.4),
    0 4px 12px rgba(90, 159, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

body[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, #7ab5ff 0%, #5a9fff 100%);
  box-shadow:
    0 16px 36px rgba(90, 159, 255, 0.5),
    0 6px 16px rgba(90, 159, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  scroll-margin-top: 82px;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0 0 .5rem;
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2rem);
  color: var(--clr-primary-800);
}

.section-subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: var(--clr-muted);
}

/* About */
/* About Us Redesign */
.about {
  position: relative;
  overflow: hidden;
  background: var(--clr-page-bg);
}

.about::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 79, 214, 0.08) 0%, transparent 70%);
  z-index: 0;
  filter: blur(60px);
}

.about::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
  filter: blur(50px);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .about-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

/* Main Content Area */
.about-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.1), rgba(0, 194, 255, 0.1));
  color: var(--clr-primary-700);
  border: 1px solid rgba(26, 79, 214, 0.2);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(26, 79, 214, 0.05);
}

.about-heading {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--clr-primary-800);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clr-muted);
  font-weight: 400;
}

/* Metrics Grid */
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .about-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 79, 214, 0.1);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-primary-800) 0%, var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 79, 214, 0.2);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clr-primary-600), var(--clr-primary-800));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(26, 79, 214, 0.2);
}

.pillar h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-primary-800);
  line-height: 1.25;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* Aside Card */
.about-aside {
  position: relative;
}

.about-aside-card {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
}

.about-aside-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--clr-primary-600), var(--clr-accent));
}

.about-aside-media {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.about-aside-media img {
  width: 140px;
  height: auto;
}

.about-aside-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  text-align: center;
  margin: 0;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-primary-800);
  font-weight: 500;
}

.about-checklist li i {
  color: var(--clr-primary-600);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.about-signature-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-primary-800);
}

.about-signature-role {
  display: block;
  font-size: 0.85rem;
  color: rgba(10, 20, 40, 0.7);
  margin-top: 0.2rem;
}

.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--clr-primary-700);
  border: 1px solid rgba(26, 79, 214, 0.25);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(16, 26, 48, 0.16);
  border-color: rgba(26, 79, 214, 0.35);
}

.about-timeline {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 860px) {
  .about-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.timeline-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 247, 255, 0.92) 100%);
  border-radius: 20px;
  border: 1px solid rgba(236, 240, 248, 0.8);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 20px 44px rgba(16, 26, 48, 0.10);
  display: grid;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(26, 79, 214, 0.1) 0%, rgba(0, 194, 255, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(16, 26, 48, 0.16);
  border-color: rgba(26, 79, 214, 0.25);
}

.timeline-card:hover::after {
  opacity: 1;
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary-600);
}

.timeline-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--clr-primary-800);
}

.timeline-card p {
  margin: 0;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* Cards (Services) */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 79, 214, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.cards {
  margin-top: 1.5rem;
  position: relative;
}

.card {
  position: relative;
  background: linear-gradient(135deg, var(--clr-card-bg) 0%, var(--clr-card-subtle) 100%);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 26, 48, .1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, .08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(16, 26, 48, 0.15);
  border-color: var(--clr-primary-600);
}

.card:hover::before {
  opacity: 1;
}

.card .icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-700) 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  box-shadow: 0 6px 14px rgba(26, 79, 214, 0.25);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 28px rgba(26, 79, 214, .4);
}

.card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  color: var(--clr-primary-800);
  font-weight: 600;
  transition: color .3s ease;
}

.card:hover h3 {
  color: var(--clr-primary-700);
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--clr-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .cards .card {
    padding: 1rem;
    border-radius: 12px;
    gap: 0.5rem;
  }

  .cards .card .icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }

  .cards .card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .cards .card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .cards {
    margin-top: 1rem;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Solutions */
.solutions {
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 79, 214, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(15px);
}

.solutions::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.solutions .container {
  position: relative;
  z-index: 1;
}

.solutions-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 760px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.solution {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 255, 0.9) 100%);
  border: 1px solid rgba(236, 240, 248, 0.9);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 26, 48, 0.08);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.08) 0%, rgba(0, 194, 255, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.solution:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(16, 26, 48, 0.15);
  border-color: rgba(26, 79, 214, 0.4);
}

.solution:hover::before {
  opacity: 1;
}

.solution-media {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.06) 100%);
  border-radius: 14px;
  padding: 0.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 79, 214, 0.12);
  box-shadow: 0 8px 20px rgba(16, 26, 48, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution:hover .solution-media {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 18px 36px rgba(16, 26, 48, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 8px 16px rgba(16, 26, 48, 0.15));
  transition: filter 0.4s ease;
}

.solution:hover .solution-media img {
  filter: drop-shadow(0 12px 24px rgba(16, 26, 48, 0.22));
}

.solution-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.solution-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--clr-primary-800);
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.solution:hover .solution-body h3 {
  color: var(--clr-primary-700);
}

.solution-body p {
  margin: 0;
  color: var(--clr-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .solution {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solution-media {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: 0 auto;
  }
}

/* Strengths */
.strengths {
  position: relative;
  overflow: hidden;
}

.strengths::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 79, 214, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(14px);
}

.strengths::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(16px);
}

.strengths .container {
  position: relative;
  z-index: 1;
}

.strengths-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2rem);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 600px) {
  .strengths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .strengths-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.strength {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.92) 100%);
  border: 1px solid rgba(236, 240, 248, 0.9);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.5rem);
  box-shadow: 0 18px 40px rgba(16, 26, 48, 0.10);
  text-align: center;
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.strength::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.1) 0%, rgba(0, 194, 255, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.strength:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 26px 52px rgba(16, 26, 48, 0.18);
  border-color: rgba(26, 79, 214, 0.3);
}

.strength:hover::before {
  opacity: 1;
}

.strength .icon.xl {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-700) 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-size: 1.8rem;
  box-shadow: 0 20px 40px rgba(26, 79, 214, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.strength:hover .icon.xl {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 28px 56px rgba(26, 79, 214, 0.4);
}

.strength h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
  color: var(--clr-primary-800);
  font-weight: 700;
  transition: color 0.3s ease;
}

.strength:hover h3 {
  color: var(--clr-primary-700);
}

.strength p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--clr-muted);
  line-height: 1.7;
  font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.05rem);
}

/* Clients grid */
.clients-container {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  background: linear-gradient(145deg, #f8faff, #ffffff);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 16, 34, .12);
  border: 1px solid var(--clr-border);
}

.clients-container::before,
.clients-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients-container::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-page-bg), transparent);
}

.clients-container::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-page-bg), transparent);
}

.clients-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--clr-card-bg);
  border: 2px solid var(--clr-primary-600);
  color: var(--clr-primary-700);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(16, 26, 48, .15);
  font-size: 1.1rem;
}

.clients-btn:hover {
  background: var(--clr-primary-600);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(26, 79, 214, .3);
}

.clients-btn:active {
  transform: translateY(-50%) scale(.95);
}

.clients-btn-prev {
  left: 1rem;
}

.clients-btn-next {
  right: 1rem;
}

.clients-track {
  display: flex;
  gap: 2rem;
  animation: scrollClients 5s linear infinite;
  will-change: transform;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-track.manual {
  animation: none;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-slide {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.client-item {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: grid;
  place-items: center;
  min-width: 180px;
  height: 120px;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 26, 48, .08);
}

.client-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, .08), rgba(0, 194, 255, .05));
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 16px;
}

.client-item:hover::before {
  opacity: 1;
}

.client-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 24px 48px rgba(16, 26, 48, .18);
  border-color: rgba(26, 79, 214, .4);
}

.client-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .08));
}

.client-item:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .15));
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 600px) {
  .client-item {
    min-width: 200px;
    height: 140px;
    padding: 1.75rem 2.5rem;
  }

  .client-item img {
    max-height: 80px;
  }
}

@media (min-width: 900px) {
  .client-item {
    min-width: 220px;
    height: 160px;
    padding: 2rem 3rem;
  }

  .client-item img {
    max-height: 90px;
  }
}

@media (max-width: 600px) {
  .clients-btn {
    width: 40px;
    height: 40px;
    font-size: .95rem;
  }

  .clients-btn-prev {
    left: .5rem;
  }

  .clients-btn-next {
    right: .5rem;
  }

  .clients-slide {
    gap: 1rem;
  }

  .client-item {
    min-width: 140px;
    height: 85px;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
  }

  .client-item img {
    max-height: 45px;
  }
}

/* Reach */
.reach-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .reach-content {
    grid-template-columns: 1.1fr .9fr;
  }
}

.reach-map-container {
  position: relative;
}

.reach-map-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  box-shadow: 0 20px 50px rgba(16, 26, 48, .2);
}

.map-3d-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  z-index: 10;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  padding: .5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 26, 48, .15);
  border: 1px solid var(--clr-border);
}

body[data-theme="dark"] .map-3d-controls {
  background: rgba(15, 26, 50, .95);
  border-color: var(--clr-border);
}

.map-control-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--clr-card-bg);
  color: var(--clr-primary-700);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 2px 8px rgba(16, 26, 48, .1);
  border: 1px solid var(--clr-border);
}

.map-control-btn:hover {
  background: var(--clr-primary-600);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(26, 79, 214, .3);
}

.map-control-btn:active {
  transform: scale(.95);
}

.map-control-btn i {
  font-size: 1rem;
  pointer-events: none;
}

.map-3d-scene {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1500px;
  perspective-origin: center center;
  overflow: hidden;
  border-radius: 20px;
}

.map-3d-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
}

.map-3d-wrapper:active {
  cursor: grabbing;
}

.map-3d-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: brightness(1.05) contrast(1.1) saturate(1.2);
  transition: filter .3s ease;
  pointer-events: none;
  background: var(--clr-card-subtle);
  padding: 2rem;
  min-height: 100%;
  min-width: 100%;
}

.map-3d-shadow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .5) 0%, transparent 70%);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(-40px);
  transition: opacity .3s ease;
}

.map-3d-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg,
      rgba(26, 79, 214, .4) 0%,
      rgba(60, 120, 255, .3) 25%,
      transparent 50%,
      rgba(26, 79, 214, .3) 75%,
      rgba(26, 79, 214, .4) 100%);
  border-radius: 20px;
  z-index: 3;
  pointer-events: none;
  opacity: .7;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .7;
  }

  50% {
    opacity: .9;
  }
}

.reach-info {
  display: grid;
  gap: 1.5rem;
}

.reach-stats {
  margin-bottom: .5rem;
}

@media (max-width: 900px) {
  .reach-stats {
    grid-template-columns: 1fr;
  }
}

.reach-stat {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.reach-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 26, 48, .18);
}

.reach-stat .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--clr-card-subtle);
  color: var(--clr-primary-700);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reach-stat .stat-content h3 {
  margin: 0 0 .2rem;
  font-size: 1rem;
  color: var(--clr-primary-800);
}

.reach-stat .stat-content p {
  margin: 0;
  font-size: .85rem;
  color: var(--clr-muted);
}

.reach-features {
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.reach-features h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--clr-primary-800);
}

.reach-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.reach-points li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--clr-text);
  font-size: .95rem;
}

.reach-points i {
  color: var(--clr-primary-700);
  font-size: 1rem;
  flex-shrink: 0;
}

.reach-points strong {
  color: var(--clr-primary-800);
}

/* Gallery Hero Section - Modern Design */
.gallery-hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  background: var(--clr-primary-800);
  overflow: hidden;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Animated Background Shapes */
.gallery-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(60, 120, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -250px;
  left: -250px;
  animation: float 20s ease-in-out infinite;
  filter: blur(60px);
}

.gallery-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -300px;
  right: -300px;
  animation: float 25s ease-in-out infinite reverse;
  filter: blur(80px);
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.gallery-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .hero-illustration {
    transform: translateX(80px);
    justify-content: flex-end;
  }
}

.gallery-hero-section .hero-inner {
  text-align: right;
  align-items: right;
}

.gallery-hero-content {
  text-align: center;
  max-width: 150%;
  margin: 0;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .gallery-hero-content {
    margin-left: -2rem;
  }
}

.gallery-hero-section .hero-features {
  justify-content: flex-start !important;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 5px;
  width: 100%;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
}

.gallery-hero-section .hero-features::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.gallery-hero-section .hero-cta {
  justify-content: flex-start !important;
}

/* Illustration Styles */
.hero-illustration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-illustration {
    display: none;
  }
}

.illustration-main {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

  0%,
  100% {
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0);
  }

  50% {
    transform: perspective(1000px) rotateY(-10deg) rotateX(15deg) translateY(-20px);
  }
}

.illustration-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(30px);
}

.shape-1 {
  width: 150px;
  height: 150px;
  background: rgba(26, 79, 214, 0.4);
  top: 10%;
  right: 10%;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 194, 255, 0.3);
  bottom: 10%;
  left: 10%;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.illustration-card {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.card-1 {
  top: 15%;
  left: 15%;
  animation: floatCard 5s ease-in-out infinite;
}

.card-2 {
  bottom: 15%;
  right: 15%;
  animation: floatCard 5s ease-in-out infinite 2s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes floatCard {

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

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.gallery-hero .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 79, 214, 0.4);
  }
}

.gallery-hero .section-badge::before {
  content: '📸';
  font-size: 1.2rem;
  animation: rotate 4s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

.gallery-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--clr-primary-800) 0%, var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

body[data-theme="dark"] .gallery-hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #e0f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-hero-section .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

@keyframes titleGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(60, 120, 255, 0.6));
  }
}

.gallery-hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--clr-muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body[data-theme="dark"] .gallery-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Stats */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out backwards;
}

.gallery-stat-card:nth-child(1) {
  animation-delay: 0.2s;
}

.gallery-stat-card:nth-child(2) {
  animation-delay: 0.4s;
}

.gallery-stat-card:nth-child(3) {
  animation-delay: 0.6s;
}

.gallery-stat-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(26, 79, 214, 0.3);
}

.gallery-stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.gallery-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-hero {
    padding: 7rem 0 4rem;
  }

  .gallery-hero-title {
    margin-bottom: 1rem;
  }

  .gallery-hero-subtitle {
    margin-bottom: 2rem;
  }

  .gallery-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .gallery-stat-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 6rem 0 3rem;
  }

  .gallery-stats {
    margin-top: 2rem;
    gap: 1rem;
  }
}

/* Gallery */
/* 
  Modern Gallery Redesign 
  Added on: 2026-02-10
*/

.gallery {
  position: relative;
  padding: 6rem 0;
  background: var(--clr-page-bg);
}

.gallery .container {
  max-width: 1400px;
}

.gallery-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  background: var(--clr-card-bg);
  padding: 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.gallery-tabs .tab {
  border: none;
  background: transparent;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gallery-tabs .tab:hover {
  color: var(--clr-primary-600);
}

.gallery-tabs .tab.active {
  background: var(--clr-primary-600);
  color: #fff;
  box-shadow: 0 8px 20px -5px rgba(26, 79, 214, 0.4);
}

.gallery-group {
  display: none;
  animation: fadeInGallery 0.5s ease forwards;
}

.gallery-group.active {
  display: block;
}

@keyframes fadeInGallery {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.2) 0%, rgba(10, 18, 32, 0.4) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 26, 48, 0.15);
  border-color: var(--clr-primary-600);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-group-title {
  display: none;
}

/* Dark Mode Overrides */
[data-theme="dark"] .gallery-tabs {
  background: rgba(12, 20, 38, 0.95);
  border-color: rgba(91, 181, 255, 0.1);
}

[data-theme="dark"] .gallery-tabs .tab {
  color: #cbd4e6;
}

[data-theme="dark"] .gallery-tabs .tab:hover {
  color: var(--clr-accent);
}

[data-theme="dark"] .gallery-tabs .tab.active {
  background: var(--clr-primary-600);
  color: #fff;
}

[data-theme="dark"] .gallery-item {
  background: #0f1a32;
  border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .gallery-item:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .gallery {
    padding: 3rem 0;
  }

  .gallery-tabs-container {
    margin-bottom: 2rem;
  }

  .gallery-tabs {
    padding: 0.4rem;
    border-radius: 20px;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tabs .tab {
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 2rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .gallery-item {
    border-radius: 6px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .page-subtitle {
    font-size: 0.85rem;
  }
}


/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 32, 0.92);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: grab;
  user-select: none;
}

.lightbox-image:active {
  cursor: grabbing;
}

.lightbox-image.zoomed {
  cursor: move;
}

.lightbox-info {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #ffffff;
  text-align: center;
  z-index: 30;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 15px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 90%;
  transition: all 0.3s ease;
}

.lightbox-counter {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.lightbox-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 20px;
    justify-content: center;
  }

  .lightbox-image {
    max-width: 90vw;
    max-height: 65vh;
    border-radius: 8px;
    object-fit: contain;
  }

  .lightbox-info {
    top: 15px;
    padding: 4px 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    backdrop-filter: blur(5px);
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .lightbox-controls {
    bottom: 15px;
    padding: 0.3rem;
  }

  .lightbox-zoom-in,
  .lightbox-zoom-out,
  .lightbox-reset {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.90) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  color: var(--clr-primary-800);
  border: 1.5px solid rgba(26, 79, 214, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(16, 26, 48, 0.2), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  font-size: 1.1rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 252, 255, 0.95) 100%);
  border-color: rgba(26, 79, 214, 0.3);
  box-shadow: 0 12px 32px rgba(16, 26, 48, 0.25), 0 2px 0 rgba(255, 255, 255, 0.7) inset;
}

.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
  transform: translateY(0) scale(0.98);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev:active,
.lightbox-next:active {
  transform: translateY(-50%) scale(0.98);
}

.lightbox-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.90) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 0.5rem;
  border-radius: 14px;
  border: 1.5px solid rgba(26, 79, 214, 0.2);
  box-shadow: 0 8px 24px rgba(16, 26, 48, 0.2), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  z-index: 10;
}

.lightbox-zoom-in,
.lightbox-zoom-out,
.lightbox-reset {
  background: transparent;
  border: none;
  color: var(--clr-primary-800);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.lightbox-zoom-in:hover,
.lightbox-zoom-out:hover,
.lightbox-reset:hover {
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.12) 0%, rgba(0, 194, 255, 0.10) 100%);
  color: var(--clr-primary-700);
  transform: translateY(-2px);
}

.lightbox-zoom-in:active,
.lightbox-zoom-out:active,
.lightbox-reset:active {
  transform: translateY(0) scale(0.95);
}

/* Lightbox Mobile Responsive */
@media (max-width: 760px) {

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-controls {
    bottom: 20px;
    padding: 0.4rem;
    gap: 0.5rem;
  }

  .lightbox-zoom-in,
  .lightbox-zoom-out,
  .lightbox-reset {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .lightbox-image {
    max-width: 98vw;
    max-height: 75vh;
  }

  .lightbox-info {
    gap: 0.4rem;
  }

  .lightbox-counter {
    font-size: 0.85rem;
  }

  .lightbox-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    padding: 2.5rem 0;
  }

  .gallery-tabs-container {
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-item {
    border-radius: 10px;
    aspect-ratio: 1;
  }

  .gallery-item img {
    border-radius: 10px;
  }

  .gallery-tabs {
    padding: 0.3rem;
    gap: 0.3rem;
  }

  .gallery-tabs .tab {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-controls {
    bottom: 15px;
    padding: 0.35rem;
    gap: 0.4rem;
  }

  .lightbox-zoom-in,
  .lightbox-zoom-out,
  .lightbox-reset {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 79, 214, .10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(15px);
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 194, 255, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

/* 
  Modern Contact Section Redesign 
  Added on: 2026-02-10
*/

.contact-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Form Styling */
.contact-form-container {
  background: var(--clr-card-bg);
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.contact-form-container:hover {
  border-color: rgba(26, 79, 214, 0.2);
  box-shadow: 0 30px 60px -20px rgba(26, 79, 214, 0.12);
}

.form-floating-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-primary-800);
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--clr-card-subtle);
  border: 1.5px solid transparent;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--clr-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  outline: none;
  background: var(--clr-card-bg);
  border-color: var(--clr-primary-600);
  box-shadow: 0 0 0 4px rgba(26, 79, 214, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: var(--clr-muted);
  opacity: 0.5;
}

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

.btn-send {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-800) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px -5px rgba(26, 79, 214, 0.4);
}

.btn-send:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px -8px rgba(26, 79, 214, 0.5);
  background: linear-gradient(135deg, var(--clr-primary-700) 0%, var(--clr-primary-800) 100%);
}

.btn-send:active {
  transform: translateY(-1px);
}

/* Info Column Styling */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-primary-800);
  margin-bottom: 0.5rem;
}

.info-header p {
  color: var(--clr-muted);
  font-size: 1rem;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateX(10px);
  border-color: var(--clr-primary-600);
  background: var(--clr-card-subtle);
}

.detail-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(26, 79, 214, 0.08);
  color: var(--clr-primary-600);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.detail-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary-800);
  margin-bottom: 0.25rem;
}

.detail-text p,
.detail-text a {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.detail-text a:hover {
  color: var(--clr-primary-600);
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.quick-btn {
  padding: 0.85rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-btn i {
  font-size: 1.25rem;
}

.quick-btn.call {
  background: rgba(26, 79, 214, 0.08);
  color: var(--clr-primary-600);
}

.quick-btn.whatsapp {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
}

.quick-btn.email {
  background: rgba(255, 152, 0, 0.08);
  color: #ff9800;
}

.quick-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -10px currentColor;
}

/* Map Section */
.map-container {
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--clr-border);
  margin-top: 0.5rem;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-container:hover img {
  transform: scale(1.05);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 79, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-btn {
  background: var(--clr-card-bg);
  color: var(--clr-primary-700);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border: 1px solid var(--clr-border);
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: var(--clr-primary-600);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--clr-primary-600);
}

/* Dark Mode Overrides */
[data-theme="dark"] .contact-form-container,
[data-theme="dark"] .detail-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-input {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

[data-theme="dark"] .form-input:focus {
  background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .info-header h3,
[data-theme="dark"] .detail-text h4 {
  color: #fff;
}

[data-theme="dark"] .form-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Error/Success Feedbacks */
.error-msg {
  color: #ff5252;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  display: none;
}

.form-status.success {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-status.error {
  background: rgba(255, 82, 82, 0.1);
  color: #ff5252;
  border: 1px solid rgba(255, 82, 82, 0.2);
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 1.5rem;
  }

  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }

  .quick-btn.email {
    grid-column: span 2;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 3.5rem 0;
  }

  .contact-layout {
    gap: 2rem;
    margin-top: 2rem;
  }

  .contact-form-container {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .info-header h3 {
    font-size: 1.5rem;
  }

  .detail-item {
    padding: 1rem;
    gap: 1rem;
    border-radius: 16px;
  }

  .detail-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .detail-text h4 {
    font-size: 1rem;
  }

  .detail-text p,
  .detail-text a {
    font-size: 0.85rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .quick-btn {
    flex-direction: row;
    padding: 0.75rem 1rem;
    justify-content: center;
    gap: 1rem;
  }

  .quick-btn.email {
    grid-column: span 1;
  }

  .btn-send {
    padding: 0.85rem;
    font-size: 1rem;
  }

  .form-floating-group {
    margin-bottom: 1.1rem;
  }

  .map-container {
    height: 160px;
    border-radius: 16px;
  }
}

/* End of Contact Section */


.map-embed img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  object-fit: cover;
  background: var(--clr-card-subtle);
  filter: brightness(1.02);
}

.map-embed:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Footer */
/* 
  Modern Footer Redesign 
  Added on: 2026-02-10
*/

.site-footer {
  background: #01040a;
  color: #e6edf3;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Background Decoration */
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 79, 214, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: var(--clr-primary-600);
  border-radius: 2px;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-side .logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-brand-side img.footer-logo-white {
  height: 48px;
  width: auto;
  border-radius: 12px;
  display: block;
  background: transparent;
  box-shadow: none;
  border: none;
}

.footer-brand-side span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-brand-side p {
  color: #9fb0d0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-list a {
  color: #cbd4e6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a:hover {
  color: var(--clr-primary-400);
  transform: translateX(4px);
}

.footer-list a i {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-social-v2 {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-v2 a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd4e6;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-v2 a:hover {
  background: var(--clr-primary-600);
  color: #fff;
  border-color: var(--clr-primary-600);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(26, 79, 214, 0.2);
}

.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.f-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.f-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(26, 79, 214, 0.1);
  color: var(--clr-primary-400);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.f-contact-info p {
  color: #9fb0d0;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.f-contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.f-contact-info a:hover {
  color: var(--clr-primary-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: #8b949e;
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #8b949e;
}

/* Dark theme overrides */
body[data-theme="dark"] {
  --clr-text: #e8f0ff;
  --clr-muted: #b4c4e8;
  --clr-page-bg: #050b18;
  --clr-card-bg: #0f1a32;
  --clr-card-subtle: #162541;
  --clr-border: rgba(255, 255, 255, 0.1);
  --clr-nav-hover: rgba(60, 84, 138, 0.32);
  --clr-header-bg: rgba(6, 11, 22, 0.78);
  --clr-header-bg-scrolled: rgba(6, 11, 22, 0.92);
  --clr-footer-bg: #010712;
  --clr-footer-text: #c1d0f0;
  --clr-footer-link: #d8e4ff;
  --clr-footer-border: rgba(255, 255, 255, 0.12);
  --clr-footer-copy: #9fb0d0;
  --clr-primary-800: #e8f0ff;
  --clr-primary-700: #dce6ff;
  --clr-primary-600: #91b5ff;
}


body[data-theme="dark"] .site-header {
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.88) 0%, rgba(8, 14, 26, 0.85) 100%);
  border-bottom-color: rgba(30, 40, 60, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .site-header::before {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.96) 0%, rgba(8, 14, 26, 0.94) 50%, rgba(6, 12, 24, 0.92) 100%);
}

body[data-theme="dark"] .site-header::after {
  background: linear-gradient(90deg, transparent 0%, rgba(91, 181, 255, 0.25) 50%, transparent 100%);
}

body[data-theme="dark"] .site-header.scrolled {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.96) 0%, rgba(8, 14, 26, 0.94) 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.15) inset;
  border-bottom-color: rgba(30, 40, 60, 0.9);
}

body[data-theme="dark"] .logo {
  color: #e8f0ff;
}


/* Removed dark mode logo background */


body[data-theme="dark"] .logo img {
  background: transparent;
  border: none;
  box-shadow: none;
}

body[data-theme="dark"] .logo:hover img {
  box-shadow: none;
}

body[data-theme="dark"] .logo span {
  background: linear-gradient(135deg, #e8f0ff 0%, #dce6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-theme="dark"] .logo:hover span {
  background: linear-gradient(135deg, #dce6ff 0%, #91b5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-theme="dark"] .nav-toggle {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.9) 0%, rgba(8, 14, 26, 0.8) 100%);
  border-color: rgba(91, 181, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .nav-toggle::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.15) 0%, rgba(0, 194, 255, 0.12) 100%);
}

body[data-theme="dark"] .nav-toggle:hover {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.9) 100%);
  border-color: rgba(91, 181, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .nav-toggle .bar {
  background: linear-gradient(90deg, #dce6ff, #91b5ff);
  box-shadow: 0 1px 3px rgba(91, 181, 255, 0.3);
}

body[data-theme="dark"] .nav-menu li a {
  color: #dce6ff;
}

body[data-theme="dark"] .nav-menu li a::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.18) 0%, rgba(0, 194, 255, 0.15) 100%);
  border-color: rgba(91, 181, 255, 0.25);
}

body[data-theme="dark"] .nav-menu li a::after {
  background: linear-gradient(90deg, #91b5ff, #5a9fff, #91b5ff);
  box-shadow: 0 2px 8px rgba(91, 181, 255, 0.4);
}

body[data-theme="dark"] .nav-menu li a.active,
body[data-theme="dark"] .nav-menu li a:hover {
  color: #91b5ff;
}

body[data-theme="dark"] .nav.open #nav-menu {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.98) 0%, rgba(8, 14, 26, 0.96) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .nav-dropdown-toggle {
  color: #dce6ff;
}

body[data-theme="dark"] .nav-dropdown-toggle::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.18) 0%, rgba(0, 194, 255, 0.15) 100%);
  border-color: rgba(91, 181, 255, 0.25);
}

body[data-theme="dark"] .nav-dropdown-toggle:hover,
body[data-theme="dark"] .nav-dropdown.open .nav-dropdown-toggle {
  color: #91b5ff;
}

body[data-theme="dark"] .nav-dropdown-menu {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.98) 0%, rgba(8, 14, 26, 0.96) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .nav-dropdown-menu li a {
  color: #dce6ff;
}

body[data-theme="dark"] .nav-dropdown-menu li a::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.15) 0%, rgba(0, 194, 255, 0.12) 100%);
}

body[data-theme="dark"] .nav-dropdown-menu li a:hover {
  color: #91b5ff;
}

body[data-theme="dark"] .lang-toggle {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.9) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  color: #dce6ff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .lang-toggle::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.15) 0%, rgba(0, 194, 255, 0.12) 100%);
}

body[data-theme="dark"] .lang-toggle:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(91, 181, 255, 0.15) inset;
  border-color: rgba(91, 181, 255, 0.35);
}

body[data-theme="dark"] .lang-toggle i {
  filter: drop-shadow(0 1px 2px rgba(91, 181, 255, 0.3));
}

body[data-theme="dark"] .lang-menu {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.98) 0%, rgba(8, 14, 26, 0.96) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .lang-option {
  color: #dce6ff;
}

body[data-theme="dark"] .lang-option:hover {
  background: rgba(91, 181, 255, 0.15);
  color: #ffffff;
}

body[data-theme="dark"] .lang-check {
  color: #91b5ff;
}

body[data-theme="dark"] .theme-toggle {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.9) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  color: #dce6ff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .theme-toggle::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.15) 0%, rgba(0, 194, 255, 0.12) 100%);
}

body[data-theme="dark"] .theme-toggle:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(91, 181, 255, 0.15) inset;
  border-color: rgba(91, 181, 255, 0.35);
}

body[data-theme="dark"] .theme-toggle i {
  filter: drop-shadow(0 1px 2px rgba(91, 181, 255, 0.3));
}

body[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

body[data-theme="dark"] .theme-toggle .icon-moon {
  display: inline-block;
}

/* Dark Theme Hero Styles */
body[data-theme="dark"] .hero {
  background: #050810;
}

body[data-theme="dark"] .hero-overlay {
  background: linear-gradient(135deg,
      rgba(10, 14, 26, 0.85) 0%,
      rgba(10, 14, 26, 0.75) 50%,
      rgba(10, 14, 26, 0.9) 100%);
}

body[data-theme="dark"] .hero-badge {
  color: #91b5ff;
}

body[data-theme="dark"] .hero-title {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .hero-title::before {
  background: linear-gradient(135deg, rgba(60, 120, 255, 0.3), rgba(0, 194, 255, 0.2));
}

body[data-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .hero-feature {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .hero-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(60, 120, 255, 0.5);
  box-shadow: 0 8px 24px rgba(26, 79, 214, 0.2);
}

body[data-theme="dark"] .hero-feature i {
  color: #00c2ff;
}

body[data-theme="dark"] .hero-shape-1 {
  background: linear-gradient(135deg, rgba(60, 120, 255, 0.5), rgba(0, 194, 255, 0.4));
}

body[data-theme="dark"] .hero-shape-2 {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.45), rgba(60, 120, 255, 0.35));
}

body[data-theme="dark"] .hero-shape-3 {
  background: linear-gradient(135deg, rgba(60, 120, 255, 0.4), rgba(0, 194, 255, 0.3));
}

body[data-theme="dark"] .hero-badge {
  background: rgba(60, 120, 255, 0.2);
  border-color: rgba(60, 120, 255, 0.4);
  color: #91b5ff;
}

body[data-theme="dark"] .hero-title {
  color: #ffffff;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .hero-title::before {
  background: linear-gradient(135deg, rgba(60, 120, 255, 0.3), rgba(0, 194, 255, 0.2));
}

body[data-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

body[data-theme="dark"] .hero-feature {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .hero-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(60, 120, 255, 0.5);
}

body[data-theme="dark"] .section-title {
  color: #e8f0ff;
}

body[data-theme="dark"] .section-subtitle {
  color: var(--clr-muted);
}

body[data-theme="dark"] .card h3,
body[data-theme="dark"] .card p,
body[data-theme="dark"] .solution-body h3,
body[data-theme="dark"] .solution-body p,
body[data-theme="dark"] .strength h3,
body[data-theme="dark"] .strength p,
body[data-theme="dark"] .about-content p,
body[data-theme="dark"] .reach-points li,
body[data-theme="dark"] .contact-info h3,
body[data-theme="dark"] .contact-info p,
body[data-theme="dark"] .contact-info strong {
  color: var(--clr-text);
}

body[data-theme="dark"] .logo {
  color: #e8f0ff;
}

body[data-theme="dark"] .card,
body[data-theme="dark"] .reach-map-3d {
  background: var(--clr-card-bg);
  border-color: var(--clr-border);
  box-shadow: 0 20px 50px rgba(3, 8, 18, 0.5);
}

body[data-theme="dark"] .solutions::before {
  background: radial-gradient(circle, rgba(60, 120, 255, 0.14) 0%, transparent 70%);
}

body[data-theme="dark"] .solutions::after {
  background: radial-gradient(circle, rgba(0, 194, 255, 0.16) 0%, transparent 70%);
}

body[data-theme="dark"] .solution {
  background: linear-gradient(145deg, rgba(12, 20, 38, 0.92) 0%, rgba(6, 12, 24, 0.88) 100%);
  border-color: rgba(91, 181, 255, 0.18);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .solution:hover {
  border-color: rgba(91, 181, 255, 0.35);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.65);
}

body[data-theme="dark"] .solution-media {
  background: linear-gradient(135deg, rgba(90, 159, 255, 0.2) 0%, rgba(60, 120, 255, 0.15) 100%);
  border-color: rgba(90, 159, 255, 0.3);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .solution:hover .solution-media {
  background: linear-gradient(135deg, rgba(90, 159, 255, 0.25) 0%, rgba(60, 120, 255, 0.2) 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .solution-body h3 {
  color: #f0f6ff;
}

body[data-theme="dark"] .solution:hover .solution-body h3 {
  color: #dce6ff;
}

body[data-theme="dark"] .solution-body p {
  color: #a9bce6;
}

body[data-theme="dark"] .strengths::before {
  background: radial-gradient(circle, rgba(60, 120, 255, 0.16) 0%, transparent 70%);
}

body[data-theme="dark"] .strengths::after {
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18) 0%, transparent 70%);
}

body[data-theme="dark"] .strength {
  background: linear-gradient(145deg, rgba(16, 26, 48, 0.92) 0%, rgba(8, 14, 26, 0.88) 100%);
  border-color: rgba(91, 181, 255, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .strength:hover {
  border-color: rgba(91, 181, 255, 0.35);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.65);
}

body[data-theme="dark"] .strength .icon.xl {
  background: linear-gradient(135deg, #5a9fff, #3c78ff);
  color: #ffffff;
  box-shadow: 0 24px 48px rgba(90, 159, 255, 0.45);
}

body[data-theme="dark"] .strength:hover .icon.xl {
  background: linear-gradient(135deg, #7ab5ff, #5a9fff);
  box-shadow: 0 32px 64px rgba(90, 159, 255, 0.55);
}

body[data-theme="dark"] .strength h3 {
  color: #f0f6ff;
}

body[data-theme="dark"] .strength:hover h3 {
  color: #dce6ff;
}

body[data-theme="dark"] .strength p {
  color: #a9bce6;
}

body[data-theme="dark"] .map-3d-image {
  filter: brightness(1.15) contrast(1.2) saturate(1.3);
}

body[data-theme="dark"] .map-3d-shadow {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .7) 0%, transparent 70%);
}

body[data-theme="dark"] .map-3d-glow {
  background: linear-gradient(135deg,
      rgba(60, 120, 255, .5) 0%,
      rgba(90, 150, 255, .4) 25%,
      transparent 50%,
      rgba(60, 120, 255, .4) 75%,
      rgba(60, 120, 255, .5) 100%);
}

body[data-theme="dark"] .reach-stat,
body[data-theme="dark"] .reach-features {
  background: var(--clr-card-bg);
  border-color: var(--clr-border);
  box-shadow: 0 12px 28px rgba(3, 8, 18, 0.4);
}

body[data-theme="dark"] .reach-stat .stat-icon {
  background: linear-gradient(135deg, rgba(90, 159, 255, 0.2) 0%, rgba(60, 120, 255, 0.15) 100%);
  color: #7ab5ff;
  border-color: rgba(90, 159, 255, 0.3);
  box-shadow: 0 8px 16px rgba(90, 159, 255, 0.2);
}

body[data-theme="dark"] .reach-stat .stat-content h3,
body[data-theme="dark"] .reach-features h3 {
  color: #e8f0ff;
}

body[data-theme="dark"] .reach .reach-points li {
  color: #bcd0ff;
}


body[data-theme="dark"] .lightbox {
  background: rgba(2, 5, 17, 0.95);
}

body[data-theme="dark"] .lightbox-close,
body[data-theme="dark"] .lightbox-prev,
body[data-theme="dark"] .lightbox-next {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.90) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  color: #dce6ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .lightbox-close:hover,
body[data-theme="dark"] .lightbox-prev:hover,
body[data-theme="dark"] .lightbox-next:hover {
  background: linear-gradient(135deg, rgba(12, 20, 38, 1) 0%, rgba(8, 14, 26, 0.95) 100%);
  border-color: rgba(91, 181, 255, 0.35);
  color: #91b5ff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(91, 181, 255, 0.15) inset;
}

body[data-theme="dark"] .lightbox-controls {
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.90) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .lightbox-zoom-in,
body[data-theme="dark"] .lightbox-zoom-out,
body[data-theme="dark"] .lightbox-reset {
  color: #dce6ff;
}

body[data-theme="dark"] .lightbox-zoom-in:hover,
body[data-theme="dark"] .lightbox-zoom-out:hover,
body[data-theme="dark"] .lightbox-reset:hover {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.15) 0%, rgba(0, 194, 255, 0.12) 100%);
  color: #91b5ff;
}

body[data-theme="dark"] .about::before {
  background: radial-gradient(circle, rgba(60, 120, 255, 0.16) 0%, transparent 70%);
}

body[data-theme="dark"] .about::after {
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18) 0%, transparent 70%);
}

body[data-theme="dark"] .about-main {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .about-tag {
  background: rgba(91, 181, 255, 0.18);
  color: #dce6ff;
}

body[data-theme="dark"] .about-heading {
  color: #f0f6ff;
}

body[data-theme="dark"] .about-lead {
  color: #9bb4e8;
}

body[data-theme="dark"] .metric {
  background: linear-gradient(140deg, rgba(35, 60, 120, 0.45) 0%, rgba(26, 48, 96, 0.4) 100%);
  border-color: rgba(91, 181, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.45);
}

body[data-theme="dark"] .metric-value {
  color: #e4edff;
}

body[data-theme="dark"] .metric-label {
  color: #a9bfe9;
}

body[data-theme="dark"] .pillar {
  background: linear-gradient(145deg, rgba(16, 26, 48, 0.92) 0%, rgba(8, 14, 26, 0.88) 100%);
  border-color: rgba(91, 181, 255, 0.15);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .pillar h4 {
  color: #f0f6ff;
}

body[data-theme="dark"] .pillar p {
  color: #a9bce6;
}

body[data-theme="dark"] .pillar-icon {
  background: linear-gradient(135deg, #5a9fff, #3c78ff);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(90, 159, 255, 0.4);
}

body[data-theme="dark"] .about-aside-card {
  background: linear-gradient(165deg, rgba(20, 32, 58, 0.94) 0%, rgba(12, 22, 42, 0.92) 45%, rgba(4, 10, 24, 0.9) 100%);
  border-color: rgba(91, 181, 255, 0.2);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.55);
}

body[data-theme="dark"] .about-aside-media {
  background: rgba(20, 32, 58, 0.7);
  border-color: rgba(91, 181, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 30px rgba(0, 0, 0, 0.45);
}

body[data-theme="dark"] .about-aside-text {
  color: #a9bce6;
}

body[data-theme="dark"] .about-checklist li {
  color: #d1ddff;
}

body[data-theme="dark"] .about-checklist li i {
  color: #7ab5ff;
}

/* Dark Mode - Card Icons */
body[data-theme="dark"] .card .icon {
  background: linear-gradient(135deg, #5a9fff 0%, #3c78ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(90, 159, 255, 0.4);
}

body[data-theme="dark"] .card:hover .icon {
  background: linear-gradient(135deg, #7ab5ff 0%, #5a9fff 100%);
  box-shadow: 0 12px 28px rgba(90, 159, 255, 0.5);
}

/* Dark Mode - Strength Icons */
body[data-theme="dark"] .strength-icon-wrapper {
  background: linear-gradient(135deg, rgba(90, 159, 255, 0.15) 0%, rgba(60, 120, 255, 0.12) 100%);
  color: #7ab5ff;
  box-shadow: 0 8px 16px rgba(90, 159, 255, 0.25);
}

body[data-theme="dark"] .strength-card:hover .strength-icon-wrapper {
  background: linear-gradient(135deg, #5a9fff 0%, #3c78ff 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(90, 159, 255, 0.45);
}

body[data-theme="dark"] .about-signature-name {
  color: #f0f6ff;
}

body[data-theme="dark"] .about-signature-role {
  color: #91a9da;
}

body[data-theme="dark"] .about-contact-link {
  background: rgba(26, 48, 92, 0.8);
  border-color: rgba(91, 181, 255, 0.35);
  color: #dce6ff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

body[data-theme="dark"] .about-timeline .timeline-card {
  background: linear-gradient(150deg, rgba(16, 26, 48, 0.92) 0%, rgba(8, 14, 26, 0.9) 100%);
  border-color: rgba(91, 181, 255, 0.18);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .timeline-year {
  color: #7aa6ff;
}

body[data-theme="dark"] .timeline-card h4 {
  color: #f0f6ff;
}

body[data-theme="dark"] .timeline-card p {
  color: #a9bce6;
}

body[data-theme="dark"] .services::before {
  background: radial-gradient(circle, rgba(60, 120, 255, .1) 0%, transparent 70%);
}

body[data-theme="dark"] .contact::before {
  background: radial-gradient(circle, rgba(60, 120, 255, .14) 0%, transparent 70%);
}

body[data-theme="dark"] .contact::after {
  background: radial-gradient(circle, rgba(0, 194, 255, .16) 0%, transparent 70%);
}

body[data-theme="dark"] .contact-card {
  background: linear-gradient(145deg, rgba(12, 20, 38, 0.95) 0%, rgba(8, 14, 26, 0.92) 100%);
  border-color: rgba(91, 181, 255, 0.18);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
}

body[data-theme="dark"] .contact-card:hover {
  border-color: rgba(91, 181, 255, 0.35);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.65), 0 2px 0 rgba(91, 181, 255, 0.15) inset;
}

body[data-theme="dark"] .contact-card::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, .12) 0%, rgba(0, 194, 255, .10) 100%);
}

body[data-theme="dark"] .contact-card::after {
  background: radial-gradient(circle, rgba(91, 181, 255, .18) 0%, transparent 70%);
}

body[data-theme="dark"] .contact-info h3 {
  border-bottom-color: rgba(91, 181, 255, 0.2);
}

body[data-theme="dark"] .contact-info h3::before {
  background: linear-gradient(135deg, #4a6cff, #1a4fd6);
  box-shadow: 0 12px 24px rgba(26, 79, 214, 0.45);
}

body[data-theme="dark"] .contact-info p+p {
  border-top-color: rgba(91, 181, 255, 0.15);
}

body[data-theme="dark"] .contact-info strong {
  color: #f0f6ff;
}

body[data-theme="dark"] .contact-info a {
  background: rgba(91, 181, 255, 0.12);
  border-color: rgba(91, 181, 255, 0.2);
}

body[data-theme="dark"] .contact-info a:hover {
  background: rgba(91, 181, 255, 0.2);
  border-color: rgba(91, 181, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .contact-info a i {
  color: #91b5ff;
}

body[data-theme="dark"] .gallery-group-title {
  color: #e8f0ff;
}

body[data-theme="dark"] .gallery-group-title::before {
  background: linear-gradient(180deg, #91b5ff, #5a9fff);
}

body[data-theme="dark"] .form-field label {
  color: var(--clr-text);
}

body[data-theme="dark"] .clients-container {
  background: linear-gradient(145deg, #0a1528, #050a15);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(1, 5, 12, 0.6);
}

body[data-theme="dark"] .clients-container::before {
  background: linear-gradient(to right, var(--clr-page-bg), transparent);
}

body[data-theme="dark"] .clients-container::after {
  background: linear-gradient(to left, var(--clr-page-bg), transparent);
}

body[data-theme="dark"] .client-item {
  background: var(--clr-card-bg);
  border-color: var(--clr-border);
  box-shadow: 0 12px 28px rgba(3, 8, 18, 0.4);
}

body[data-theme="dark"] .client-item:hover {
  box-shadow: 0 28px 56px rgba(5, 12, 28, 0.7);
  border-color: rgba(145, 180, 255, 0.4);
}

body[data-theme="dark"] .client-item::before {
  background: linear-gradient(135deg, rgba(60, 100, 200, .15), rgba(0, 194, 255, .1));
}

body[data-theme="dark"] .client-item img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3));
}

body[data-theme="dark"] .client-item:hover img {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .5));
}

body[data-theme="dark"] .clients-btn {
  background: var(--clr-card-bg);
  border-color: rgba(145, 180, 255, 0.5);
  color: #bcd0ff;
  box-shadow: 0 8px 20px rgba(3, 8, 18, 0.5);
}

body[data-theme="dark"] .clients-btn:hover {
  background: rgba(60, 100, 200, 0.8);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(60, 100, 200, 0.4);
}

body[data-theme="dark"] .map-embed {
  border-color: rgba(91, 181, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(91, 181, 255, 0.1) inset;
  background: rgba(12, 20, 38, 0.7);
}

body[data-theme="dark"] .map-embed::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, .15) 0%, rgba(0, 194, 255, .12) 100%);
}

body[data-theme="dark"] .map-embed:hover {
  border-color: rgba(91, 181, 255, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 2px 0 rgba(91, 181, 255, 0.15) inset;
}

body[data-theme="dark"] .map-embed::after {
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .7) 50%, transparent 100%);
  color: #ffffff;
}

body[data-theme="dark"] .map-embed img {
  background: var(--clr-card-subtle);
  filter: brightness(0.95);
}

body[data-theme="dark"] .map-embed:hover img {
  filter: brightness(1.05);
}

body[data-theme="dark"] .form-field input,
body[data-theme="dark"] .form-field textarea {
  background: rgba(12, 20, 38, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--clr-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .form-field input::placeholder,
body[data-theme="dark"] .form-field textarea::placeholder {
  color: #8394b8;
}

body[data-theme="dark"] .form-field input:focus,
body[data-theme="dark"] .form-field textarea:focus {
  border-color: rgba(145, 180, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(92, 128, 224, 0.35), 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: rgba(12, 20, 38, 0.95);
}

body[data-theme="dark"] .contact-info a {
  color: #a8c2ff;
}

body[data-theme="dark"] .form-status {
  color: var(--clr-text);
}

body[data-theme="dark"] .site-footer {
  background: linear-gradient(135deg, var(--clr-footer-bg) 0%, rgba(2, 8, 18, 0.98) 100%);
}

body[data-theme="dark"] .site-footer::before {
  background: linear-gradient(90deg, transparent 0%, rgba(91, 181, 255, 0.3) 50%, transparent 100%);
}

body[data-theme="dark"] .site-footer::after {
  background: radial-gradient(circle, rgba(91, 181, 255, 0.12) 0%, transparent 70%);
}

body[data-theme="dark"] .footer-brand img {
  box-shadow: 0 16px 32px rgba(0, 0, 0, .6), 0 4px 12px rgba(91, 181, 255, 0.25);
  border-color: rgba(91, 181, 255, 0.15);
  background: rgba(12, 20, 38, 0.4);
}

body[data-theme="dark"] .footer-brand:hover img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, .7), 0 6px 16px rgba(91, 181, 255, 0.35);
}

body[data-theme="dark"] .footer-links a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .footer-links a::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.2) 0%, rgba(0, 194, 255, 0.15) 100%);
}

body[data-theme="dark"] .footer-links a:hover {
  border-color: rgba(91, 181, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .footer-social a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

body[data-theme="dark"] .footer-social a::before {
  background: linear-gradient(135deg, rgba(91, 181, 255, 0.25) 0%, rgba(0, 194, 255, 0.2) 100%);
}

body[data-theme="dark"] .footer-social a:hover {
  border-color: rgba(91, 181, 255, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(91, 181, 255, 0.4);
}

body[data-theme="dark"] .page-heading-panel:hover {
  background: linear-gradient(135deg, rgba(25, 40, 72, 0.98) 0%, rgba(16, 28, 54, 0.95) 100%);
  border-color: rgba(91, 181, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

body[data-theme="dark"] .footer-copy::before {
  background: linear-gradient(90deg, transparent 0%, rgba(91, 181, 255, 0.5) 50%, transparent 100%);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-social a:hover {
  color: #ffffff;
}

/* Gallery & Work Details Dark Mode Overrides */
body[data-theme="dark"] .page-heading-panel {
  background: linear-gradient(135deg, rgba(20, 32, 58, 0.95) 0%, rgba(12, 22, 42, 0.92) 100%);
  border-color: rgba(91, 181, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

body[data-theme="dark"] .page-heading-panel .page-title {
  background: linear-gradient(135deg, #ffffff 0%, #dce6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body[data-theme="dark"] .page-heading-panel .page-subtitle {
  color: #a9bce6;
}

body[data-theme="dark"] .work-details-section {
  background: #0b1220;
}

body[data-theme="dark"] .work-detail-card {
  background: rgba(16, 26, 48, 0.9);
  border-color: rgba(91, 181, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

body[data-theme="dark"] .work-detail-card:hover {
  border-color: var(--clr-accent);
  background: rgba(20, 32, 58, 0.95);
}

body[data-theme="dark"] .work-detail-title {
  color: #ffffff !important;
}

body[data-theme="dark"] .work-detail-description,
body[data-theme="dark"] .work-detail-list li {
  color: #cbd4e6 !important;
}

body[data-theme="dark"] .gallery-info-summary {
  background: rgba(26, 79, 214, 0.1);
  border-color: rgba(91, 181, 255, 0.2);
  color: #cbd4e6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .about-main {
    padding: 1.6rem;
  }

  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-aside-card {
    position: relative;
    top: auto;
  }

  .about-signature {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 1.5rem;
  }

  .card .icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .form-field input,
  .form-field textarea {
    padding: .9rem 1rem;
  }
}

@media (max-width: 600px) {
  .about::before {
    width: 340px;
    height: 340px;
  }

  .services::before {
    width: 350px;
    height: 350px;
  }

  .contact::before {
    width: 300px;
    height: 300px;
  }

  .solutions::before {
    width: 380px;
    height: 380px;
  }

  .solutions::after {
    width: 340px;
    height: 340px;
  }

  .strengths::before {
    width: 360px;
    height: 360px;
  }

  .strengths::after {
    width: 320px;
    height: 320px;
  }

  .about-main {
    padding: 1.4rem;
  }

  .about-heading {
    font-size: 1.9rem;
  }

  .about-lead {
    font-size: 0.98rem;
  }

  .about-metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .about-pillars {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .about-aside-card {
    padding: 1.5rem;
  }

  .about-aside-media img {
    width: clamp(150px, 60vw, 190px);
  }

  .about-signature {
    align-items: flex-start;
  }

  .about-contact-link {
    width: 100%;
    justify-content: center;
  }

  .about-timeline {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .timeline-card {
    padding: 1.4rem 1.2rem;
  }

  .solution {
    padding: 1.5rem;
  }

  .solution-media {
    width: 100px;
    height: 100px;
    min-width: 100px;
    padding: 0.9rem;
  }

  .solution-body h3 {
    font-size: 1.2rem;
  }

  .strength {
    padding: 1.6rem 1.4rem;
  }

  .strength .icon.xl {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }

  .strength h3 {
    font-size: 1.15rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card .icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: .95rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

/* 
  Modern Strengths Section Redesign 
  Added on: 2026-02-10
*/

.strengths-section {
  position: relative;
  padding: 2.5rem 0;
  overflow: hidden;
}

.strengths-section .section-head {
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(26, 79, 214, 0.08);
  /* slight blue tint */
  color: var(--clr-primary-600);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(26, 79, 214, 0.1);
}

.strengths-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .strengths-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.strength-card {
  position: relative;
  background: var(--clr-card-bg);
  border-radius: 32px;
  padding: 1rem 0.85rem;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.strength-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(26, 79, 214, 0.03) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strength-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px -12px rgba(26, 79, 214, 0.18);
  /* Blue glow shadow */
  border-color: rgba(26, 79, 214, 0.3);
}

.strength-card:hover::before {
  opacity: 1;
}

.strength-icon-wrapper {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.08) 0%, rgba(0, 194, 255, 0.08) 100%);
  border-radius: 18px;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  color: var(--clr-primary-600);
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 6px 12px -8px rgba(26, 79, 214, 0.2);
}

.strength-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(26, 79, 214, 0.1);
  transition: all 0.4s ease;
}

.strength-card:hover .strength-icon-wrapper {
  transform: scale(1.05) rotate(-5deg);
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-700) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(26, 79, 214, 0.4);
}

.strength-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.strength-text {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.4;
}

/* Dark Mode Overrides */
[data-theme="dark"] .strength-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .strength-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(26, 79, 214, 0.5);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .section-badge {
  background: rgba(26, 79, 214, 0.2);
  color: #4da3ff;
  border-color: rgba(26, 79, 214, 0.3);
}

@media (max-width: 767px) {
  .strengths-section {
    padding: 2.5rem 0;
  }

  .strengths-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
  }

  .strengths-wrapper::-webkit-scrollbar {
    display: none;
  }

  .strength-card {
    min-width: 200px;
    max-width: 200px;
    padding: 1.25rem 1rem;
    border-radius: 24px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .strength-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    border-radius: 14px;
  }

  .strength-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .strength-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

.whatsapp-float i {
  transition: transform 0.4s ease;
}

.whatsapp-float:hover i {
  transform: rotate(10deg);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #333;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }

  .whatsapp-tooltip {
    display: none;
    /* Hide tooltip on small mobile screens */
  }
}

/* Page Heading Panel */
.page-heading-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(26, 79, 214, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(16, 26, 48, 0.1), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-heading-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--clr-primary-600) 25%,
      var(--clr-accent) 50%,
      var(--clr-primary-600) 75%,
      transparent 100%);
  border-radius: 2px;
  opacity: 0.7;
}



.page-heading-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 26, 48, 0.14), 0 2px 0 rgba(255, 255, 255, 0.7) inset;
  border-color: rgba(26, 79, 214, 0.25);
}

.page-heading-panel .page-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-primary-800) 0%, var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.page-heading-panel .page-subtitle {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--clr-muted);
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}





@media (max-width: 768px) {
  .page-heading-panel {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .page-heading-panel .page-title {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 480px) {
  .page-heading-panel {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
  }
}

/* Work Details Section */
.work-details-section {
  padding: 4rem 0;
  background: linear-gradient(135deg,
      rgba(26, 79, 214, 0.03) 0%,
      rgba(0, 194, 255, 0.02) 50%,
      rgba(26, 79, 214, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.work-details-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(26, 79, 214, 0.2) 50%,
      transparent 100%);
}

.work-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.work-detail-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(250, 252, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(26, 79, 214, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(16, 26, 48, 0.08);
  position: relative;
  overflow: hidden;
}

.work-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,
      var(--clr-primary-600) 0%,
      var(--clr-accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 26, 48, 0.15);
  border-color: rgba(26, 79, 214, 0.3);
}

.work-detail-card:hover::before {
  opacity: 1;
}

.work-detail-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg,
      var(--clr-primary-600) 0%,
      var(--clr-primary-700) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(26, 79, 214, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.work-detail-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--clr-primary-600) 0%,
      var(--clr-accent) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.work-detail-card:hover .work-detail-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(26, 79, 214, 0.4);
}

.work-detail-card:hover .work-detail-icon::after {
  opacity: 0.3;
}

.work-detail-icon i {
  position: relative;
  z-index: 1;
}

.work-detail-content {
  flex: 1;
}

.work-detail-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--clr-primary-800) 0%,
      var(--clr-primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.25rem 0;
  letter-spacing: -1px;
  line-height: 1.2;
}

.work-detail-label {
  font-size: 0.95rem;
  color: var(--clr-muted);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .work-details-section {
    padding: 3rem 0;
  }

  .work-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .work-details-section {
    padding: 2.5rem 0;
  }

  .work-details-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .work-detail-card {
    padding: 1.5rem 1.25rem;
  }

  .work-detail-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.5rem;
  }

  .work-detail-number {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .work-detail-label {
    font-size: 0.875rem;
  }
}

/* Work Details Section - Compact Professional Version */
.work-details-section {
  padding: 40px 0;
  background: var(--clr-card-subtle);
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-primary-800);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--clr-muted);
}

.work-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.work-detail-card {
  background: var(--clr-card-bg);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  transition: all 0.4s ease;
  border: 1px solid var(--clr-border);
}

.work-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 26, 48, 0.1);
  border-color: rgba(26, 79, 214, 0.2);
}

.work-detail-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--clr-primary-600) 0%, var(--clr-primary-800) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(26, 79, 214, 0.15);
}

.work-detail-content {
  flex: 1;
  width: 100%;
}

.work-detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary-800);
  margin-bottom: 0.4rem;
}

.work-detail-description {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.work-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.work-detail-list li {
  font-size: 0.8rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.work-detail-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--clr-primary-600);
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .work-details-section {
    padding: 25px 0;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .work-detail-card {
    padding: 1rem;
    gap: 0.5rem;
  }

  .work-detail-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .work-detail-title {
    font-size: 1rem;
  }

  .work-detail-description {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .work-detail-list li {
    font-size: 0.75rem;
    gap: 0.3rem;
  }
}

.gallery-info-summary {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: rgba(26, 79, 214, 0.05);
  border-radius: 10px;
  text-align: center;
  color: var(--clr-muted);
  font-size: 0.8rem;
  border: 1px dashed rgba(26, 79, 214, 0.2);
}

.gallery-info-summary i {
  color: var(--clr-primary-600);
  margin-right: 0.4rem;
}