:root {
  --bg: #f4ede2;
  --bg-soft: #fbf7f0;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #f7efe4;
  --ink: #1f2a2d;
  --muted: #5f6664;
  --line: rgba(31, 42, 45, 0.12);
  --accent: #d25e2b;
  --accent-strong: #b24e23;
  --accent-soft: rgba(210, 94, 43, 0.12);
  --accent-2: #1f6a61;
  --shadow: 0 18px 50px rgba(31, 42, 45, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210, 94, 43, 0.14), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(31, 106, 97, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f2e9 0%, #f4ede2 48%, #efe6d8 100%);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Segoe UI", sans-serif;
  line-height: 1.65;
}

main,
section,
header,
footer {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent-strong);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#preloader-active,
.mobile_menu,
.submenu {
  display: none !important;
}

.container,
.container-fluid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.container-fluid {
  width: min(1280px, calc(100% - 32px));
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row > [class*="col-"] {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.col-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xl-12 {
  width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

.f-right {
  float: right;
}

.position-relative {
  position: relative;
}

.section-padding40 {
  padding: 88px 0;
}

.home-experience-section {
  padding: 64px 0;
}

.projects-intro {
  max-width: 52rem;
}

.projects-intro p {
  margin: 0;
  font-size: 1.08rem;
}

.project-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 0;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.08), transparent 32%);
  pointer-events: none;
}

.project-overview-card > * {
  position: relative;
  z-index: 1;
}

.project-overview-media {
  position: relative;
  display: block;
  height: 100%;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(31, 42, 45, 0.14);
}

.project-overview-image {
  display: block;
  width: 100%;
  height: 460px;
  min-height: 460px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-overview-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(31, 42, 45, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(31, 42, 45, 0.28), rgba(31, 42, 45, 0.56));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-overview-title-wrap .project-card-kicker {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.project-overview-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  text-shadow: 0 18px 42px rgba(15, 24, 27, 0.42);
}

.project-overview-content {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 24, 28, 0.82), rgba(16, 24, 28, 0.94));
  box-shadow: 0 20px 44px rgba(15, 24, 27, 0.28);
  color: #fff;
  transform: translateY(calc(100% + 26px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s ease, opacity 0.28s ease;
}

.project-overview-summary {
  margin-bottom: 18px !important;
  color: rgba(255, 255, 255, 0.88);
}

.project-overview-actions {
  margin-top: auto;
}

.project-overview-card:hover,
.project-overview-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px rgba(31, 42, 45, 0.2);
}

.project-overview-card:hover .project-overview-title-wrap,
.project-overview-card:focus-within .project-overview-title-wrap {
  opacity: 0;
  transform: translateY(-14px);
}

.project-overview-card:hover .project-overview-content,
.project-overview-card:focus-within .project-overview-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.project-overview-art,
.project-featured-art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  min-height: 280px;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(31, 42, 45, 0.14);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-overview-media .project-overview-art {
  min-height: 460px;
}

.project-featured-art {
  min-height: 340px;
}

.project-overview-card:hover .project-overview-image,
.project-overview-card:focus-within .project-overview-image,
.project-overview-card:hover .project-overview-art,
.project-overview-card:focus-within .project-overview-art {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.project-overview-art::before,
.project-featured-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  pointer-events: none;
}

.project-overview-art-extension {
  background:
    radial-gradient(circle at top left, rgba(210, 94, 43, 0.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(31, 106, 97, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(26, 39, 44, 0.96), rgba(42, 67, 73, 0.92));
}

.project-art-window {
  position: absolute;
  inset: 22px 22px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 36px rgba(15, 24, 27, 0.18);
}

.project-art-row {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 42, 45, 0.14);
}

.project-art-row-short {
  width: 58%;
}

.project-art-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.project-art-chip-primary {
  background: rgba(210, 94, 43, 0.88);
}

.project-overview-content .project-tag {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (hover: none) {
  .project-overview-card {
    min-height: auto;
    padding: 18px;
  }

  .project-overview-media {
    min-height: 280px;
    border-radius: 24px;
  }

  .project-overview-title-wrap {
    inset: auto 0 0 0;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 22px;
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(180deg, rgba(31, 42, 45, 0), rgba(31, 42, 45, 0.88));
  }

  .project-overview-content {
    position: static;
    margin-top: 18px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border-color: rgba(31, 42, 45, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    color: var(--ink);
  }

  .project-overview-summary {
    color: var(--muted);
  }

  .project-overview-content .project-tag {
    border-color: rgba(31, 42, 45, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
  }
}

.project-featured,
.project-showcase-section,
.project-detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 45, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.project-featured,
.project-showcase-section {
  border-radius: 32px;
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 32px;
}

.project-featured::before,
.project-showcase-section::before,
.project-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.08), transparent 32%);
  pointer-events: none;
}

.project-featured > *,
.project-showcase-section > *,
.project-detail-card > * {
  position: relative;
  z-index: 1;
}

.project-featured-image-link {
  display: block;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(31, 42, 45, 0.16);
}

.project-featured-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(31, 42, 45, 0.16);
}

.project-featured-media-application {
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(243, 247, 250, 0.96), rgba(247, 239, 228, 0.96));
  box-shadow: 0 24px 48px rgba(31, 42, 45, 0.16);
}

