:root {
  --page-background-color:#0F0F10;
  --title-text-color: #DCDCDC;
  --description-text-color: #999999;
  --card-background-color: #1E1E1E;
  --card-border-radius: 15px;
}

body {
  background-color: var(--page-background-color);
  padding-top: 135px; /* To prevent content from being hidden under the fixed header */
  padding-right: 10px;
  padding-left: 10px;
}

.header {
  top: 0;
  left: 10px;
  right: 10px;
  width: (100% - 10px);
  height: 135px;
  z-index: 1000;
  background-color: var(--page-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
}

.header-menu {
  left: 10px;
  right: 10px;
  height: 115px;
  width: (100% - 10px);
  background-color: #222222;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
}

.page-section {
    background: url('resources/section_background.png') repeat;
    margin-top: 10px;
    padding-top: 50px;
    padding-bottom: 70px;
}

.page-section-title {
    margin-top: 40px;
    margin-bottom: 70px;
    font-family: "Manrope", sans-serif;
    letter-spacing: -.04em;
    font-weight: 400;
    font-size: 5.6rem;
    line-height: 1.15em;
    color: #ffffff;
    text-align: center;
}

.page-section-subtitle {
    padding-top: 0px;
    margin: 0 auto;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #D2D2D2;
    width: 600px;
}

.page-section-separator {
    width: 100%;
    height: 1px;
    background-color: #f5f5f54d;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/*.landingpage-values-section {
  position: relative;
  height: 800px;
  /*background: url("https://cdn.prod.website-files.com/65965a1e26b54761f5d92f73/674845e3b3ba03844c5989ed_cozy-lively-home-interior-design%201.webp") no-repeat center center;*/
  /*https://www.istockphoto.com/en/photo/full-head-of-ideas-concept-gm2152699146-573683996?searchscope=image%2Cfilm*/
/*  background: url("https://media.istockphoto.com/id/2152699146/photo/full-head-of-ideas-concept.jpg?s=2048x2048&w=is&k=20&c=4vkb5gQpmVXhTVYWD9sV7T4MB-yLhIYHROywDU2laes=") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}*/

.landingpage-values-company-name {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.06em;
  font-optical-sizing: auto;
  font-weight: 200;
  font-size: 10.25rem;
  line-height: .95em;
  color: #DCDCDC;
}

.landingpage-values-company-subtitle {
  padding-top: 50px;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  color: #D2D2D2;
  width: 400px;
}

.landingpage-values-text {
  padding: 20px;
  border-radius: 10px;
}

.landingpage-expertise-tile-big {
  height: 600px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.landingpage-expertise-tile-small {
  height: 300px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.landingpage-expertise-tile-big-container {
  border-radius: var(--card-border-radius);
  height: 100%;
  width: 100%;
  background-color: #1E1E1E;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.landingpage-expertise-tile-small-container {
  height: 100%;
  border-radius: var(--card-border-radius);
  width: 100%;
  background-color: #1E1E1E;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.landingpage-section-tile-top {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.06em;
  font-weight: 400;
  font-size: 30px;
  line-height: .95em;
  color: #DCDCDC;
}

.landingpage-section-tile-bottom {
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #999999;
}

.animated-button {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  padding: 24px 28px;
  border: none;
  border-radius: 9999px;
  background: #DCDCDC;        /* Light gray initial background */
  color: #333;                /* Darker gray text */
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, background 0.3s ease;
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px); /* Adjusted for padding */
  height: calc(100% - 2px); /* Adjusted for padding */
  background-color: #333;     /* Darker gray on hover */
  border-radius: 9999px;
  transform: scaleY(0);       /* Top to bottom animation */
  transform-origin: top;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
}

.animated-button:hover::before {
  transform: scaleY(1);
}

.animated-button:hover {
  color: white;               /* Text turns white on hover */
}

.top-left, .top-right, .bottom-left, .bottom-right {
  position: absolute;
}

/* Top-left corner */
.top-left {
  top: 10px;
  left: 10px;
}

/* Top-right corner */
.top-right {
  top: 10px;
  right: 10px;
}

/* Bottom-left corner */
.bottom-left {
  bottom: 10px;
  left: 10px;
}

/* Bottom-right corner */
.bottom-right {
  bottom: 10px;
  right: 10px;
}

/* Arrow style */
.arrow {
  font-size: 20px; /* Adjust size as needed */
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;  /* Initially invisible */
  transition: opacity 1.5s ease; /* Smooth transition for fading */
}

/* When hovering over the container, fade in the image */
.landingpage-expertise-tile-big-container:hover .image {
  opacity: 0.7;  /* Make the image visible */
}

.landingpage-expertise-tile-small-container:hover .image {
  opacity: 0.7;  /* Make the image visible */
}

.form-outline .form-control~.form-notch div {
  border: 1px solid #DCDCDC33;
}




.contact-form-card {
  background-color: var(--card-background-color);
  width: 700px;
}

form, input, label, p {
    color: white !important;
}

.form-outline {
    margin-bottom: 20px;
}


.container-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  margin: 0;
  padding: -10px;
  background-color: transparent;
  background: url('resources/section_background.png') repeat;
}

.carousel-container-1 {
  overflow: hidden;
  position: relative;
  display: flex;
  background-color: transparent;
}

.carousel-1 {
  display: flex;
  gap: 20px;
  transition: transform 0.1s linear;
  background-color: transparent;
}

.carousel-item-1 {
  border-radius: var(--card-border-radius);
  width: 500px;
  height: 500px;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.carousel-item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-item-1:hover img {
  transform: scale(1.2);
}


.project-preview-description {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-right: 150px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.03em;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25em;
  color: #DCDCDC;
}

.project-preview-year {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.06em;
  font-weight: 400;
  font-size: 16px;
  line-height: .95em;
  color: #DCDCDC;
}

.project-preview-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.06em;
  font-weight: 400;
  font-size: 40px;
  line-height: .95em;
  color: #DCDCDC;
}

.footer-key-title {
    margin-top: 30px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    color: #a2a2a2 !important;
    margin-bottom: 0px !important;
}

.footer-key-value {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -.03em;
    font-size: 1.2em;
    color: white !important;
}




.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav {
  height: 70px;
  display: flex;
  gap: 12px;
  background: #0f0f0f;
  padding: 2px 2px;
  border-radius: 9999px;
}

.nav-item {
  height: 66px;
  line-height: 46px;
  position: relative;
  padding: 10px 38px;
  border-radius: 9999px;
  text-decoration: none;
  color: white;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 9999px;
  transform: scaleY(0);            /* changed from scaleX to scaleY */
  transform-origin: top;           /* animate from top */
  transition: transform 0.2s ease-in-out;
  z-index: -1;

  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.1s ease;
}

.nav-item:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.nav-item:hover {
  color: white;
}

.nav-item.active::before {
  transform: scaleX(1);
  background-color: #444;
}

.contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  font-size: 14px;
}

.contact-button {
  background: #0f0f0f;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: #333;
}





.landingpage-values-section {
  position: relative;
  height: 800px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}