
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px;
    background-color: #16161600;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
  font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 1px;
    padding: 2px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1D1D1D;
    color: #fdfdfd;
    padding: 0 5px 5px 5px;
    line-height: 1.6;
}

.simple-grid {
  display: none; /* it's originally grid - change after 1 month*/
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 5px; /* spacing between items */
  max-width: 900px;
  margin: 0 5px 5px 5px;
  padding: 0;
}

.grid-item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 1rem;
  border-radius: 2px;
  aspect-ratio: 3 / 3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push content top and button bottom */
  height: 100%; /* Make sure it fills the grid-item height */
}

.grid-item .text {
  /* Text top-left aligned */
  margin-top: 1rem;
  text-align: center;
  font-size: 1.5rem;
  /* Keep inside padding */
}

.black-text {
  color: #302612;
}

.grid-item .button-area {
  display: flex;
  justify-content: flex-end; /* pushes button right */
}

.grid-item .btn {
  background: linear-gradient(0deg, rgb(14 90 145) 0%, rgb(17 138 178) 100%);
  border-bottom: solid rgb(8 54 87) 4px;
  border-top: solid rgb(8 54 87) 2px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  border-radius: 4px;
  padding: 5px 10px;
  color: white !important;
  text-decoration: none !important;
  cursor: pointer;
}

.grid-item img {
  width: 100% !important;
  height: 100% !important;
}


.top-banner {
  width: 200;
  height: 50;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.top-banner img {
  width: 200;
  height: 50;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.social-bar {
  text-align: center;
  margin-bottom: -10px; /* remove any bottom margin */
}

.social-bar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem; /* space between icons */
  margin: 0;
  padding: 0;
}

.social-bar ul li {
  display: inline-block;
}

.social-bar ul li a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-bar ul li a:hover img {
  transform: scale(1.2); /* subtle pop on hover */
  rotate: 5deg;
}

.header-mobile {
  display: none;
}
.header-desktop {
  display: flex;
}


.container header {
  margin: 0;
}

.header-desktop {
  display: flex;
  position: sticky;
  justify-content: center;
  top: 0px;
  z-index: 999; /* make sure it stays on top of other stuff */
  background-color: #1d1d1db2;
  align-items: center;
  color: white;
  box-sizing: border-box;
  height: 40px;
  padding: 0;
}

.header-mobile {
    display: none !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 3.5rem;
    background-color: #1d1d1db2;
    padding: 0.2rem;
    width: 100%;
    z-index: 999;
    position: sticky;
    
  top: 0px;
  }

@media (max-width: 630px) {
  .header-desktop {
    flex-direction: column;
    height: fit-content;
    display: none !important;
    position: static; /* Not sticky in mobile */
  }

  .simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 5px; /* spacing between items */
  max-width: 900px;
  margin: 0 5px 5px 5px;
  padding: 0;
}

.grid-item .text {
  /* Text top-left aligned */
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  /* Keep inside padding */
}
.grid-item .btn {
  width: 100%;
  text-align: center;
  height: 40px;
}

  .header-link {
    height: 30px;
  }


  .header-home {
    aspect-ratio: 1 / 1 !important;      /* or any width you want */
    height: 3rem !important;
  }
  .header-hamburger {
    aspect-ratio: 1 / 1 !important;      /* or any width you want */
    height: 3rem !important;
  }

  .header-mobile {
    display: flex !important;
  }

.header-mobile .header-home,
  .header-mobile .header-hamburger {
    aspect-ratio: 1 / 1;
    height: 100%;
  }

  .header-mobile img {
    height: 85%;
    object-fit: cover;
  }


}