.project-featured-image-application {
  width: 104%;
  height: auto;
  min-height: 0;
  max-width: none;
  max-height: 100%;
  margin-left: -2%;
  object-fit: contain;
  box-shadow: none;
  border: 1px solid rgba(31, 42, 45, 0.08);
  background: #edf2f7;
}

.project-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.project-featured-actions a.btn,
.project-featured-actions a.border-btn {
  width: fit-content;
}

.project-top-features {
  margin-bottom: 22px;
}

.project-feature-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-feature-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-feature-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.project-tag-list,
.project-feature-pills,
.project-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.project-links-inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.project-links-inline a.btn,
.project-links-inline a.border-btn,
.project-link-list a.border-btn {
  width: fit-content;
}

.project-showcase-section {
  padding: 32px;
}

.project-showcase-intro {
  max-width: 60rem;
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.project-disclaimer {
  max-width: 60rem;
  margin: -8px 0 24px;
  padding: 12px 16px;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-shot {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(31, 42, 45, 0.08);
}

.project-shot-main {
  grid-column: 1 / -1;
  padding: 18px;
  background: linear-gradient(180deg, rgba(243, 247, 250, 0.96), rgba(247, 239, 228, 0.96));
}

.project-shot img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.project-shot-main img {
  border: 1px solid rgba(31, 42, 45, 0.08);
  background: #edf2f7;
  box-shadow: 0 18px 36px rgba(31, 42, 45, 0.12);
}

.project-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-feature-pills {
  margin-top: 26px;
}

.project-case-section .section-tittle {
  margin-bottom: 24px;
}

.project-private-preview {
  display: grid;
  gap: 20px;
}

.project-private-note {
  max-width: 52rem;
  margin: 0;
  color: var(--muted);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.project-detail-card {
  padding: 24px 26px;
  border-radius: 26px;
}

.project-detail-card h4 {
  margin-bottom: 10px;
}

.project-detail-card p {
  margin: 0;
}

.project-card-wide {
  grid-column: 1 / -1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.08), transparent 32%);
  pointer-events: none;
}

.project-card-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3,
.project-card p {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  margin-bottom: 14px;
}

.project-card p {
  margin-bottom: 0;
}

.project-summary {
  margin-bottom: 22px !important;
  font-size: 1.02rem;
}

.project-case-study {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
}

.project-case-study dt {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-case-study dd {
  margin: -6px 0 0;
  color: var(--muted);
}

.project-status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.projects-proof-section {
  margin-top: 42px;
}

.projects-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.projects-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(31, 42, 45, 0.08);
}

.pt-50 {
  padding-top: 50px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mr-5 {
  margin-right: 12px;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-40 {
  margin-top: 40px;
}

.no-gutters {
  row-gap: 24px;
}

.header-area {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 18px;
}

.main-header {
  background: rgba(251, 247, 240, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(31, 42, 45, 0.08);
  backdrop-filter: blur(14px);
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 0 24px;
}

.menu-wrapper > .col-12 {
  display: none;
}

.logo {
  display: none;
}

.logo:empty,
.header-info-right:empty {
  display: none;
}

header .header-area {
  padding-top: 12px;
}

header .main-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

header .menu-wrapper {
  gap: 28px;
  min-height: 58px;
  padding: 0 2px;
}

header .logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  color: var(--accent-2);
}

header .main-menu {
  flex: 1;
}

header .main-menu ul {
  gap: 20px;
}

header .main-menu a {
  min-height: auto;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  position: relative;
}

header .main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 106, 97, 0.7));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

header .main-menu a:hover,
header .main-menu a:focus-visible {
  background: transparent;
  color: var(--accent-2);
}

header .main-menu a:hover::after,
header .main-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-menu {
  flex: 1;
}

.main-menu.d-none {
  display: block !important;
}

.main-menu nav,
.main-menu ul {
  height: 100%;
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 600;
}

.main-menu a:hover,
.main-menu a:focus-visible {
  background: rgba(31, 106, 97, 0.1);
  color: var(--accent-2);
}

.btn,
.border-btn,
.border-btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(210, 94, 43, 0.22);
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-strong);
  color: #fff;
}

