/* mortend custom font */
@font-face {
  font-family: "mortend-800";
  src: url("/assets/fonts/mortend-mortend-bold-700.ttf") format("truetype");
}

/* Montserrat font */

@font-face {
  font-family: "montserrat-regular";
  src: url("/assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "montserrat-medium";
  src: url("/assets/fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "montserrat-bold";
  src: url("/assets/fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "montserrat-black";
  src: url("/assets/fonts/Montserrat-Black.ttf") format("truetype");
}

:root {
  --dark-blue: #0d1321;
  --Light-blue: #0d7bff;
  --super-light-blue: #a1ccff;
  --light-border: 1px solid #ffffff12;
  --light-grey: #c2c2c2;

  /* gradient */
  --light-to-blue: linear-gradient(
    90deg,
    var(--Light-blue),
    var(--super-light-blue)
  );
  --btn-light-to-blue: linear-gradient(
    -70deg,
    var(--Light-blue),
    var(--super-light-blue)
  );

  --btn-light-to-grey: linear-gradient(90deg, #ffffff00, #b2b2b224);
  --bg-light-to-grey: linear-gradient(90deg, #ffffff00, #b2b2b216);
  --light-to-lighGrey: linear-gradient(90deg, #fff, #b2b2b2);

  /* glow color vars*/
  --primary-btn-glow: 0px 12px 40px #3a94ff66;
  --white-btn-glow: 0px 0px 40px #ffffff66;

  /* font vars */
  --mortend-font: "mortend-800";
  --montserrat-regular: "montserrat-regular";
  --montserrat-medium: "montserrat-medium";
  --montserrat-bold: "montserrat-bold";
  --montserrat-black: "montserrat-black";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--montserrat-medium);
  color: white;
  /* overflow-x: hidden; */
}

body {
  background-color: var(--dark-blue);
}

.nav-logo {
  width: 170px;
}

nav {
  width: 100%;
  height: 80px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 999;
  border-bottom: var(--light-border);
  top: 0;
  background: #0d13217d;
}

.text-left {
  text-align: left !important;
}

.nav-wrapper {
  width: 80vw;
  /* background-color: white; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

p.paragraph.about {
  text-align: left;
  width: 50%;
}

.hero-section-wrapper.left-align {
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-section-wrapper.connect .hero-header-text {
  margin-bottom: 80px;
}

img.top-light {
  position: absolute;
  top: -100px;
  opacity: 80%;
  width: 100%;
  box-sizing: border-box;
}

ul.ul {
  display: inline-flex;
  margin-right: 20px;
}

ul.ul li {
  margin: 18px;
  list-style: none;
}

ul.ul li a.menu-item {
  font-family: var(--montserrat-medium);
  font-size: 12px;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease-in;
}

a.special-btn {
  text-decoration: none;
  background-color: white;
  padding: 14px 26px;
  border-radius: 40px;
  color: black;
  font-size: 12px;
  text-transform: capitalize;
}

.page-container {
  /* margin-top: 80px; */
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-direction: column;
  padding: 100px;
}

.section.hero-section {
  background-image: url("/assets/bg_2.webp");
  background-image: linear-gradient(to top, #0d1321, transparent),
    /* Bottom gradient */ url("/assets/bg_2.png"); /* Background image */
  height: 850px;
  background-position: center;
  background-repeat: no-repeat;

  /* background-attachment: fixed;  */
  /* border-bottom: var(--light-border); */
}

.btn-wrapper {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

img.arrow-icon {
  width: 10px;
  margin-left: 14px;
  transition: 0.3s ease-in-out;
}

img.jm_logo {
  width: 200px;
  margin-bottom: 40px;
}

.hero-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-section-wrapper.about {
  margin-bottom: 100px;
}

h1.hero-header-text {
  font-size: 50px;
  width: 70%;
  font-family: var(--mortend-font);
  text-transform: uppercase;
  margin-bottom: 20px;

  background: var(--light-to-lighGrey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}

h1.hero-header-text .gradien-color-txt {
  font-family: var(--mortend-font);
  text-transform: uppercase;
}

.gradien-color-txt {
  /* Gradient setup */
  background: linear-gradient(
    90deg,
    var(--Light-blue),
    var(--super-light-blue),
    var(--Light-blue) /* Repeat first color for smooth looping */
  );
  background-size: 200% auto; /* Double width for seamless transition */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Text styling */
  width: max-content;
  /* font-family: var(--mortend-font);
  text-transform: uppercase;
   */
  /* Animation - Smooth infinite loop */
  animation: gradientFlow 2s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center; /* Start left */
  }
  100% {
    background-position: 200% center; /* Move fully right (double width) */
  }
}

h3.hero-sm-text {
  font-size: 20px;
  font-family: var(--montserrat-regular) !important;
  width: 46%;
  line-height: 30px;
}

/* button style primary */

a.btn.primary-btn,
button.btn.primary-btn {
  position: relative;
  background: var(--btn-light-to-blue);
  box-shadow: var(--primary-btn-glow);

  transition: box-shadow 0.5s ease-in;
  overflow: hidden; /* This ensures the pseudo-element doesn't overflow */
  z-index: 1; /* Establish stacking context */
  border: 1px solid #ffffff69;
}

.section.hero-section.about,
.section.hero-section.connect {
  padding-top: 200px;
  height: max-content;
}

a.btn.primary-btn::before,
button.btn.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    70deg,
    var(--Light-blue),
    var(--super-light-blue)
  );
  opacity: 0;
  transition: opacity 0.5s ease-in;
  z-index: -1; /* Place it behind the text */
  box-shadow: 0px 12px 50px #3a93ff9b;
}

a.btn.primary-btn:hover,
button.btn.primary-btn:hover {
  /* nieuwe schaduw op hover */
  box-shadow: 0 12px 50px #3a93ff9b;
}

a.btn.primary-btn:hover .arrow-icon,
button.btn.primary-btn:hover .arrow-icon {
  margin-left: 20px;
}

a.btn.primary-btn:hover::before,
button.btn.primary-btn:hover::before {
  /* gradient fade‑in */
  opacity: 1;
}

a.btn,
button.btn {
  text-decoration: none;
  padding: 20px 26px;
  border-radius: 50px;
  margin: 10px;
  /* border: 1px solid #ffffff69; */
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
}

a.btn.secondary-btn {
  padding: 0;
}

/* end button style */

.sec-btn-wrapper {
  position: relative;
  display: inline-block; /* of flex/inline-flex wat jij gebruikt */
  padding: 20px 26px;
  border-radius: 110px;
  background: var(--btn-light-to-grey); /* vaste basis */
  border: 1px solid #ffffff24;
  backdrop-filter: blur(4px);
  overflow: hidden; /* verberg ::before buiten rand */

  /* alleen animaties die wél kúnnen vloeien */
  transition: backdrop-filter 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

/* pseudo-laag met de hover‑gradient */
.sec-btn-wrapper::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left = 0 */
  background: linear-gradient(-100deg, #0d1321, #b2b2b224);
  opacity: 0; /* onzichtbaar bij start */
  transition: opacity 0.3s ease-in-out;
  pointer-events: none; /* klik blijft op de knop zelf */
  z-index: -1; /* achter de content, vóór de achtergrond */
}

.sec-btn-wrapper:hover::before {
  opacity: 1; /* fade‑in → vloeiende overgang */
}

.sec-btn-wrapper img.arrow-icon {
  transition: 0.3s ease-in-out;
}
.sec-btn-wrapper:hover img.arrow-icon {
  margin-left: 20px;
}

.page-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* .page-wrapper {
  width: 1280px;
} */

.section.about-me {
  border-top: var(--light-border);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px;
  border-bottom: var(--light-border);
}

.section-wrapper {
  width: 80vw;
  display: flex;

  justify-content: center;
}

.section.short-msg .section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.hero-section.about .section-wrapper {
  flex-direction: column;
  align-items: center;
}

.section.about-me .section-wrapper {
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
}

h1.primary-header {
  font-family: var(--mortend-font);
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 20px;
}

p.paragraph {
  font-size: 14px;
  font-family: var(--montserrat-regular);
  line-height: 21px;
}

.text-center {
  text-align: center !important;
}

p.paragraph.md-paragraph-size {
  width: 50vw;
}

.btn.secondary-btn.m-top {
  margin-top: 40px;
}

.section.services-section {
  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transparant-window-container {
  background: var(--bg-light-to-grey);
  padding: 20px;
  border-radius: 30px;
  z-index: 1;
  border: 1px solid #ffffff34;
}

.win-header-wrapper.left-align {
  display: flex;
  align-items: flex-start;
}

.win-header-wrapper.about {
  border-bottom: none;
}

.window-wrapper {
  background-color: white;
  border-radius: 15px;
  padding: 60px;
  box-shadow: var(--white-btn-glow);
  height: 100%;
}

img.mission-vision-icon {
  width: 40px;
}

.icon-wrapper {
  background: var(--btn-light-to-blue);
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff69;
  box-shadow: var(--primary-btn-glow);
}

.window-wrapper.about {
  /* display: flex;
  justify-content: center;
  align-items: flex-start; */
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 40px;
  align-items: flex-start;
}

.dark-text {
  color: var(--dark-blue) !important;
}

.win-header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-bottom: 40px;
  border-bottom: 1px solid #dddddd;
}

.win-header-wrapper .paragraph {
  width: 25%;
}

.win-header-wrapper .paragraph.about {
  width: 100% !important;
}

.footer-content-col .col {
  /* padding-left: 130px !important; */
}

.footer-content-col {
  display: flex;
  /* display: grid
; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 160px; */
}

ul.footer-ul {
  /* display: grid
; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 70px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

h2.service-title {
  font-size: 20px;
}

.win-sub-wrapper {
  margin-top: 40px;
}

h3.service-sub-title {
  font-size: 14px;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

img.burger-icon {
  width: 24px;
}

/* Sidebar style */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100vh;
  background-color: var(--dark-blue);
  /* backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); */
  /* background: #0d13217d; */
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: right 0.5s ease;
  z-index: 1000;
}

a.menu-item {
  margin-bottom: 30px;
  font-size: 14px;
  text-decoration: none;
}

.sidebar-wrapper {
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar .menu-item,
.sidebar {
  color: white;
}

.special-btn {
  color: var(--dark-blue);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

.overlay.active {
  display: block;
}

.col-box p.paragraph {
  color: var(--dark-blue);
}

.service-grid-wrapper {
  margin-top: 30px;
}

.service-grid-wrapper {
  margin-top: 4 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.projects-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 60px;
}

.project-box {
  background: var(--bg-light-to-grey);
  width: max-content;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #ffffff34;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.project-img-box {
  margin-bottom: 40px;
}

.project-img-box img {
  border-radius: inherit;
  width: 100%;
  border-radius: 22px;
}

label.project-date {
  font-size: 12px;
  /* margin-top: 40px; */
  text-align: center;
  margin-bottom: 8px;
  color: var(--light-grey);
}

.project-img-box {
  margin-bottom: 12px;
}

h2.project-title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.section.portfolio .section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.section.portfolio .section-wrapper .header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1.primary-header.portfolio {
  width: 70%;
}

p.paragraph.portfolio {
  width: 60%;
}

.section.portfolio {
  padding-bottom: 100px;
  border-bottom: var(--light-border);
  /* height: 450px; */
}

.faq-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.faq-col h1 {
  width: 60%;
}

.faq-col p {
  width: 50%;
}

.page-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.win-header-wrapper.about {
  padding-bottom: 0;
}

.faq-content-wrapper {
  display: flex;
  align-items: flex-start;
  border-bottom: var(--light-border);
  padding-bottom: 20px;
  padding-top: 20px;
  flex-direction: column;
  cursor: pointer;
}

.question {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  cursor: pointer;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.6s ease;
  margin-top: 20px;
  padding-left: 50px;
}

.answer .paragraph {
  width: 100%;
  color: var(--light-grey);
}

.faq-content-wrapper.active .answer {
  max-height: 300px;
  /* transition: max-height 0.5s ease, opacity 0.5s ease; */
}

.faq-content-wrapper h1 {
  width: max-content;
  width: 10px;
  margin-right: 40px;
  font-size: 30px;
  margin-bottom: 0;
}

h2.faq-question {
  font-size: 20px;
  font-family: var(--montserrat-regular);
}

.faq-col {
  width: 100%;
}

.section-wrapper.short-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 140px;
  padding-bottom: 60px;
}

h1.hg-header {
  font-family: var(--mortend-font);
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  width: 1000px;
  text-align: center;

  background: var(--light-to-lighGrey);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
  margin-bottom: 40px;
}

img.footer-logo {
  width: 100%;
  margin-bottom: 80px;
}

img.footer-icon {
  width: 30px;
}

.footer-icon-main {
  width: 60px;
  height: 60px;
  display: flex;
  background: var(--btn-light-to-blue);
  border: 1px solid #ffffff69;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 0;
  margin-right: 20px;
  box-shadow: var(--primary-btn-glow);
}

footer.main-footer {
  border-top: var(--light-border);
  padding: 100px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;

  /* backdrop-filter: blur(24px); */
}

.footer-wrapper {
  display: grid;
  /* grid-template-columns: 2fr 1fr 1fr 1fr; */
  /* gap: 40px; */
  /* width: 80vw; */
  margin-bottom: 100px;
}

.footer-parent-wrapper {
  width: 100%;
  backdrop-filter: blur(100px);
}

.sub-footer {
  border-top: var(--light-border);
  padding: 20px;
  width: 100%;
}

.windows-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

p.footer-txt {
  font-size: 10px;
  text-align: center;
}

h2.footer-header {
  font-size: 20px;
  margin-bottom: 40px;
}

a.footer-link {
  text-decoration: none;
  font-size: 14px;
}

li.footer-li:last-child {
  margin-right: 0;
}

li.footer-li {
  margin-bottom: 30px;
  list-style: none;
  display: flex;
  align-items: center;

  background: var(--bg-light-to-grey);
  border: 1px solid #ffffff34;
  padding: 10px;
  border-radius: 50px;
  padding-right: 40px;
  margin-right: 20px;
}

.footer-li-col {
  display: block;
  display: flex;
  flex-direction: column;
}

.footer-li b {
  font-size: 14px;
}

a.footer-info {
  font-size: 14px;
  text-decoration: none;
  color: var(--light-grey);
}

p.footer-info {
  font-size: 14px;
  color: var(--light-grey);
}

.footer-main-wrapper {
  width: 100%;
  backdrop-filter: blur(50px);
}

img.bottom-light {
  width: 100%;
  position: absolute;
  z-index: -3;
  height: 35%;
  object-fit: cover;
}

.footer.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.section.short-msg {
  border-top: var(--light-border);
  margin-bottom: 80px;
}

.paragraph-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 80%;
  border-top: var(--light-border);
  padding-top: 60px;
}

.paragraph-wrapper p {
  color: var(--light-grey);
}

.section.short-msg .hg-header {
  margin-bottom: 60px;
}

img.social-img {
  width: 20px;
  object-fit: contain;
  height: 20px;
}

a.social-link:last-child {
  margin-right: 0;
}

a.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  background: var(--btn-light-to-blue);
  border: 1px solid #ffffff69;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 0;
  margin-right: 10px;
  margin-bottom: 18px;
  box-shadow: var(--primary-btn-glow);
}

.social-links {
  display: ruby;
  margin-bottom: 60px;
}

.footer-wrapper .col {
  /* padding-left: 40px; */
  width: 100%;
}

.col.social {
  padding-left: 40px;
  padding-right: 40px;
}

h2.form-header {
  font-family: var(--mortend-font);
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.input-sub-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  width: 100%;
}

form.primary-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

label {
  color: var(--dark-blue);
  font-size: 14px;
  font-family: var(--montserrat-bold);
  text-transform: capitalize;
  margin-bottom: 10px;
}

input.primary-input {
  width: 350px;
  padding: 14px;
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  font-size: 14px;
  color: var(--dark-blue);
}

textarea.primary-text-area {
  width: 100%;
  height: 160px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  color: var(--dark-blue);
  font-size: 14px;
  font-family: var(--montserrat-medium);
}

.msg-wrapper {
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 40px;
}

.msg-wrapper.success {
  background-color: #8fffaa;
}

.burger-btn {
  display: none;
}

.msg-wrapper.error {
  background-color: #ff8f8f;
}

p.msg-text {
  font-size: 14px;
  color: rgb(255, 255, 255);
}

textarea.primary-text-area:focus-visible,
input.primary-input:focus-visible {
  outline: none;
  border: 1px solid var(--Light-blue);
}

button.filter-btn {
  color: #ffffff7d;
  font-size: 14px;
  font-family: var(--montserrat-medium);
  background-color: #ffffff1c;
  border-radius: 50px;
  border: none;
  padding: 14px 30px;
  transition: 0.6s ease-in-out;
  cursor: pointer;
  border: 1px solid #ffffff12;
  margin: 0px 6px;
}

button.filter-btn:first-child,
button.filter-btn:last-child {
  margin: 0;
}

button.filter-btn.active {
  background: var(--btn-light-to-blue);
  box-shadow: var(--primary-btn-glow);
  border: 1px solid #ffffff69;
  color: white;
}

button.filter-btn:hover {
  box-shadow: var(--primary-btn-glow);
  color: white;
}

label.cat_name {
  color: #ffffffb8;
  font-family: var(--montserrat-regular);
  font-size: 12px;
}

h4.card-title {
  color: white;
  font-size: 14px;
  font-family: var(--montserrat-medium);
}

.card-body {
  margin-top: 20px;
  margin-bottom: 10px;
}

p.card-text {
  color: var(--dark-blue);
  font-size: 14px;
  font-family: var(--montserrat-medium);
}

.filterable_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.card {
  background: var(--bg-light-to-grey);
  border: 1px solid #ffffff34;
  display: flex;
  flex-direction: column;
  width: calc(20% - 8px);
  padding: 10px;
  height: max-content;
  border-radius: 15px;
  /* margin-right: 10px; */
  /* margin-bottom: 10px; */
}

.card.hide {
  display: none;
}

.section.portfolio {
  padding-top: 150px;
}

.section.portfolio .section-wrapper,
.hero-section-wrapper.portfolio,
.hero-section-wrapper.portfolio .hero-header-text {
  margin-bottom: 0;
  padding: 0;
}

.section-wrapper .portfolio-gallery {
  display: flex;
  justify-content: flex-start;
}

.filter-btns-wrapper {
  margin-bottom: 60px;
  background: #0d13218e;
  padding: 8px;
  border-radius: 50px;
  border: var(--light-border);
  position: sticky;
  top: 100px;
  z-index: 10;

  backdrop-filter: blur(24px);
}

.gallery-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.hero-section.portfolio {
  height: 400px;
  /* background: var(--Light-blue); */
  margin: 20px;
  margin-top: 100px;
  border-radius: 15px;
  padding: 0;

  background-image: url("/assets/colored_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-section-wrapper.portfolio .hero-header-text {
  color: white;
  background: none;
  -webkit-text-fill-color: unset;
}

.gallery-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

img.card-img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  height: max-content;
}

.card {
  cursor: pointer;
  /* Make card appear clickable */
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.section.portfolio-section {
  padding: 20px;
  padding-top: 40px;
}

.section-wrapper.portfolio-gallery {
  width: 100%;
}

/* .popup {
  position: fixed;
  top: -100vh;
  left: 0px;
  width: 100%;
  height: 100%;
}

.popup .overlay {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 100ms ease-in-out 200ms;
}

.popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 95%;
  max-width: 350px;
  height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  opacity: 0;
}

.popup.active {
  top: 0px;
  transition: top 0ms ease-in-out 0ms;
  position: fixed;
  z-index: 99;
}

.popup.active .overlay {
  opacity: 1;
  transition: all 300ms ease-in-out;
}

.popup.active .popup-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
} */

/* Popup container */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Semi-transparent background */
.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 200ms ease-in-out;
}

/* Popup content box */
.popup-box {
  background: var(--bg-light-to-grey);
  border: 1px solid #ffffff34;
  display: flex;
  flex-direction: column;
  width: 600px;
  padding: 10px;
  height: max-content;
  border-radius: 15px;
  transition: transform 200ms ease-in-out, opacity 200ms ease-in-out;
  opacity: 1;
  z-index: 1000;
  backdrop-filter: blur(24px);
}

/* Popup image */
.popup-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: -10px;
  right: -9px;
  font-size: 24px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  background: none;
  border: none;

  background-color: #ff3737;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: white;
  font-weight: 100;
}

.popup-txt-wrapper {
  padding-bottom: 20px;
}

.projects-container {
  width: 100% !important;
  box-sizing: border-box;
}

.slick-slider {
  width: 80vw !important;
  box-sizing: border-box;
}

.item-box .card {
  width: 100% !important;
}

.item-box {
  padding: 6px;
}

.slick-list.draggable {
  padding: 10px 0px !important;
}

.item-box .card img.card-img {
  /* height: 260px; */
  height: 28vh;
  height: max-content;
}

.slick-list.draggable {
  cursor: grab;
}

.answer p {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  width: 100% !important;
}

a.menu-item.active {
  color: var(--Light-blue);
}

a.menu-item:hover {
  color: var(--Light-blue);
}
