/* ===================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   =================================== */
:root {
  /* Colors */
  --black: #141414;
  --text-black: #0d1419;
  --white: #ffffff;
  --blue: #2b35dc;
  --light-gray: #1e29318c;
  --light-gray-b96: #f5f5f5;
  --gray: #8a8f93;
  --text-gray: #7c7c7c;
  --dark-gray: #9ea1a3;
  --bg-gray: #F4F4F4;

  /* Fonts */
  --font-bold: "SpaceGrotesk-Bold";
  --font-light: "SpaceGrotesk-Light";
  --font-medium: "SpaceGrotesk-Medium";
  --font-regular: "SpaceGrotesk-Regular";
  --font-semibold: "SpaceGrotesk-SemiBold";

  /* Monospace Fonts */
  --ffs-font-bold: "SpaceMono-Bold";
  --ffs-font-bold-italic: "SpaceMono-BoldItalic";
  --ffs-font-italic: "SpaceMono-Italic";
  --ffs-font-regular: "SpaceMono-Regular";
}

/* ===================================
   FONT FACES
   =================================== */
@font-face {
  font-family: "SpaceGrotesk-Bold";
  src: url("../fonts/SpaceGrotesk-Bold.ttf");
}

@font-face {
  font-family: "SpaceGrotesk-Light";
  src: url("../fonts/SpaceGrotesk-Light.ttf");
}

@font-face {
  font-family: "SpaceGrotesk-Medium";
  src: url("../fonts/SpaceGrotesk-Medium.ttf");
}

@font-face {
  font-family: "SpaceGrotesk-Regular";
  src: url("../fonts/SpaceGrotesk-Regular.ttf");
}

@font-face {
  font-family: "SpaceGrotesk-SemiBold";
  src: url("../fonts/SpaceGrotesk-SemiBold.ttf");
}

@font-face {
  font-family: "SpaceMono-Bold";
  src: url("../fonts/SpaceMono-Bold.ttf");
}

@font-face {
  font-family: "SpaceMono-BoldItalic";
  src: url("../fonts/SpaceMono-BoldItalic.ttf");
}

@font-face {
  font-family: "SpaceMono-Italic";
  src: url("../fonts/SpaceMono-Italic.ttf");
}

@font-face {
  font-family: "SpaceMono-Regular";
  src: url("../fonts/SpaceMono-Regular.ttf");
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: var(--blue);
  transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-regular);
  background-color: var(--bg-gray);
  position: relative;
}

/* hide system cursor and set custom */
html,
body {
  cursor: none;
}

/* force-hide browser cursor everywhere */
/* *,
*::before,
*::after {
  cursor: none !important;
} */

a {
  cursor: none;
}

a:hover {
  cursor: none;
}

/* default cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  pointer-events: none;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

/* enlarged cursor on clickable elements */
a:hover~#custom-cursor,
button:hover~#custom-cursor,
[role="button"]:hover~#custom-cursor,
.clickable:hover~#custom-cursor {
  width: 18px;
  height: 18px;
}

/* Modal Open States */
body.modal-open,
html.modal-open {
  overflow: hidden;
  height: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h3 {
  font: 400 48px/115% var(--font-regular);
  letter-spacing: 0.3px;
  color: var(--black);
}

h4 {
  font: 500 28px/116% var(--font-medium);
  color: var(--black);
}

h5 {
  font: 400 22px/140% var(--font-regular);
  color: var(--black);
  letter-spacing: 0.2px;
}

p {
  font: 400 12px/130% var(--font-regular);
  color: var(--light-gray);
  letter-spacing: 0.1px;
}

p.color-black {
  color: var(--black);
}

/* ===================================
   LAYOUT & UTILITIES
   =================================== */
.container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-auto {
  margin-left: auto;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 100px;
}

/* Background slides wrapper */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg .slide .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  /* fade images instead of slide */
  transition: opacity 1.5s ease-in-out;
}

/* active slide image visible */
.hero-bg .slide.active .hero-bg-img {
  opacity: 1;
}

/* Content stays on top */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  color: white;
}

.hero-content .container {
  height: 100%;
}

.hero-content-conainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.flex-item-left {
  width: 30%;
}

.flex-item-left .logo {
  height: 49px;
  display: flex;
  align-items: center;
  margin-bottom: 30%;
}

.flex-item-left .logo img {
  height: 18px;
}

.flex-item-left .hero-slide-info {
  color: white;
  font-size: 15px;
  line-height: 1.4;
}

.flex-item-left #slide-counter {
  font-weight: 500;
  opacity: 0.6;
}

.flex-item-left #slide-title {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.flex-item-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ===================================
   Menu Hero SECTION
   =================================== */
.menu-overlay .container {
  height: 100%;
}

.menu-content-conainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

/* FULLSCREEN MENU */
.menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* MENU CONTAINER */
.menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
}

/* TOP BAR */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-top img {
  height: 32px;
}

.menu-close {
  color: #0B0B0B66;
}

/* LANG SWITCH INSIDE MENU */
.menu-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-lang span {
  font-weight: 500;
  font-size: 15px;
}

.menu-lang span.active {
  color: black !important;
  text-decoration: underline;
  opacity: 1;
}

.menu-lang span:not(.active) {
  opacity: 0.5;
}

/* CENTER NAV */
.menu-center {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu-center ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.menu-center li a {
  font-size: 53px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--black);
}