.border-btn,
.border-btn2 {
  background: transparent;
  border-color: rgba(31, 42, 45, 0.18);
  color: var(--ink);
}

.border-btn:hover,
.border-btn:focus-visible,
.border-btn2:hover,
.border-btn2:focus-visible {
  background: #fff;
  border-color: rgba(31, 42, 45, 0.28);
  color: var(--ink);
}

.white-btn {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.slider-area,
.hero-area2,
.wantToWork-area {
  position: relative;
  overflow: hidden;
}

.slider-area::before,
.hero-area2::before,
.wantToWork-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.48), transparent 28%),
    linear-gradient(135deg, rgba(210, 94, 43, 0.15), rgba(31, 106, 97, 0.08));
  pointer-events: none;
}

.wantToWork-area::before {
  background: none;
}

.single-slider,
.slider-height {
  min-height: 76vh;
}

.single-slider {
  display: flex;
  align-items: center;
  padding: 80px 0 118px;
}

.employee {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 300px;
}

.employee-mark {
  display: grid;
  place-items: center;
  width: min(276px, 62vw);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(247, 239, 228, 0.92)),
    linear-gradient(135deg, rgba(210, 94, 43, 0.12), rgba(31, 106, 97, 0.12));
  box-shadow: 0 14px 34px rgba(31, 42, 45, 0.14);
  color: var(--accent-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 5.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__caption,
.hero-cap {
  position: relative;
  z-index: 1;
}

.hero__caption h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.hero__caption p {
  max-width: 34rem;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-area2 {
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 120px 0 50px;
}

.compact-subpage .hero-area2 {
  min-height: 180px;
  padding: 92px 0 20px;
}

.compact-subpage .hero-cap.pt-50 {
  padding-top: 0;
}

.hero-cap h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.project-breadcrumb a {
  color: var(--accent-2);
}

.project-breadcrumb span[aria-current="page"] {
  color: var(--ink);
}

@media (min-width: 992px) {
  .single-slider,
  .slider-height {
    min-height: 69vh;
  }

  .single-slider {
    padding: 72px 0 52px;
  }

  .employee {
    min-height: 280px;
    transform: translateY(-18px);
  }

  .about-area.section-padding40 {
    padding-top: 60px;
  }
}

.contact-label {
  margin-bottom: 6px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge,
.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 94, 43, 0.18), rgba(31, 106, 97, 0.18));
  color: var(--accent-2);
  font-size: 1.05rem;
  font-weight: 700;
}