.header-link {
  background: linear-gradient(0deg, #515151 0%, #7B7A7A 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  gap: 5px;
  width: 100%;
  transition: background 0.2s ease !important;
  
  transition: box-shadow 0.1s ease;
  transition: border-color 0.2 ease;
  border-bottom: solid #292929 4px;
  border-top: solid #303030 2px;
  border-left: solid #303030 2px;
  border-right: solid #303030 2px;
  border-color: #313131;
  height: 100%;

}

.header-link:active {
  border-bottom: solid #292929 2px;
  border-top: solid #303030 4px;
  border-left: solid #303030 2px;
  border-right: solid #303030 2px;
  border-color: #313131;
  background: linear-gradient(0deg, #7B7A7A 0%, #515151 100%);
}

.header-home {
  background: linear-gradient(0deg, rgb(14 90 145) 0%, rgb(17 138 178) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* Match .header-link */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  height: 100%;
  transition: background 0.2s ease !important;
  
  transition: border-color 0.3s ease;
  border-bottom: solid rgb(8 54 87) 4px;
  border-top: solid rgb(8 54 87) 2px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  border-bottom-width: 4px;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.header-home:active {
  border-bottom: solid rgb(8 54 87) 2px;
  border-top: solid rgb(8 54 87) 4px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  background: linear-gradient(0deg, rgb(17 138 178) 0%,  rgb(14 90 145) 100%);

}

.header-hamburger {
  background: linear-gradient(0deg, rgb(14 90 145) 0%, rgb(17 138 178) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* Match .header-link */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  height: 100%;
  transition: background 0.2s ease !important;
  
  transition: border-color 0.3s ease;
  border-bottom: solid rgb(8 54 87) 4px;
  border-top: solid rgb(8 54 87) 2px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  border-bottom-width: 4px;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.header-hamburger:active {
  border-bottom: solid rgb(8 54 87) 2px;
  border-top: solid rgb(8 54 87) 4px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  background: linear-gradient(0deg, rgb(17 138 178) 0%,  rgb(14 90 145) 100%);

}

.header-home img {
  width: fit-content;           /* or whatever width you want */
  height: 87%;         /* keep natural height relative to width */
  aspect-ratio: 1 / 1;  /* force square ratio */
  object-fit: cover;    /* crop to fill the square */
  display: block;       /* remove inline spacing issues */
  margin: 0 auto;       /* center if needed */
}


.header-link:hover {
  color: #ffffff;
  border-color: #7c7c7c;
}

.header-home:hover {
  color: #ffffff;
border-color: #0d97ce;
}

.header-hamburger:hover {
  color: #ffffff;
border-color: #0d97ce;
}


.overlay {
  padding-left: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center; /* horizontally center the content block */
  align-items: flex-start; /* push the block to the top vertically */text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding-top: 2.5rem; /* adds vertical spacing from top */
}

/* Show overlay */
.overlay.open {
  display: flex;
}

  .overlay.active {
  opacity: 1;
  visibility: visible;
}


/* X Close Button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 3rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #bdbdbd;
}

/* Centered links */
.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.5;
  text-align: left;
  font-weight: 500;
  width: 100%;
}

.overlay-content a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.overlay-content a:hover {
  color: #a3a3a3; /* Use your YAGADA vibrant turquoise */
}




nav li.hdivider {
    width: 1px;
    height: 20px;
}

.vl {
  border-left: 1px solid rgba(255, 255, 255, 0.61);
  height: 30;
}


nav ul {
    list-style: none;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0px;
    padding: 0px;

}

nav a{
    text-decoration: none;
    color: #1b1b1b;
    font-weight: 300;
    transition: color 0.3s ease;
    font-size: 1.2rem;
    vertical-align: middle;
}

.header-projects-about a:hover {
    color: #ffd754;
    transition: color 0.2s ease;
}

.header-text-about a:hover {
    color: #29fc57;
    transition: color 0.2s ease;
}

.nav-icon {
    height: 25px;
    width: auto;
    vertical-align: -0.13rem;
    display: inline-block;
}


.hero-container {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 0

}

.hero-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    background-image: url('assets/banner2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 1rem 0 1rem 0;
    padding: 0;
}

.hero-text{
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    padding: 10px;
    max-width: 70%;
    text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 0.5rem;
  flex-wrap:nowrap; /* You can keep this if you want no wrapping */
  width: auto;
  overflow-x: auto; /* prevent overflow, adds scroll if needed */
  box-sizing: border-box;
  border: none;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;

}

.image-row::-webkit-scrollbar {
  display: none;               /* Chrome/Safari/Edge */
}

.image-row img {
  width: auto;
  height: auto;
  object-fit: cover;
  max-width: 100%; /* ensures it never grows beyond container */
  display: block;
  border: none
}

.image-row a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease-out; /* smooth transition */
}


.image-box {
  overflow: hidden;
  width: 210px; /* 3:2 aspect ratio logic below */
  aspect-ratio: 3 / 2;
  background-color: #ffffff00; /* fallback background */
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-rect {
  width: 200px; /* Lock width */
  aspect-ratio: 3 / 2; /* Lock aspect ratio */
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.2); /* 20% opacity border */
  border-radius: 4px;
  display: block;
}

.image-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-content h1,
.about-content h2 {
  color: #fdfdfd;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.about-banner {
  width: 100%;
  height: auto;     /* keeps square ratio */
  display: block;
  margin: 1.5rem auto 0rem auto; /* centers image and adds bottom spacing */
  border-radius: 8px;
}

.inline-icon {
  height: 1.1em;
  width: auto;
  vertical-align: -0.14em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;
}

html {
  overflow-y: scroll;
}




.project-card {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.project-image {
  position:relative ;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 4px;
  height: auto;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit:contain;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 4px;
}



.project-info {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Inter', sans-serif;
}

.project-info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.project-info .price {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.85;
}

.read-more {
  background: linear-gradient(to bottom, #009dff, #0075d1);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.read-more:hover{
  background: linear-gradient(to bottom, #0075d1, #005bb0);
}

.project-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;                 /* stretches full width of .project-card */
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-family: 'Inter', sans-serif;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 0 10px;          /* side padding inside */
  box-sizing: border-box;
}

.operationsunset-banner {
  width: 100%;
  max-width: 500px; /* optional: adjust to your liking */
  height: auto;     /* keeps square ratio */
  display: block;
  margin: 1.5rem auto 0rem auto; /* centers image and adds bottom spacing */
  border-radius: 8px; /* optional */
}

.centered-text {
  margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.return-bar {
  height: 42px;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  color: white;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 1rem;
  border-radius: 4px;
}

.return-bar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.return-bar a:hover {
  color: #cfcfcf;
}

a {
  color: rgb(141, 204, 255)
}

.hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  aspect-ratio: 16/9;
}

.project-main {
  width: 100%;
  display: flex;
  align-items: stretch; /* if you want them to align vertically */
  min-height: 100vh;
  padding: 0;
  gap: 0.5rem;
}

.project-left-panel {
  display: flex; /* or grid */
  flex-direction: column;
  width: 65%;
  padding: 0;
  margin-top: 1rem;
}

.project-right-panel {
  display: flex; /* or grid */
  flex-direction: column;
  width: 35%;
  padding: 0;
  margin-left: 0.5rem;
  gap: 1rem;
  margin-top: 1rem;
  overflow: hidden;
}

.project-info {
  width: 100%;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  -webkit-text-fill-color: #a0a0a0;
  border-radius: 4px;
  padding: 5px;
  margin: 0;
}

.project-info img {
  border-radius: 4px;
  padding: 10px;
}

.project-presentation {
  border-radius: 4px;
  padding: 0 0 0 0;
  margin: 0;
}


.project-presentation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}

.project-card-purchase {
  width: 100%;
  height: 50px;
  background-color: #009dff;
}

.horizontal-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  margin: 0;
  width: 100%;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  border-radius: 4px;
  margin-top: 1rem;
}

.left {
  flex: 1;
}

.right {
  display: flex;
  align-items: center;
  gap: 1rem; /* Space between price and button */
}

.price {
  margin: 0;
  font-weight: 500;
  color: rgb(170, 170, 170);
}

.buy-product {
  background: linear-gradient(to bottom, #07f168, #05a54d);
  color: rgb(213, 255, 220);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.buy-product:hover{
  background: linear-gradient(to bottom, #05c254, #047537);
}

.project-description {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.header6-special {
  margin-top: 1rem;
}

.project-agerating {
  width: 100%;
  background: linear-gradient(0deg, rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  -webkit-text-fill-color: #ffffff;
  border-radius: 4px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.project-agerating img {
  width: 20%;
  height: auto;
}

.project-quickinfo {
  width: 100%;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  -webkit-text-fill-color: #ffffff;
  border-radius: 4px;
  padding: 10px;
  margin: 0;
}

.project-specialinfo2 {
  font-size: 0.8rem;
  -webkit-text-fill-color: #acacac;
}

.button-icon {
  height: 1.2rem;
  width: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.metacritic {
  aspect-ratio: 1 / 1;
  height: 50px;
  background-color: #000000;
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  font-size: 1.3rem;
  margin: 0;
}

.meta-icon  {
  width: 100% !important;    /* or whatever size fits */
  height: auto;   /* keeps the aspect ratio */
  display: inline-block;
  vertical-align: middle;
}

.disabled-button {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.profile-banner {
  width:100%;

}

.profile-banner img {
  aspect-ratio: 4 / 1;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  filter: brightness(50%);
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between image and text */
}

.profile-container img {
  width: 150px; /* or 200px if you want larger */
  border-radius: 8px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.profile-name {
  font-weight: 600;
  font-size: 2rem;
  color: white;
  margin: 0;
  margin-bottom: 0;
}

.profile-title {
  font-weight: 300;
  font-size: 1.2rem;
  color: #a0a0a0;
  margin: 0;
}

.profile-project {
  width: 90%;
  margin-top: 40px;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  align-items: center;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
}

.profile-project-header {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}

.profile-project-header-icon img {
  width: 150px;
  border-radius: 8px;

}
.profile-project-info {
  width: 100%;
  align-items: center;
}

.profile-project-name {
  font-size: 2rem;
  margin-left: 15px;
}

.profile-project-dates {
  font-size: 1rem;
  color: gray;
  margin-left: 15px;
}

.profile-project-role {
  font-size: 0.8rem;
  background-color: #1a1f29;
  width: fit-content;
  padding: 5px 15px 5px 15px;
  border-radius: 100px;
  color: rgb(155, 155, 155);
  margin-left: 15px;
  margin-top: 10px;
}

.project-container {
	padding: 10px;
}

.project-slider-wrapper {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.project-slider {
	display: flex;
	aspect-ratio: 16 / 9;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
	border-radius: 0.5rem;
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
  width: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.project-slider::-webkit-scrollbar {
	display: none;
}

.project-slider img {
	flex: 1 0 100%;
	scroll-snap-align: start;
	object-fit: cover;
  width: 100%;
}

.project-slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.project-slider-nav a {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 250ms;
}

.project-slider-nav a:hover {
	opacity: 1;
}

.about-icon {
  height: 1.5em;
  width: auto;
  vertical-align: -0.4em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;
}

.about-icon-home {
  height: 1.3em;
  width: auto;
  vertical-align: -0.3em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;
  color: red;

}

.about-icon-about {
  height: 1.3em;
  width: auto;
  vertical-align: -0.3em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;


}

.about-icon-projects {
  height: 1.3em;
  width: auto;
  vertical-align: -0.3em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;


}

.about-icon-contact {
  height: 1.3em;
  width: auto;
  vertical-align: -0.3em; /* fine-tune manually */
  display: inline-block;
  line-height: 1;
  margin: 0 0.2em;


}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aligns top of each column */
  color: white;
  padding: 10px;
  box-sizing: border-box;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 1rem;
  text-align: right;
  width: 100%;
  border-top: 2px solid rgb(77, 77, 77);
}

.footer-column {
  display: flex;
  flex-direction: column;
  width: fit-content;
  font-size: 0.5rem;
}
.footer-paragraph {
  color: #ffd754;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: left;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.1s ease;
  text-align: left;
}

.footer-column a:hover {
  color: #ffd754;
}

.footer-column img {
  aspect-ratio: 1 / 1;
  width: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-divider {
  border: none;
  height: 1px;
  background-color: rgb(53, 53, 53);
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.hero-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.privacypolicy-text p {
  margin-bottom: 1.5rem;
}

.privacypolicy-text h2 {
  
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(77, 77, 77);
}

.privacypolicy-text h1 {
  margin-top: 1rem;
  
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(77, 77, 77);
}

.privacypolicy-text h5 {
  margin-bottom: 2rem;
}

.contact-text h1 {
  margin-top: -0.5rem;
  font-size: 3.4rem;
}

.contact-text p {
  margin-bottom: 1.5rem;
}

.contact-text-form p {
  margin-bottom: 0;
}

.contact-text h5 {
  margin-bottom: 2rem;
}

.spacee {
  height: 1.2rem
}

.warning {
  background-color: rgba(255, 6, 48, 0.178);
  padding: 10px 20px 10px 20px;
  text-align: center;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.contact-section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1rem;
  font-family: 'Inter', sans-serif;
}

.contact-intro > * + * {
  margin-top: 0rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 0;
  font-family: 'Inter', sans-serif;
}

.form-group {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.form-label {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}


.form-input,
.form-textarea {
  padding: 0.5rem;
    border-bottom: 4px solid rgb(82, 82, 82);
    border-top: 2px solid rgb(82, 82, 82);
    border-left: 2px solid rgb(82, 82, 82);
    border-right: 2px solid rgb(82, 82, 82);
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #00000000;
  color: rgb(255, 255, 255);
  font-family: 'Inter',sans-serif;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #acacac;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8a8a8a; /* or whatever you want */
  font-family: 'Inter', sans-serif;
}


.form-submit {
  display: flex;
  align-items: center;

  width: 100%;
  background-color: #1c5ff1;
  border-bottom: 4px solid rgb(13, 50, 119);
    border-top: 2px solid rgb(13, 50, 119);
    border-left: 2px solid rgb(13, 50, 119);
    border-right: 2px solid rgb(13, 50, 119);
  color: #fff;
  padding: 13px 5px;
  max-width: 600px;
  border-radius: 0.375rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  justify-content: center;
  cursor: pointer;
  margin: 1rem auto;
  transition: 0.2s;
}

.form-submit:hover {
  background-color: #001c58;
}

.people-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center rows horizontally */
  gap: 0.5rem;
  width: 100%;
}

.people-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px; /* fixed width per item */
  flex: 0 0 250px;
  height: fit-content;
  padding: 0.2rem 0.2rem 1rem 0.2rem;
  box-sizing: border-box;
  background: linear-gradient(0deg,rgb(44, 44, 44) 0%, rgba(64, 64, 64, 1) 100%);
  text-align: center;
  border-radius: 4px;
}

.people-person img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  aspect-ratio: 1 / 1;
}

.people-person h5 {
  font-weight: 300;
  color: rgb(184, 184, 184);
  font-size: 0.7rem;
}

.people-person h3 {
  font-size: 1rem
}

.people-link {
  text-decoration: none !important;
  color: white !important;
}

.people-person:hover {
  outline: 2px solid white;
}

.wp-container {
  float: left;
  display: flex;
  flex-direction: column;
  width: fit-content;
  max-width: 300px;
  background-color: rgb(56, 56, 56);
  border-radius: 4px;
  padding: 8px;
  margin: 0rem 1rem 1rem 1rem;
  clear: both;
  content: "";
  overflow: hidden;
  border: 1px solid rgb(92, 92, 92);
}

.wp-container p {
  text-align: center;
}

.wp-container img {
  width: 90%;
  border-radius: 4px;
  margin: 0 auto 1rem auto;
}

.individual-table {
  width: 100%;
  border-collapse: collapse;
}

.individual-table th, .individual-table td {
  border: 1px solid gray;
  padding: 4px 8px 4px 8px;
  text-align: left;
  font-size: 0.7rem;
}

.wp-text {
  margin-top: 0;
  padding-top: 0;
}
.wp-text h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(77, 77, 77);
  clear: right;
  overflow: hidden;
}

.custom-message {
  background-color: rgb(59, 59, 59);
  overflow: hidden;
  padding: 4px 8px 4px 8px;
  border-radius: 4px;
  border: 1px solid rgb(92, 92, 92);
  margin-bottom: 1rem;
  margin-top: 0;
  min-width: 150px;
}

.signature {
  margin-top: 1rem;
  padding: 1rem 0 0 0;
}

.quote {
  background-color: rgb(83, 83, 83);
  border: 1px solid gray;
  font-size: 0.9rem;
  overflow: hidden;
  padding:4px 4px 4px 4px;
  margin: 4px;
}

.wp-text h3 {
  margin-top: 1rem;
  overflow: hidden;
}

.error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 5rem;
}

.error h1 {
  font-size: 12rem;
}

.error p {
  font-size: 2rem;
}

.error-link {
  background-color: #262e38;
  width: fit-content;
  padding: 0.5rem 2rem 0.5rem 2rem;
  border-radius: 100px;
  font-size: 1.5rem;
  transition: outline 0.2s ease;
  outline: 2px solid rgba(35, 91, 138, 0.603);
  text-decoration: none;
}

.error-link:hover {
  outline: 2px solid rgb(1, 132, 255);
}

.hl-gallery {
  display: flex;                /* make sure this is flex or grid */
  flex-direction: column;       /* stack image + text */
  padding: 0;
  margin: 0;                     /* remove spacing between image/text */
  width: 100%;
  height: fit-content;
  backface-visibility: hidden;
  box-sizing: border-box;
  gap: 4px;
}

.hl-gallery img {
  display: flex;
  width: 100%;
  height: auto; /* or a set height if needed */
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  object-fit: cover; /* fills without stretching */
  vertical-align: top;
  box-sizing: border-box;
}


.hl-text {
  padding: 0.5rem;              /* Add some breathing room if needed */
  margin: 0;
  border-radius: 0 0 4px 4px;
  transform: scale(1);
  box-sizing: border-box;
  text-align: center;
}

.hl-text h3 {
  margin: 0;
  padding: 0;
}

.hl-text p {
  color: gray;
}

.hl-rectangle {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
  border: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 8px;
}

.hl-banner {
  margin: 1rem 0 0 0;
   position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    background-image: url('assets/highlight/banner.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hl-banner img {
  width: 100%;
  height: 100%;

}

.layout-mobile { 
  display: none; 

}
.layout-desktop { display: block; }

@media (max-width: 630px) {

  .image-row {
    flex-wrap: wrap;
    width: 70%;
    justify-content: center;
    align-items: center;
    margin: 0.5rem auto 0 auto;
    border-top: 2px solid gray;
  }

  .layout-mobile { 
    display: flex; 
    flex-direction: column;
    gap: 1rem;
  }

  .layout-mobile .horizontal-list {
    margin-top: 0;
  }

  .layout-desktop { display: none; }

}

details {
    background: #2c2c2c;
    color: white;
    border-radius: 4px;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-bottom: 4px solid rgb(82, 82, 82);
    border-top: 2px solid rgb(82, 82, 82);
    border-left: 2px solid rgb(82, 82, 82);
    border-right: 2px solid rgb(82, 82, 82);
  }

  summary {
    font-weight: 600;
    list-style: none; /* Remove default arrow on some browsers */
  }

  /* Remove default marker in Firefox */
  summary::-webkit-details-marker {
    display: none;
  }
  summary::marker {
    content: '';
  }

  /* Add custom arrow */
  summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
  }

  details[open] summary::before {
    transform: rotate(90deg);
  }

  details > p {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    color: #ccc;
  }

.test-button button {
  background-color: #0d93ec;  /* dark gray */
  color: white;
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-left: 2px solid rgb(21, 67, 153);
  border-right: 2px solid rgb(21, 67, 153);
  border-top: 2px solid rgb(21, 67, 153);
  border-bottom: 4px solid rgb(21, 67, 153)
}

.test-button button:hover {
  background-color: #2bafec;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(60, 92, 139, 0.3);
}

.test-button button:focus {
  outline: 2px solid #8bcbff;
  outline-offset: 1px
}

.quote-about {
  margin: 1rem 1rem;
}

.quote-about h2 {
  text-align: center;
  margin: 1rem;
  font-weight: 400;
}

.quote-about h5 {
  text-align: right;
  font-weight: 300;
}

.about-company {
  text-align: center;
  background-color: #ED313D;
  padding: 2rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}

.about-vision {
  text-align: center;
  background-color: #FFD166;
  color: #131313;
  padding: 2rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;

}

.about-motto-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
}

.about-motto-item {
  flex: 1 1; /* Grow/shrink with a minimum width of 250px */
  position: relative;
  background-color: #06D6A0;
  color: #131313;
  border-radius: 4px;
  overflow:auto;
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  padding: 0; /* We'll control padding inside children */
  aspect-ratio: 1 / 1;
  width: 100%;
}

/* Optional: apply image as background */
.about-motto-item::before {
  content: "";
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
}

/* Content container over image */
.about-motto-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  text-align: center;
}

@media (max-width: 700px) {
  .about-motto-list {
    flex-direction: column;
    align-items: center;
  }
  .about-motto-item {
    aspect-ratio: 3/2 !important;
  }
}

.about-motto-content h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-motto-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.about-motto-content .btn {
  align-self: flex-start;
  background: linear-gradient(0deg, rgb(14 90 145) 0%, rgb(17 138 178) 100%);
    border-bottom: solid rgb(8 54 87) 4px;
  border-top: solid rgb(8 54 87) 2px;
  border-left: solid rgb(8 54 87) 2px;
  border-right: solid rgb(8 54 87) 2px;
  color: white;
  padding: 0.5rem 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  width: 100%;
}

.about-motto-content .btn:hover {
  border-color: #0d97ce;
}

.about-header {
  background: linear-gradient(0deg, #515151 0%, #7B7A7A 100%);
  border-radius: 4px;
  font-size: 0.7rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  margin-top: 1rem;
  border-bottom: solid #363636 4px;
  border-top: solid #363636 2px;
  border-left: solid #363636 2px;
  border-right: solid #363636 2px;
}

.about-moreinfo-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 16px;
}


.about-moreinfo-item {
  display: block;
  width: 100%; /* or specify width if needed */
  background: linear-gradient(to bottom, #1d1d1d, #353535);
  border: 2px solid #353535;
  color: white;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font: inherit; /* keeps font consistent */
  /* remove text-decoration */
  text-align: left;
}

.about-moreinfo-item:hover {
  background: rgb(73, 73, 73);
}

.about-moreinfo-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.motto-presentation {
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 4px;
}

.motto-presentation h1 {
  padding: 1rem;
  border-radius: 8px;
  font-size: 4rem;
  margin: 0;
  text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 8px;
}

.motto-intro {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin: 2rem 1rem;
}

.motto-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
  line-height: 1.6;
  text-align: center;
}

.motto-goback {
  text-align: left;
  padding: 1rem;
}

.motto-goback {
  background: linear-gradient(0deg, rgb(14, 90, 145) 0%, rgb(17, 138, 178) 100%);
  border-bottom: solid rgb(8, 54, 87) 4px;
  border-top: solid rgb(8, 54, 87) 2px;
  border-left: solid rgb(8, 54, 87) 2px;
  border-right: solid rgb(8, 54, 87) 2px;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-style: solid;
  border-width: 2px 2px 4px 2px;
}

.motto-goback:hover {
  filter: brightness(1.1);
}

.inline-icon {
  height: 1em;
}

.about-future {
  text-align: center;
  background-color: #118AB2;
  padding: 1.7rem 1rem 2rem 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}