.menu-center li a:hover {
  text-decoration: underline;
  cursor: none;
}

/* FOOTER */
.menu-footer {
  display: flex;
  justify-content: flex-start;
  gap: 70px;
  font-size: 15px;
}

.menu-footer a {
  text-decoration: none;
  color: #0B0B0B66;
}

.menu-footer a:hover {
  text-decoration: underline;
  color: #0B0B0B66;
}


/* NAV */
.flex-item-right .hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 49px;
  margin-bottom: 12%;
}

.flex-item-right .hero-nav nav ul li:hover {
  text-decoration: underline;
}

/* Main text */
.flex-item-right .hero-text {
  max-width: 700px;
}

.flex-item-right .hero-text h1 {
  font-size: 53px;
  line-height: 1.2;
  font-weight: 500;
}

.flex-item-right .lang-switch {
  display: flex;
  gap: 8px;
  font-size: 16px;
  user-select: none;
}

.flex-item-right .lang-switch span {
  opacity: 0.5;
  text-decoration: none;
  transition: 0.3s ease;
}

.flex-item-right .lang-switch span.active {
  opacity: 1;
  color: white;
  text-decoration: underline;
}

.bottom-hero-content {
  margin-bottom: 20px;
}

.bottom-hero-content span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}


/* ===================================
   SECTION HEADERS
   =================================== */
.section__top {
  margin-bottom: 20px;
}

.section__top-wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
}

.section__top-wrapper p {
  max-width: 450px;
  padding-right: 24px;
}

/* ===================================
   Projects SECTION
   =================================== */
.projects-section {
  margin-bottom: 100px;
}

.projects-title-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
}

.projects-title-filter .title {
  width: 30%;
  color: var(--black);
  font-size: 28px;
  font-weight: 400;
}

.projects-title-filter .filter-container {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* justify-content: space-between; */
  gap: 12px;
}

.projects-title-filter .tabs-container {
  display: flex;
  align-items: center;
  margin-right: 50px;
  gap: 5px;
}

.tabs-container .tab-item {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.tabs-container .tab-item.active {
  opacity: 1;
  font-weight: 500;
  text-decoration: underline;
}

.projects-title-filter .filter-projects-section ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Default: show desktop, hide mobile */
.projects-title-filter .filter-select-mobile {
  display: none;
}

.projects-title-filter .filter-projects-section ul li {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.projects-title-filter .filter-projects-section ul li.active {
  text-decoration: underline;
}

.list-projects-tab {
  display: none;
}

.projects-list-year {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid #8A8F9357;
  padding: 15px 0px;
}

.projects-list-year .year-label {
  font-size: 20px;
  font-weight: 500;
  width: 30%;
}

.row-list-container {
  width: 70%;
}

.project-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  padding: 8px 0;
  border-bottom: 1px solid #8A8F9357;
  font-size: 15px;
  gap: 15%;
  position: relative;
}

.projects-list-year .row-list-container .project-row:last-child {
  border-bottom: none;
}

.project-name {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}

.project-category {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}

.project-status {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
}

.project-row.in-process .project-name,
.project-row.in-process .project-category,
.project-row.in-process .project-status {
  color: #8A8F93;
}

.image-row-follower {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  z-index: 10;
}

.image-row-follower img {
  width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}


/* Gallery MAP TAB */
#gallery-section {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background-image: url('../images/grid-projects.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.gallery-grid {
  gap: 15px;
  padding: 50px;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item {
  position: absolute;
  overflow: hidden;
  opacity: 0.6;
}

.gallery-item.active-filter {
  z-index: 9 !important;
}

.project-1 {
  top: 2%;
  left: 5%;
  max-width: 18%;
}

.project-2 {
  top: 5%;
  left: 25%;
  max-width: 12%;
}

.project-3 {
  top: 14%;
  right: 24%;
  max-width: 13%;
}

.project-4 {
  bottom: 11%;
  right: 4%;
  max-width: 16%;
}

.project-5 {
  bottom: 15%;
  left: 10%;
  max-width: 15%;
}

.project-6 {
  top: 20%;
  left: 12%;
  max-width: 12%;
}

.project-7 {
  top: 18%;
  right: 7%;
  max-width: 16%;
}

.project-8 {
  top: 5%;
  right: 0%;
  max-width: 16%;
}

.project-9 {
  bottom: 10%;
  right: 35%;
  max-width: 15%;
}

.project-10 {
  top: 3%;
  right: 36%;
  max-width: 21%;
}

.project-11 {
  top: 45%;
  left: 28%;
  max-width: 17%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.mini-map {
  position: absolute;
  bottom: 5%;
  right: 2%;
  transform: translateY(-5%);
  width: 264px;
  height: 168px;
  background-color: #fff;
}

.map-item {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #C9C9C9;
}

.mini-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-item:nth-child(1) {
  top: 5%;
  left: 5%;
  width: 25px;
  height: 15px;
}

.map-item:nth-child(2) {
  top: 12%;
  left: 15%;
  width: 25px;
  height: 35px;
}

.map-item:nth-child(3) {
  top: 14%;
  right: 24%;
  width: 20px;
  height: 30px;
}

.map-item:nth-child(4) {
  bottom: 11%;
  right: 4%;
  width: 35px;
  height: 20px;
}

.map-item:nth-child(5) {
  bottom: 15%;
  left: 10%;
  width: 25px;
  height: 30px;
}

.map-item:nth-child(6) {
  top: 15%;
  left: 7%;
  width: 20px;
  height: 15px;
}

.map-item:nth-child(7) {
  top: 18%;
  right: 7%;
  width: 30px;
  height: 40px;
}

.map-item:nth-child(8) {
  top: 5%;
  right: 2%;
  width: 25px;
  height: 25px;
}

.map-item:nth-child(9) {
  bottom: 10%;
  right: 35%;
  width: 20px;
  height: 35px;
}

.map-item:nth-child(10) {
  top: 5%;
  right: 53%;
  width: 40px;
  height: 30px;
}

.map-item:nth-child(11) {
  top: 45%;
  left: 28%;
  width: 35px;
  height: 40px;
}

/* ===================================
   TEAMS SECTION
   =================================== */
.teams {
  margin-bottom: 86px;
  position: relative;
  z-index: 10;
}

.teams-swiper {
  z-index: 999;
  margin-bottom: 66px;
}

.teams__person {
  position: relative;
}

.teams__person-wrapper {
  display: grid;
  grid-template-columns: 440px 1fr;
  column-gap: 12px;
  position: relative;
}

.teams__person-col {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.teams__person-col img {
  aspect-ratio: 440 / 552;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  transform: scaleX(-1);
}

.teams__person-col.col-2 {
  background-color: white;
  border-radius: 2px;
}

.teams__person-info {
  position: absolute;
  padding: 24px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 2px;
}

.teams__person-info>div {
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: space-between;
}

.teams__person-info span {
  color: var(--white);
  font: 400 14px/100% var(--font-regular);
  letter-spacing: 0.1px;
}

.teams__person-info p {
  color: var(--white);
  font: 400 54px/100% var(--font-regular);
  letter-spacing: -0.5px;
  max-width: 230px;
}

.teams__person-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.teams__person-header {
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1fr 1fr;
  column-gap: 12px;
}

.teams__person-inner h5 {
  font: 400 28px/130% var(--font-regular);
  letter-spacing: 0.1px;
  color: var(--black);
}

.teams__person-header p {
  font: 400 15px/100% var(--font-regular);
  letter-spacing: 0.1px;
  color: var(--gray);
}

.teams__person-header p.color-black {
  color: var(--black);
}

/* ===================================
   SWIPER NAVIGATION
   =================================== */
.nav-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  z-index: 10;
}

.nav-zone.nav-left {
  left: 0;
}

.nav-zone.nav-right {
  right: 0;
}

.cursor-follower {
  position: fixed;
  top: -20px;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: all 0.2s ease;
}

.cursor-follower.active {
  width: 49px;
  height: 30px;
}

.cursor-follower.rotate img {
  transform: rotate(180deg);
}

/* ===================================
   DRAGABLE CARDS SECTION
   =================================== */
#card1 {
  transform: rotate(-4.89deg);
}

#card2 {
  transform: rotate(1.41deg);
}