.section-tittle {
  position: relative;
}

.section-tittle h2 {
  display: inline-block;
  position: relative;
  font-size: clamp(2rem, 4vw, 3.1rem);
  padding-bottom: 12px;
}

.section-tittle h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 106, 97, 0.65));
}

.single-services,
.skill-ara,
.contact-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.single-services {
  display: flex;
  gap: 18px;
}

.services-ion {
  flex: 0 0 auto;
}

.services-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-left: 0;
  margin-right: 0;
}

.services-expertise-grid > div {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.services-expertise-grid .single-services {
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.services-expertise-grid .service-badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(31, 42, 45, 0.12);
}

.services-expertise-grid .service-badge-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}

.services-expertise-grid .services-cap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-cap h5 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.services-cap h5 a,
.services-cap p a {
  color: inherit;
}

.services-cap p:last-child,
.contact-card p:last-of-type,
.wantToWork-caption p:last-child {
  margin-bottom: 0;
}

.box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.experience-grid .box {
  display: block;
  color: inherit;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.experience-grid .box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.28) 46%, transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.55s ease, opacity 0.28s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-img,
.medium-img {
  position: relative;
  background-color: #d8d0c2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-img {
  min-height: 310px;
}

.experience-grid .gallery-img {
  transform: scale(1.001);
  transform-origin: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.medium-img {
  min-height: 360px;
  height: clamp(320px, 56vw, 720px) !important;
}

.gallery-img::before,
.medium-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
     linear-gradient(180deg, rgba(31, 42, 45, 0.02), rgba(31, 42, 45, 0.14)),
     linear-gradient(135deg, rgba(210, 94, 43, 0.18), rgba(31, 106, 97, 0.2));
}

.experience-grid .gallery-img::before {
  transition: opacity 0.35s ease, background 0.35s ease;
}

.overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(31, 42, 45, 0), rgba(31, 42, 45, 0.82));
}

.experience-grid .overlay {
  z-index: 2;
  transition: padding 0.28s ease, background 0.28s ease;
}

.experience-grid .overlay-content {
  transform: translateY(10px);
  opacity: 0.92;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.overlay-content a,
.experience-card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.experience-grid .overlay-content a,
.experience-grid .experience-card-title {
  display: inline-block;
  transition: transform 0.28s ease, letter-spacing 0.28s ease;
}

.experience-grid .box:focus-visible {
  outline: 3px solid rgba(210, 94, 43, 0.32);
  outline-offset: 4px;
}

.experience-grid .box:hover,
.experience-grid .box:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px rgba(31, 42, 45, 0.2);
}

.experience-grid .box:hover::after,
.experience-grid .box:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.experience-grid .box:hover .gallery-img,
.experience-grid .box:focus-within .gallery-img {
  transform: scale(1.07) rotate(-0.8deg);
  filter: saturate(1.08) contrast(1.03);
}

.experience-grid .box:hover .gallery-img::before,
.experience-grid .box:focus-within .gallery-img::before {
  background:
    linear-gradient(180deg, rgba(31, 42, 45, 0.04), rgba(31, 42, 45, 0.28)),
    linear-gradient(135deg, rgba(210, 94, 43, 0.24), rgba(31, 106, 97, 0.28));
}

.experience-grid .box:hover .overlay,
.experience-grid .box:focus-within .overlay {
  padding-bottom: 28px;
  background: linear-gradient(180deg, rgba(31, 42, 45, 0), rgba(31, 42, 45, 0.9));
}

.experience-grid .box:hover .overlay-content,
.experience-grid .box:focus-within .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.experience-grid .box:hover .overlay-content a,
.experience-grid .box:focus-within .overlay-content a,
.experience-grid .box:hover .experience-card-title,
.experience-grid .box:focus-within .experience-card-title {
  transform: translateX(4px);
  letter-spacing: 0.02em;
}

.about-caption p {
  max-width: 58ch;
}

.about-intro-row {
  align-items: flex-start;
  row-gap: 28px;
}

.about-intro-row > [class*="col-"] {
  width: 100%;
}

.about-intro-row .about-caption {
  margin-bottom: 0;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-visual-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100%, 480px);
  min-height: 420px;
  padding: 34px 28px 0;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(210, 94, 43, 0.18), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(31, 106, 97, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 239, 228, 0.96));
  box-shadow: 0 22px 48px rgba(31, 42, 45, 0.12);
}

.about-visual-frame::before {
  content: "";
  position: absolute;
  inset: auto 10% 18px;
  height: 22px;
  border-radius: 999px;
  background: rgba(31, 42, 45, 0.12);
  filter: blur(18px);
}

.about-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 330px);
  height: auto;
}

.about-skill-row {
  margin-top: 28px;
}

@media (min-width: 768px) {
  .about-intro-row > .col-md-6,
  .about-intro-row > .col-lg-6,
  .about-intro-row > .col-xl-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
}

.skill-ara {
  padding: 32px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.skill-group {
  padding: 20px;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
}

.skill-group-wide {
  grid-column: 1 / -1;
}

.skill-group h3 {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skill-group p {
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}

.brand-area {
  margin-top: 48px;
}

.brand-marquee {
  --brand-gap: 14px;
  display: flex;
  gap: var(--brand-gap);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  flex: 0 0 auto;
  gap: var(--brand-gap);
  min-width: max-content;
  animation: brand-scroll 42s linear infinite;
}

.single-brand {
  flex: 0 0 auto;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(31, 42, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(31, 42, 45, 0.08);
}

.brand-marquee:hover .brand-track,
.brand-marquee:focus-within .brand-track {
  animation-play-state: paused;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--brand-gap)));
  }
}

.experience-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px;
  width: 100%;
}

.experience-grid > div {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
  }
}

.skills-dashboard {
  overflow: hidden;
}

.skills-lead {
  max-width: 48rem;
  margin-bottom: 34px;
}

.skills-lead p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.skills-core-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.skills-core-card,
.skills-panel,
.skills-work-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.skills-core-card,
.skills-panel {
  padding: 30px;
}

.skills-core-card::before,
.skills-panel::before,
.skills-work-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.08), transparent 32%);
  pointer-events: none;
}

.skills-core-card-primary {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 239, 228, 0.98));
}

.skills-core-card:not(.skills-core-card-primary) {
  grid-column: span 6;
}

.skills-core-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.skills-core-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 94, 43, 0.18), rgba(31, 106, 97, 0.18));
  color: var(--accent-2);
  box-shadow: 0 12px 26px rgba(31, 42, 45, 0.1);
  flex: 0 0 auto;
}

.skills-core-icon svg {
  width: 28px;
  height: 28px;
}

.skills-core-card h3,
.skills-work-item h4 {
  position: relative;
  z-index: 1;
  margin: 0;
}

.skills-core-head p,
.skills-work-item p,
.skills-tech-line p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.skills-core-head p {
  margin-top: 10px;
}

.skills-core-list {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.8;
}

.skills-section-head {
  margin-bottom: 20px;
}

.skills-section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.skills-section-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.skills-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 24px;
  margin-top: 34px;
  align-items: start;
}

.skills-tech-lines {
  position: relative;
  z-index: 1;
}

.skills-tech-line {
  display: grid;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(31, 42, 45, 0.08);
}

.skills-tech-line:first-child {
  padding-top: 0;
  border-top: 0;
}