#card3 {
  transform: rotate(-1.62deg);
}

#card4 {
  transform: rotate(3.06deg);
}


#card1:hover {
  transform: scale(1);
}

#card2:hover {
  transform: scale(1);
}

#card3:hover {
  transform: scale(1);
}

#card4:hover {
  transform: scale(1);
}

.drag-cards-section {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.drag-cards-section .section-title {
  font-size: 38px;
  max-width: 547px;
  line-height: 120%;
  font-weight: 400;
  color: var(--black);
}

.drag-card {
  width: 433px;
  height: 338px;
  background: #fff;
  border-radius: 2px;
  padding: 20px;
  position: absolute;
  cursor: grab;
  user-select: none;
}

#card1 {
  top: 25%;
  left: 5%;
}

#card2 {
  top: 50%;
  left: 16%;
}

#card3 {
  top: 35%;
  left: 43%;
}

#card4 {
  top: 2%;
  left: 63%;
}

.drag-card:active {
  cursor: grabbing;
}

.drag-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
  height: 100%;
}

.drag-card-content .drag-card-title {
  color: #8A8F93;
  font-size: 15px;
}

.drag-card-content .drag-card-number {
  color: var(--black);
  font-size: 180px;
  font-family: "Martian Mono", monospace;
  font-weight: 200;
}


/* ===================================
   LIVES SECTION
   =================================== */
.lives {
  margin-bottom: 80px;
}

.lives__inner {
  position: relative;
  max-height: 552px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

.lives__inner img {
  width: 100%;
  object-fit: cover;
}

.lives__inner-info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background-color: var(--blue);
  padding: 24px;
  border-radius: 3px;
  max-width: 435px;
  width: 100%;
}

.lives__inner-info h5 {
  color: var(--white);
  font: 400 22px/110% var(--font-regular);
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

.lives__inner-info p {
  color: var(--white);
  font: 500 14px/100% var(--font-regular);
  letter-spacing: 0.1;
  max-width: 360px;
  opacity: 0.7;
}

.lives__inner-action {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
}

.lives__inner-action p {
  color: var(--bg-gray);
  font: 500 14px/100% var(--font-medium);
}

.lives__inner-action div:not(.lives__inner-sound) {
  display: flex;
  align-items: center;
  column-gap: 8px;
  height: fit-content;
}

.lives__inner-dot {
  min-height: 8px;
  min-width: 8px;
  background-color: var(--bg-gray);
  border-radius: 50%;
  display: inline-block;
}

.lives__inner-sound {
  display: flex;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  background-color: var(--bg-gray);
  border-radius: 50%;
  border: 1px solid var(--black);
}

.lives__inner-sound img {
  width: fit-content;
}

/* ===================================
   Cards Video SECTION
   =================================== */
.cards-video-section {
  margin-bottom: 50px;
}

.title-card-container {
  margin-bottom: 20px;
}

.title-card-container .title-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.title-card-container .title-section h4 {
  max-width: 400px;
  width: 100%;
  font: 400 38px / 116% var(--font-regular) !important;
  color: var(--black);
  font-weight: 400;
  margin-top: 30px;
}

.title-card-container .title-section h4 span {
  color: #AFAFAF;
  display: block;
}

.title-card-container .title-section .card {
  max-width: 50%;
  width: 100%;
}

.cards-video-section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px 0;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-header h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
}

.card-header p {
  font-size: 14px;
  font-weight: 400;
  color: #8A8F93;
  max-width: 294px;
}

.car-flex-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.car-flex-line .line-card {
  width: 100%;
  height: 1px;
  background-color: #8A8F9370;
}

.card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  border-radius: 15px;
  width: 45px;
  height: 40px;
}

.card-media {
  position: relative;
  width: 100%;
  height: 317px;
  overflow: hidden;
  border-radius: 2px;
  /* cursor: pointer; */
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease;
}

.card-media video {
  opacity: 0;
  pointer-events: none;
}

/* Hover effect: show video */
.card-media:hover video {
  opacity: 1;
}

.card-media:hover img {
  opacity: 0;
}

.arrow-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFFB2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}


/* ===================================
   DOCUMENTS SECTION
   =================================== */
.our-documents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.our-documents__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 213px;
  border-radius: 2px;
  padding: 24px 22px;
  transition: all 0.5s ease-in-out;
  background-color: white;
}

.our-documents__col:hover {
  background-color: var(--blue);
  transition: all 0.5s ease-in-out;
}

.our-documents__col:hover h5,
.our-documents__col:hover p {
  color: var(--white);
  transition: all 0.5s ease-in-out;
}

.our-documents__col:hover a {
  border-color: var(--white);
  transition: all 0.5s ease-in-out;
}

.our-documents__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.our-documents__bottom p {
  color: var(--dark-gray);
  line-height: 100%;
}

.our-documents__bottom a {
  display: flex;
  min-width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-color: #EEEEEE;
  border-radius: 50%;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-projects {
  margin-top: 20px;
}

.map-projects__map {
  max-height: 552px;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.map-projects__map img {
  width: 100%;
  object-fit: cover;
}

.map-projects__info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background-color: var(--blue);
  border-radius: 3px;
  padding: 24px;
  max-width: 440px;
}

.map-projects__info h5 {
  color: var(--white);
  max-width: 330px;
  font: 400 22px/110% var(--font-regular);
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}

.map-projects__info p {
  color: var(--white);
  font: 400 14px/100% var(--font-regular);
  letter-spacing: 0.1px;
  opacity: 0.7;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  position: relative;
  background-color: var(--black);
  padding: 45px 0 40px 0;
}

.footer .container {
  min-height: 833px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* spotlight layer (extra brightness) */
.footer-spotlight-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  /* hidden until hover */

  background-image: url('../images/gradientfooter.svg');
  background-size: cover;
  background-position: center;

  filter: brightness(160%);
  /* ← 40% stronger reveal */

  /* spotlight mask with dynamic center using CSS variables */
  --mx: 50%;
  --my: 50%;

  mask-image: radial-gradient(circle 550px at var(--mx) var(--my),
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.6) 40%,
      rgba(255, 255, 255, 0) 80%);
  -webkit-mask-image: radial-gradient(circle 550px at var(--mx) var(--my),
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.6) 40%,
      rgba(255, 255, 255, 0) 80%);

  transition: opacity 0.35s ease-out;
}

.footer__logo {
  max-width: 156px;
  display: block;
  position: relative;
  z-index: 9;
}

.footer__logo:hover {
  cursor: none;
}

.footer__wrapper {
  display: grid;
  grid-template-columns: 156px 1fr;
  column-gap: 32px;
  justify-content: space-between;
  margin-bottom: 90px;
}

.footer__inner {
  margin-left: auto;
  position: relative;
  z-index: 9;
}

.footer__inner a {
  display: block;
  font: 400 12px/100% var(--font-regular);
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: var(--white);
}

.footer__navigation {
  display: flex;
  align-items: center;
  column-gap: 64px;
  margin-left: auto;
  margin-bottom: 112px;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 134px;
}

.footer__info p {
  max-width: 182px;
  text-transform: uppercase;
  color: var(--white);
  font: 400 12px/150% var(--font-regular);
  letter-spacing: 0.5px;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
}

.footer__logo-big {
  width: 100%;
  position: relative;
  z-index: 9;
}

.footer__logo-big img {
  width: 100%;
}

.mobile-logo {
  display: none;
}

.desktop-logo {
  display: block;
}

/* ===================================
   MODALS
   =================================== */