.skills-tech-line span {
  position: relative;
  z-index: 1;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skills-work-list {
  display: grid;
  gap: 16px;
}

.skills-work-item {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  box-shadow: none;
}

.skills-work-item h4 {
  margin-bottom: 6px;
}

.contact-title,
.contact-card h3 {
  margin-bottom: 12px;
}

.contact-intro {
  max-width: 46rem;
  font-size: 1.05rem;
}

.contact-grid {
  row-gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card a.btn,
.contact-card a.border-btn {
  width: fit-content;
  margin-top: auto;
}

.wants-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 228, 0.96));
  box-shadow: 0 24px 58px rgba(31, 42, 45, 0.12);
}

.wants-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 106, 97, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(210, 94, 43, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 46%);
  pointer-events: none;
}

.wantToWork-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 320px);
  gap: 28px;
  align-items: stretch;
  padding: 36px 40px;
}

.wantToWork-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.wantToWork-caption h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.wantToWork-caption p {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.wantToWork-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(31, 42, 45, 0.94), rgba(39, 67, 70, 0.92));
  box-shadow: 0 20px 40px rgba(31, 42, 45, 0.18);
}

.wantToWork-card-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wantToWork-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.wantToWork-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.wantToWork-btn a {
  color: #fff;
}

.wantToWork-btn .btn {
  width: 100%;
  box-shadow: 0 16px 34px rgba(210, 94, 43, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease, color 0.2s ease;
}

.wantToWork-btn .btn:hover,
.wantToWork-btn .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(210, 94, 43, 0.28);
  color: #fff;
}

.footer-bottom-area {
  padding: 36px 0 48px;
  color: var(--ink);
}

.footer-border {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-bottom-area .main-menu a {
  color: var(--ink);
}

.footer-bottom-area .main-menu a:hover,
.footer-bottom-area .main-menu a:focus-visible {
  color: var(--accent-2);
}

.footer-bottom-area .header-area,
.footer-bottom-area .main-header,
.footer-bottom-area .menu-wrapper {
  position: static;
  padding: 0;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-bottom-area .main-menu ul {
  justify-content: center;
}

.footer-credit {
  margin-top: 18px;
  text-align: center;
}

.footer-credit a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--accent-2);
}

#back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
}

#back-top a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(31, 42, 45, 0.9);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(31, 42, 45, 0.24);
}

#back-top a:hover,
#back-top a:focus-visible {
  background: var(--accent);
  color: #fff;
}