.modal-card {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-card .modal-content {
  padding: 40px;
  background-color: white;
  z-index: 10;
}

/* Blur Overlays */
.blur-overlay,
.blur-overlay-video {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.blur-overlay.active,
.blur-overlay-video.active {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 1;
  pointer-events: auto;
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  flex-direction: column;
}

.modal-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
}

.modal-header-nav .logo {
  height: 18px;
}

.modal-header-nav .logo img {
  height: 100%;
}

.modal-header-nav .close-btn {
  font-size: 15px;
  color: #0F1316;
}

.close-btn:hover {
  text-decoration: underline;
}

.modal-header .title-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 15px;
  width: 100%;
}

.modal-header h1 {
  color: var(--black);
  font-size: 53px;
  line-height: 102%;
  max-width: 353px;
  font-weight: 400;
}

.modal-header p {
  color: var(--black);
  font-size: 20px;
  line-height: 100%;
  max-width: 552px;
}

/* Video Section */
.video-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

.video-card {
  width: 100%;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 8px;
  position: relative;
  height: 550px;
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.video-btns-container {
  position: absolute;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  left: unset;
}

.video-title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-title p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.video-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-btn,
.screen-btn {
  border: none;
  background: transparent;
}

/* Back Section */
.back-section {
  width: fit-content;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.back-section p {
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
}

.back-section .back-btn {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.back-section:hover .back-btn {
  background-color: var(--white);
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--black);
}

.back-btn svg path {
  stroke: var(--white);
  transition: all 0.5s ease-in-out;
}

.back-section:hover .back-btn svg path {
  stroke: var(--black);
  transition: all 0.5s ease-in-out;
}

/* Service Modal Specific */
.modal-card-service .img-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  max-height: 500px;
  overflow: hidden;
}

.modal-card-service .img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-card-service .service-content-section .line-border {
  width: 100%;
  height: 1px;
  background-color: #CDCDCD;
  margin-bottom: 50px;
  margin-top: 50px;
}

.modal-card-service .text-container-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 50px;
}

.modal-card-service .text-container-content .content-title {
  max-width: 333px;
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
}

.modal-card-service .text-container-content .content-text {
  max-width: 50%;
  width: 100%;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal-card-service .text-container-content .content-text-item .item-title {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 12px;
}

.modal-card-service .text-container-content .content-text-item .item-content {
  font-size: 16px;
  color: #808080;
  margin-bottom: 24px;
}

.modal-card-service .text-container-content .content-text-item .line-border {
  width: 100%;
  background-color: #CDCDCD;
  height: 1px;
}

.modal-card-service .text-container-content .container-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.modal-card-service .text-container-content .container-btn .service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #3A43E2;
  color: white;
  width: 199px;
  height: 42px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.modal-card-service .text-container-content .container-btn .service-btn:hover {
  background-color: #fff;
  color: black;
  transition: all 0.3s ease-in-out;
  border: 1px solid #3A43E2;
}

.modal-card-service .text-container-content .container-btn .service-btn svg rect {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

.modal-card-service .text-container-content .container-btn .service-btn:hover svg rect {
  fill: #3A43E2;
  transition: all 0.3s ease-in-out;
}

.modal-card-service .cards-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.modal-cards-title {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 20px;
}

.modal-card-service .cards-container .card-item .services__content h3 {
  color: var(--white);
  font-size: 22px;
}

.modal-card-service .cards-container .card-item .arrow-btn {
  right: 20px !important;
  left: unset;
}

.modal-card-service .cards-container .card-item .card-item-title {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 22px;
  color: #F0F0F0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-card-service .cards-container .card-item .card-item-title.black {
  position: absolute;
  top: 20px;
  font-size: 22px;
  color: #0F1316;
}


/* ===================================
   Projects Modal
   =================================== */
.modal-projects .modal-content {
  padding: 0px !important;
  position: relative;
}

.modal-projects .project-slide-section {
  padding-bottom: 50px;
}

.modal-projects .modal-header {
  position: absolute;
  z-index: 9;
  margin-top: 40px;
  width: 100%;
}

.modal-projects .modal-header .container {
  width: 100%;
}

.modal-projects .modal-header .modal-header-nav .logo {
  width: 30%;
}

.modal-projects .modal-header .modal-header-nav .close-btn {
  color: #fff;
  width: 70%;
  font-size: 15px;
}

.modal-projects .project-slide-section .slide-inner {
  position: relative;
}

.modal-projects .project-slide-section .slide-inner .slide-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.modal-projects .project-slide-section .slide-inner .hero-content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%); */
  height: 100%;
}

.modal-projects .project-slide-section .slide-inner .hero-content-container .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.modal-projects .project-slide-section .slide-inner .hero-top-container {
  width: 100%;
  margin-top: 150px;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .arrow-scroll-container {
  width: 30%;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .arrow-scroll-container .scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3F34D;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .arrow-scroll-container .scroll-arrow:hover {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .arrow-scroll-container .scroll-arrow:hover svg path {
  stroke: var(--black);
  transition: all 0.3s ease-in-out;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details {
  width: 70%;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .columns-container {
  max-width: 600px;
  margin-left: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  justify-content: flex-end;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .first-col,
.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .second-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .details-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details span {
  display: block;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
}

.modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .title-col {
  display: block;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
}

.modal-projects .project-slide-section .slide-inner .hero-top-container .slide-title {
  color: var(--white);
  font-size: 76px;
  font-weight: 400;
  line-height: 96%;
  max-width: 700px;
}

.modal-projects.complex .slide-image {
  object-position: top;
  height: 130vh !important;
}

.modal-projects .project-slide-section .slide-inner .slide-description {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.85;
}

.modal-projects.complex .project-slide-section .slide-inner .hero-top-container .slide-title {
  display: none;
}

.body-project-content {
  margin-top: 50px;
}

.body-project-content .description-section {
  margin-bottom: 50px;
}

.body-project-content .description-section .description-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 50px;
}

.body-project-content .description-section .description-item .section-item {
  width: 100%;
}

.body-project-content .description-section .description-item .section-item .title-preview {
  font-size: 15px;
  color: #8A8F93;
  margin-bottom: 10px;
}

.body-project-content .description-section .description-item .section-item .slide-description {
  font-size: 20px;
  color: var(--black);
}

.body-project-content .description-section .description-item .section-item .desc-title {
  font-size: 53px;
  color: var(--black);
  max-width: 70%;
  line-height: 110.00000000000001%;
}

.body-project-content .full-image-wrapper {
  width: 100%;
  max-height: 608px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body-project-content .full-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-project-content .gallery-image-section .image-container-left {
  max-width: 70%;
  width: 100%;
  max-height: 493px;
  height: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body-project-content .gallery-image-section .image-container-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-project-content .gallery-image-section .image-container-right {
  max-width: 50%;
  width: 100%;
  max-height: 734px;
  height: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: auto;
}

.body-project-content .gallery-image-section .image-container-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-project-content .description-section .description-item .image-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body-project-content .description-section .description-item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-swiper-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
}

.project-swiper-nav .nav-title {
  font-size: 28px;
  color: var(--black);
}

.project-swiper-nav .nav-arrow {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}

.project-swiper-nav .nav-arrow:hover {
  border: 1px solid var(--black);
  background-color: var(--white);
}

.project-swiper-nav .nav-arrow:hover svg path {
  stroke: var(--black);
}

.project-swiper-nav .project-next-btn .nav-arrow svg {
  transform: rotate(180deg);
}

.nav-btn .preview-img {
  position: absolute;
  top: -80px;
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 999;
}

.nav-btn:hover .preview-img {
  opacity: 1;
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (min-width: 1920px) {
  .project-1 {
    top: 2%;
    left: 5%;
    max-width: 14%;
  }

  .project-2 {
    top: 5%;
    left: 25%;
    max-width: 8%;
  }

  .project-3 {
    top: 14%;
    right: 24%;
    max-width: 9%;
  }

  .project-4 {
    bottom: 11%;
    right: 4%;
    max-width: 12%;
  }

  .project-5 {
    bottom: 15%;
    left: 10%;
    max-width: 11%;
  }

  .project-6 {
    top: 20%;
    left: 12%;
    max-width: 8%;
  }

  .project-7 {
    top: 18%;
    right: 7%;
    max-width: 12%;
  }

  .project-8 {
    top: 5%;
    right: 0%;
    max-width: 12%;
  }

  .project-9 {
    bottom: 10%;
    right: 35%;
    max-width: 11%;
  }

  .project-10 {
    top: 3%;
    right: 36%;
    max-width: 16%;
  }

  .project-11 {
    top: 45%;
    left: 28%;
    max-width: 12%;
  }
}

@media screen and (max-width: 1100px) {
  .projects-title-filter .filter-container {
    width: 100%;
  }
}

/* Tablet Styles */
@media screen and (max-width: 992px) {
  /* #custom-cursor {
    display: none;
  } */

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ===================================
   HERO SECTION RESPONSIVE
   =================================== */
  .flex-item-right .hero-text h1 {
    font-size: 32px;
  }

  .menu-center li a {
    font-size: 32px;
  }

  /* ===================================
   PROJECTS SECTION RESPONSIVE
   =================================== */
  .projects-title-filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-title-filter .filter-container {
    width: 100%;
  }

  .projects-list-year {
    flex-direction: column;
  }

  .projects-list-year .year-label {
    width: 100%;
  }

  .row-list-container {
    width: 100%;
  }

  #gallery-section {
    overflow-x: scroll;
  }

  .gallery-grid {
    width: 200%;
  }

  .mini-map {
    display: none;
  }


  /* .project-1 {
    top: 3%;
    left: 0%;
    max-width: 250px;
  }

  .project-2 {
    top: 12%;
    left: 20%;

    max-width: 250px;
  }

  .project-3 {
    top: 14%;
    right: 26%;

    max-width: 275px;
  }

  .project-4 {
    bottom: 10%;
    right: 0%;
    max-width: 400px;
  }

  .project-5 {
    bottom: 2%;
    left: 2%;
    max-width: 300px;
  }

  .project-6 {
    top: 21%;
    left: 5%;

    max-width: 250px;
  }

  .project-7 {
    top: 46%;
    right: 22%;

    max-width: 320px;
  }

  .project-8 {
    top: 5%;
    right: 8%;
    max-width: 260px;
  }

  .project-9 {
    bottom: 2%;
    right: 42%;
    max-width: 300px;
  }

  .project-10 {
    top: 3%;
    right: 41%;

    max-width: 400px;
  }

  .project-11 {
    top: 35%;
    left: 22%;
    max-width: 330px;
  } */

  /* ===================================
   DRAG CARDS SECTION RESPONSIVE
   =================================== */
  .drag-cards-section {
    min-height: 65vh;
  }

  .drag-cards-section .section-title {
    margin-bottom: 25px;
  }

  .drag-card {
    touch-action: none;
    width: 330px;
    height: 230px;
  }

  .drag-card-content .drag-card-number {
    font-size: 90px;
  }

  #card2 {
    top: 55%;
    left: 8%;
  }

  #card3 {
    top: 40%;
    left: 32%;
  }

  #card4 {
    top: 17%;
    left: 45%;
  }

  /* ===================================
   CARD-VIDEOS SECTION RESPONSIVE
   =================================== */
  .title-card-container .title-section {
    flex-direction: column;
    gap: 25PX;
  }

  .title-card-container .title-section h4 {
    max-width: 100%;
    width: 100%;
  }

  .title-card-container .title-section .card {
    max-width: 100%;
    width: 100%;
  }

  .card-header h3 {
    min-height: 70px;
  }

  /* ===================================
   TEAMS SECTION RESPONSIVE
   =================================== */
  .teams-swiper {
    margin-bottom: 15px;
  }

  .teams {
    margin-bottom: 50px;
  }

  .teams__person-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .teams__person-col img {
    width: 100%;
    aspect-ratio: 456 / 343;
    transform: scaleX(-1);
  }

  .teams .nav-zone,
  .teams .cursor-follower {
    display: none;
  }

  .teams__person-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
  }

  .teams__person-header .ml-auto {
    margin-left: unset;
  }

  .section__top-wrapper {
    column-gap: 50px;
  }

  .section__top-wrapper p {
    max-width: 289px;
    padding-right: 0px;
  }

  .lives__inner-info {
    max-width: 95%;
    right: unset;
    left: unset;
  }

  .our-documents {
    margin-bottom: 50px;
  }

  .our-documents__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .our-documents__col {
    min-height: 130px;
    padding: 16px 22px;
  }

  .our-documents__bottom a {
    min-width: 32px;
    height: 32px;
  }

  .our-documents__bottom a svg {
    width: 10px;
    height: 10px;
  }

  .map-projects {
    margin-bottom: 50px;
  }

  .map-projects__map {
    justify-content: center;
    border: 1px solid var(--black);
  }

  .map-projects__map img {
    min-height: 672px;
  }

  .map-projects__info {
    left: unset;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .footer__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 120px;
  }

  .footer__inner {
    margin-left: unset;
  }

  .footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 215px;
    margin-right: auto;
    margin-left: unset !important;
    margin-bottom: 50px;
  }

  .footer__info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 80px;
  }

  .footer__socials {
    justify-content: flex-start;
  }

  h3 {
    font: 400 40px / 120% var(--font-regular);
    letter-spacing: 0.2px;
  }

  .video-card {
    height: 400px;
  }

  .modal-card {
    background-color: var(--white);
    padding: 15px;
  }

  .modal-projects {
    padding: 0px !important;
  }

  .blur-overlay.active {
    opacity: 0;
  }

  .modal-card-service .service-content-section .line-border {
    display: none;
  }

  .modal-card .modal-content {
    padding: 0px;
    margin-left: 0px;
    margin-top: 0px;
    border: none;
  }

  .back-section p {
    font-size: 28px;
  }

  .modal-header h1 {
    font-size: 40px;
    max-width: 50%;
  }

  .modal-header .title-btn {
    margin-bottom: 25px;
  }

  .modal-header .title-btn p {
    max-width: 50%;
  }

  .modal-card-service .img-section {
    margin-bottom: 50px;
  }

  .modal-card-service .cards-container {
    flex-direction: column;
  }

  .modal-card-service .service-content-section .text-container-content {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .modal-card-service .service-content-section .text-container-content .content-title {
    max-width: 100%;
    width: 100%;
  }

  .modal-card-service .service-content-section .text-container-content .content-text {
    max-width: 100%;
    margin-left: 0;
  }

  .modal-projects .project-swiper-nav .nav-title {
    font-size: 22px;
  }

}

/* Mobile Styles */
@media screen and (max-width: 776px) {

  /* ===================================
   HERO SECTION RESPONSIVE
   =================================== */

  .hero-section {
    height: 70vh;
    overflow: hidden;
    margin-bottom: 50px;
  }

  .flex-item-left {
    width: 50%;
  }

  .flex-item-right .hero-text {
    position: absolute;
    top: 35%;
    left: 16px;
    max-width: 80%;
  }

  .flex-item-right .bottom-hero-content {
    position: absolute;
    bottom: 0px;
    left: 30%;
  }

  /* ===================================
   PROJECTS SECTION RESPONSIVE
   =================================== */
  .projects-section {
    margin-bottom: 50px;
  }

  .filter-list-desktop {
    display: none !important;
  }

  .filter-select-mobile {
    display: block !important;
    width: 100%;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: #e6e6e6;
  }

  .projects-title-filter {
    margin-bottom: 25px;
  }

  .projects-list-container .project-row {
    gap: 4%;
  }

  .projects-list-container .project-row .project-name {
    font-size: 14px;
  }

  .projects-list-container .project-row .project-category {
    font-size: 14px;
  }

  .projects-list-container .project-row .project-status {
    font-size: 14px;
  }

  .gallery-grid {
    width: 200%;
  }

  /* .project-1 {
    top: 1%;
    left: 0%;
    max-width: 160px;
  }

  .project-2 {
    top: 3%;
    left: 25%;
    max-width: 130px;
  }

  .project-3 {
    top: 14%;
    right: 43%;
    max-width: 120px;
  }

  .project-4 {
    bottom: 15%;
    right: 9%;
    max-width: 175px;
  }

  .project-5 {
    bottom: 10%;
    left: 3%;
    max-width: 210px;
  }

  .project-6 {
    top: 12%;
    left: 2%;
    max-width: 120px;
  }

  .project-7 {
    top: 55%;
    right: 33%;
    max-width: 232px;
  }

  .project-8 {
    top: 5%;
    right: 19%;
    max-width: 260px;
  }

  .project-9 {
    bottom: 2%;
    right: 55%;
    max-width: 135px;
  }

  .project-10 {
    top: 30%;
    right: 46%;
    max-width: 300px;
  }

  .project-11 {
    top: 25%;
    left: 6%;
    max-width: 140px;
  } */

  /* ===================================
   DRAG SECTION RESPONSIVE
   =================================== */
  .drag-cards-section .section-title {
    font-size: 24px;
    max-width: 450px;
  }

  .drag-card {
    touch-action: none;
    width: 250px;
    height: 150px;
  }

  .drag-card-content .drag-card-number {
    font-size: 45px;
  }

  #card3 {
    top: 48%;
    left: 52%;
  }

  #card4 {
    top: 17%;
    left: 48%;
  }

  /* ===================================
   TEAMS SECTION RESPONSIVE
   =================================== */
  .teams__person-inner h5 {
    font: 400 20px / 100% var(--font-regular);
  }

  .teams__person-info p {
    font: 400 48px / 100% var(--font-regular);
  }

  .lives {
    margin-bottom: 50px;
  }

  .lives__inner-info {
    max-width: 95%;
  }

  .map-projects__info {
    max-width: 95%;
    width: 100%;
  }

  .map-projects__info h5 {
    margin-bottom: 20px;
  }

  /* ===================================
   SERVICES SECTION RESPONSIVE
   =================================== */
  .title-card-container {
    margin-bottom: 0px;
  }

  .title-card-container .title-section h4 {
    font-size: 24px !important;
  }

  .cards-video-section-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 16px 0;
  }

  .card-header h3 {
    font-size: 22px !important;
    min-height: auto !important;
  }

  /* ===================================
   DOCUMENTS SECTION RESPONSIVE
   =================================== */
  .our-documents .section__top-wrapper h4 {
    font-size: 24px !important;
  }

  /* ===================================
   FOOTER SECTION RESPONSIVE
   =================================== */

  .footer .container {
    min-height: 745px;
  }

  /* ===================================
   MODAL SECTION RESPONSIVE
   =================================== */
  .modal-header .modal-header-nav {
    margin-bottom: 50px;
  }

  .modal-header .title-btn {
    flex-direction: column;
  }

  .modal-header .title-btn h1 {
    font-size: 32px;
    max-width: 100%;
  }

  .modal-header .title-btn p {
    font-size: 18px;
    max-width: 100%;
  }

  .modal-card-service .text-container-content {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .modal-card-service .text-container-content .content-title {
    max-width: 100%;
  }

  .modal-card-service .text-container-content .content-text {
    max-width: 100%;
  }

  .modal-projects .modal-header .modal-header-nav .close-btn {
    text-align: right;
  }

  .modal-projects .modal-header {
    margin-top: 20px;
  }

  .modal-projects .project-slide-section .slide-inner .hero-top-container {
    margin-top: 80px;
  }

  .modal-projects .project-slide-section .slide-inner .hero-top-container .slide-title {
    font-size: 32px;
  }

  .modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details .columns-container {
    gap: 4%;
  }

  .modal-projects .project-slide-section .slide-inner .slide-image {
    height: 90vh;
  }

  .modal-projects .project-slide-section .slide-inner .hero-bottom-container .arrow-scroll-container {
    width: 10%;
  }

  .modal-projects .project-slide-section .slide-inner .hero-bottom-container .project-details {
    width: 80%;
  }

  .body-project-content .description-section .description-item {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .body-project-content .description-section .description-item .section-item .title-preview {
    margin-bottom: 10px;
    display: block;
  }

  .body-project-content .description-section .description-item .section-item .desc-title {
    font-size: 32px;
  }

  .modal-projects .project-swiper-nav .nav-title {
    font-size: 14px;
  }

  .project-swiper-nav {
    margin-top: 0px;
  }

  .project-swiper-nav .nav-arrow {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
  }

}

/* Small Mobile Styles */
@media screen and (max-width: 567px) {
  .lives__inner .bg-image {
    min-height: 456px;
  }

  .lives__inner-info h5 {
    margin-bottom: 10px;
  }

  .modal-header h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 500px) {
  .flex-item-right .hero-text h1 {
    font-size: 24px;
  }

  .gallery-grid {
    width: 250%;
  }

  /* ===================================
   DRAG SECTION RESPONSIVE
   =================================== */

  .drag-card {
    touch-action: none;
    width: 180px;
    height: 135px;
  }

  .drag-card-content .drag-card-number {
    font-size: 32px;
  }

  #card3 {
    top: 50%;
    left: 42%;
  }

  #card4 {
    top: 20%;
    left: 40%;
  }
}