@media (min-width: 576px) {
  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-8 {
    width: 66.6667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-11 {
    width: 91.6667%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }

  .col-md-5 {
    width: 41.6667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.3333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.3333%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-5 {
    width: 41.6667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.3333%;
  }

  .col-lg-8 {
    width: 66.6667%;
  }

  .col-lg-10 {
    width: 83.3333%;
  }

  .offset-lg-1 {
    margin-left: 8.3333%;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .col-xl-4 {
    width: 33.3333%;
  }

  .col-xl-5 {
    width: 41.6667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-8 {
    width: 66.6667%;
  }
}

@media (max-width: 991px) {
  .header-area {
    position: static;
    padding-top: 12px;
  }

  .main-header {
    border-radius: 28px;
  }

  .menu-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .main-menu ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom-area .main-menu ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .single-slider {
    min-height: auto;
    padding: 72px 0 102px;
  }

  .hero__caption h1 {
    max-width: none;
  }

  .wantToWork-btn {
    justify-content: flex-start;
  }

  .employee {
    justify-content: center;
    min-height: 240px;
  }

  .wantToWork-panel {
    grid-template-columns: 1fr;
  }

  .wantToWork-caption {
    max-width: none;
  }

  .project-overview-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-overview-card {
    min-height: auto;
    padding: 18px;
  }

  .project-overview-media {
    min-height: 280px;
    border-radius: 24px;
  }

  .project-overview-title-wrap {
    inset: auto 0 0 0;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 22px;
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(180deg, rgba(31, 42, 45, 0), rgba(31, 42, 45, 0.84));
  }

  .project-overview-title {
    font-size: 1.9rem;
  }

  .project-overview-content {
    position: static;
    margin-top: 18px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border-color: rgba(31, 42, 45, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    color: var(--ink);
  }

  .project-overview-summary {
    color: var(--muted);
  }

  .project-overview-content .project-tag {
    border-color: rgba(31, 42, 45, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
  }

  .project-featured,
  .project-showcase-grid,
  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-featured-actions {
    margin-bottom: 18px;
  }

  .project-featured-image {
    min-height: 280px;
  }

  .project-featured-media-application {
    min-height: 280px;
    padding: 8px;
  }

  .project-overview-image,
  .project-overview-art,
  .project-featured-art {
    min-height: 260px;
  }

  .project-overview-media .project-overview-art {
    min-height: 260px;
  }

  .project-overview-image {
    height: 280px;
  }

  .skills-core-grid,
  .skills-simple-grid {
    grid-template-columns: 1fr;
  }

  .skills-core-card,
  .skills-core-card-primary,
  .skills-core-card:not(.skills-core-card-primary) {
    grid-column: auto;
  }

  .skills-tech-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .section-padding40 {
    padding: 68px 0;
  }

  .home-experience-section {
    padding: 56px 0;
  }

  header .logo {
    display: none;
  }

  .single-services,
  .skill-ara,
  .contact-card,
  .wantToWork-panel {
    padding: 24px;
  }

  .project-overview-card,
  .skills-core-card,
  .skills-panel,
  .project-card,
  .project-featured,
  .project-showcase-section,
  .project-detail-card {
    padding: 24px;
  }

  .skills-lead p {
    font-size: 1rem;
  }

  .project-showcase-intro {
    font-size: 1rem;
  }

  .project-shot {
    padding: 12px;
  }

  .project-shot-main {
    padding: 14px;
  }

  .project-overview-content {
    padding: 22px;
  }

  .project-overview-image,
  .project-overview-art,
  .project-featured-art {
    min-height: 220px;
  }

  .project-overview-media .project-overview-art {
    min-height: 220px;
  }

  .project-overview-media {
    min-height: 220px;
  }

  .project-overview-image {
    height: 220px;
  }

  .project-overview-title {
    font-size: 1.6rem;
  }

  .project-featured-image {
    min-height: 220px;
  }

  .project-featured-media-application {
    min-height: 220px;
    padding: 6px;
  }

  .skills-core-head {
    flex-direction: column;
  }

  .skills-work-item {
    padding: 18px 20px;
  }

  .hero-copy-col {
    width: 100% !important;
  }

  .hero-mark-col,
  .employee {
    display: none;
  }

  .about-visual-frame {
    min-height: 360px;
    padding-top: 28px;
  }

  .skill-grid {
    grid-template-columns: 1fr;
  }

  .wantToWork-panel {
    gap: 20px;
  }

  .wantToWork-card {
    padding: 22px;
  }

  .single-services {
    flex-direction: column;
  }

  .gallery-img {
    min-height: 250px;
  }

  .experience-grid {
    grid-template-columns: 1fr !important;
  }

  .services-expertise-grid {
    grid-template-columns: 1fr;
  }

  .hero-area2 {
    min-height: 220px;
    padding-top: 96px;
  }

  .compact-subpage .hero-area2 {
    min-height: 160px;
    padding: 84px 0 12px;
  }
}

@media (max-width: 575px) {
  .container,
  .container-fluid {
    width: min(100% - 20px, 1180px);
  }

  .menu-wrapper {
    padding: 16px;
  }

  .main-menu ul {
    gap: 10px;
  }

  .main-menu a,
  .btn,
  .border-btn,
  .border-btn2 {
    width: 100%;
  }

  .hero-actions,
  .wantToWork-btn {
    flex-direction: column;
  }

  .employee {
    min-height: 240px;
  }

  #back-top {
    right: 14px;
    bottom: 14px;
  }
}
