
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html {
  scroll-behavior: smooth;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* General */
  body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    background: #F5F5F5;
    letter-spacing: -0.04em;
  }


  .container {
  
    /* max-width: 1400px; */
    margin: 0 auto;
  }

  h2 {
    color: #0A0939
  }

  .section {
    padding: 6.5rem 0;
  }
  
  /* Navbar */
.navbar {
    background: transparent;
    padding: 1rem 2rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
  }
  
  .logo svg {
    display: block;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .menu-icon {
   width: 25%;
   background: none;
   border: none;
   display: none;
   position: absolute;
   right: 1rem;
   height: 100%;
  }
  
  #contact-link {
    color: #14116B;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
  }

  

/* Hero Section */
/* Allow gradient-per-letter while staying visually continuous */
h1 .char.gradient {
  /* make the letter show its background as fill */
  -webkit-background-clip: text;
  background-clip: text;           /* Firefox */
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Optional: better rendering while animating */
h1 .char, .subHeading .word {
  will-change: transform, opacity;
}

/* voorkom clipping van descenders tijdens animatie */
.hero h1 {
  line-height: 1.2;     /* iets ruimer dan 1.1 */
  overflow: visible;     /* laat eventuele overshoot zien */
}

/* zorg dat woorden/gradient niet binnen hun box worden afgesneden */
.hero h1 .word,
#gradient-title {
  display: inline-block; /* expliciet, sommige browsers zijn hier kieskeurig */
  overflow: visible;
}

/* WebKit knipt soms net de onderrand bij background-clip:text; beetje ruimte helpt */
#gradient-title {
  padding-bottom: 0.06em; /* subtiel, tast layout nauwelijks aan */
}


.hero {
    text-align: center;
    
    margin-top: 12rem;
    background: url('images/bg.svg') ;
    position: relative;
    color: #0A0939;
  }
  
  .hero .eyebrow {
    text-transform: capitalize;
    font-size: 0.75rem; /* 12px */
    font-weight: 400;
    display: inline-block;
    background: #EAEAEA;
    padding: 0.5rem 1.5rem;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.13);
    margin-bottom: 2rem;
    border-radius: 999px;
  }

  .subHeading {
    font-size: 2.5rem; /* 14px */
    font-weight: 400;
    letter-spacing: -0.04em;
    
  }
  
  .hero h1 {
    font-size: 5.5rem;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
 #gradient-title {
    font-weight: 700;
    background: linear-gradient(90deg,rgba(10, 9, 56, 1) 0%, rgba(34, 28, 198, 1) 100%);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* for Firefox */
    color: transparent;
    
  }
  
  .hero-text {
    max-width: 700px;
    margin: 0 auto 6.5rem;
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .btn {
    display: inline-block;
    background: linear-gradient(90deg,rgba(10, 9, 56, 1) 0%, rgba(34, 28, 198, 1) 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    border: none;
  }
  

  /* Profile Section */
.profile {
  display: flex;
  justify-content: center;
  align-items: start; /* vertically align image and text */
  gap: 1rem;
  margin: 6.5rem 0 5rem;
}

.profile-pic img {
  height: 60px;
  width: 60px;
  margin-top: 2px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* aligns text vertically */
  text-align: left;
}

.profile-info h3 {
  font-size: 2rem; /* 33px */
  font-weight: 400;
  line-height: 1.2; /* better spacing */
  margin: 0;
}

.status {
  display: flex;
  align-items: center;
  font-size: 0.875rem; /* 14px */
  font-weight: 300;
  color: #0A0939;
  
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4CAF50;
  margin-right: 0.5rem;
}
  

  /* Expertise Section */
.expertise {
    background: #0A0939; /* Navy */
    color: #fff;
    overflow: hidden;
    padding: 2rem 0;
  }
  
  /* Carousel container */
  .carousel {
    width: 100%;
    overflow: hidden;
  }
  
  /* Track (moving row of items) */
  .carousel-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    will-change: transform;
    /* animation: scroll 20s linear infinite; */
  }
  
  .carousel-track span {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.04em;
  }
  
  /* Animation */
  /* @keyframes scroll {
    from {
      transform: translateX(10%);
    }
    to {
      transform: translateX(-100%);
    }
  } */
  
/* Problem Section */

    /* Section heading */
    .section {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .section-heading {
      font-size: 3.5rem;
      margin-bottom: 4rem;
      text-align: center;
      font-weight: 600;
    }

    /* Grid container */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(5, auto);
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto 7.5rem; /* centers grid */
      padding: 0 2rem;
     
    }

    /* Grid items */
    .problem-item {
      background-color: var(--secondary, #EAEAEA); /* fallback if no var */
      padding: 1.5rem;
      border-radius: 0.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .problem-item p {
      margin: 0;
      font-size: 1.5rem;
      letter-spacing: -0.04em;
      text-align: center;
      
    }

    .problem-box {
      max-width: 1200px;
      margin: 0 2rem;
      background-color: #EAEAEA;
      padding: 40px;
      border-radius: 1.5rem;
    
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.04em;

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 2rem;
    }



  /* My Work Section */
.my-work {
    text-align: center;
    padding: 5rem 1rem;
    background: #F5F5F5;
  }
  
  .my-work h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  .my-work p {
    
    margin: 0 auto 4rem;
    color: #000;
    opacity: 0.6;
  }
  
  /* Carousel Container */
  .work-carousel {
    width: calc(100% + 2rem); /* full width plus gap compensation */
    overflow: hidden;
    margin-top: 4REM;
  }
  
  /* Carousel Track */
  .work-track {
    display: flex;
    width: max-content;
    gap: 4rem; /* space between items */
    /* animation: scrollWork 50s linear infinite; */
  }
  
  /* Work Item (box around image) */
  .work-item {
    flex-shrink: 0;
    background: #EAEAEA;
    padding: .5rem; /* 12px in rem ~ 1.2rem */
    border-radius: 2rem;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.13); /* inner shadow */
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
  /* Images inside box */
  .work-item img {
    
    height: 400px; /* adjust depending on your preference */
    width: auto;
    object-fit: fill; /* force full fill */
    object-position: center;
    border-radius: 1.5rem;
  }
  
  /* Animation */
  /* @keyframes scrollWork {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  } */




  /* Services Section */
.services {
    padding: 5rem 2rem;
  }
  
  .services-container {
    background: #0A0939; /* Navy */
    color: #F5F5F5;
    border-radius: 2rem;
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #EAEAEA;
  }

  .services-text {
    text-align: center;
    font-weight: 300;
    margin-bottom: 4rem;
  }
  
  /* Two columns */
  .services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .service h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
  }
  
  .service p {
    
    color: #fff;
    opacity: 0.6;

  }

  .service {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes checklist to bottom */
  }
  
  .service-top {
    margin-bottom: 2rem; /* space between text and checklist */
  }
  
  .service-bottom {
    margin-top: auto; /* makes sure checklist stays at bottom */
  }

  #service-btn-div {
    text-align: center;
    margin-top: 4rem;
  }

  .white {
    background: #EAEAEA;
    color: #0A0939;
  }
  
  
  /* Checklist */
  .checklist {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .check-icon {
    color: #4CAF50; /* Green check */
    flex-shrink: 0;
  }
  
  /* Responsive: stack columns on mobile */
  @media (max-width: 768px) {
    .services-columns {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* My Tools Section */
.my-tools {
    padding: 5rem 0;
    text-align: center;
  }
  
  .tools-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  
  /* Carousel background */
  .tools-carousel {
    background: #EAEAEA;
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
  }
  
  /* Track (logos moving) */
  .tools-track {
    display: flex;
    gap: 7rem;
    align-items: center;
    animation: scrollTools 25s linear infinite;
  }
  
  .tools-track img {
    height: 3rem; /* adjust logo size */
    object-fit: contain;
    flex-shrink: 0;
    transition: filter 0.3s ease;
  }

  .webflow img {
    height: 2rem;
  }
  
  
  
  /* Animation */
  @keyframes scrollTools {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  



  /* FAQ Section */
.faq {
    padding: 5rem 1rem;
    text-align: center;
    color: #000;
  }
  
  .faq strong {
    font-family: Outfit, sans-serif;
    font-weight: 600;
    color: #000;
  }
  .faq-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
  
  /* FAQ Boxes */
  .faq-boxes {
    
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq-box {
    background: #EAEAEA;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 2rem;
    cursor: pointer;
    text-align: left;
  }
  
  .faq-icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
    font-weight: 200;
    color: #000;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 5.9rem;
    text-align: left;
  }
  
  .faq-answer p {
    margin: 0 0 2rem 0;
  }

  

  /* Contact Section */

  #contactSection {
    padding-top: 1rem;
  }
.contact {
    padding: 5rem 1rem;
  }
  
  .contact-container {
    background: #0A0939; /* Navy background */
    color: #fff;
    border-radius: 2rem;
    padding: 5rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-title {
    color: #EAEAEA;
  }
  
  .contact-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  /* Left column */
  .contact-left h2 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  
  .contact-left p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 300;
  }

  #contact-note {
    font-size: 1rem;
    margin-top: 1rem;
  }

  #contact-note a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
  }
  
  /* Right column: Form */
  .contact-right form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 999rem;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: 'Outfit', sans-serif;
  }
  .form-group textarea {
    border-radius: 1em;
    height: 10rem;
   
  }
  textarea {
    resize: none;
  }
  
  
  
  /* Responsive: stack columns on mobile */
  @media (max-width: 768px) {
    .contact-columns {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .contact-left, .contact-right {
      justify-content: center;
    }
    .form-group {
      text-align: center;
    }
  }

  
  /* Footer */
.site-footer {
    padding: 2rem 1rem;
    font-size: 0.9rem;
    font-weight: 200;
    padding: 0 50px;
  }
  
  /* Footer rows */
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  .footer-top {
    margin-bottom: 2rem;
    align-items: end;
   
  }
  
  /* Logo */
  .footer-logo img {
    height: 80px;
  }
  
  /* Socials */
  .footer-socials a {
    margin-left: 1rem;
    display: inline-block;
    color: #000;
  }
  
  .footer-socials img {
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
  }
  
  .footer-socials img:hover {
    transform: scale(1.1);
  }
  
  /* Footer bottom */
  .footer-bottom {
    font-size: 0.85rem;
    gap: 1rem;
  }
  
  .footer-left a {
    color: #000;
    text-decoration: none;
    margin-right: 0.5rem;
  }
  
  .footer-left a:hover {
    text-decoration: underline;
  }
  
  .footer-center,
  .footer-right {
    text-align: center;
  }
  
  /* Responsive: stack rows on mobile */
  @media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-socials {
      margin-top: 1rem;
    }
  
    .footer-left, .footer-center, .footer-right {
      margin: 0.5rem 0;
    }
  }
  
  /* ============================= */
/*        RESPONSIVE QUERIES     */
/* ============================= */


@media (min-width: 1232px) {
  .problem-grid {
    padding: 0;
  }

  .services-container {
    padding: 5rem 10rem;
  }
  
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {

  /* General container */
  .container {
    width: 95%;
  }

  .section-heading {
    font-size: 2.5rem;
  }

  /* Navbar */

  .navbar {
    padding: 1rem 0;
  }
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 3.5rem;
  }
  .subHeading {
    font-size: 1.5rem;
  }
  .hero-text {
    font-size: 0.95rem;
  }

  .profile-info h3 {
    font-size: 1.5rem;
  }

/* problem section */

  /* .problem-grid {
    margin: 1rem 1rem;;
  } */

  .problem-box {
    margin-left: 2rem;
    margin-right: 2rem;
  }


  /* My Work */
  .my-work h2 {
    font-size: 2.5rem;
  }

  .my-work p {
    font-size: 0.95rem;
  }

  .work-item img {
    height: 300px;
  }

  /* Services */
  .services-container {
    padding: 3rem 4rem;
  }

  .services-title {
    font-size: 2.5rem;
   
  }

  .service h3 {
    font-size: 2rem;
  }

  .checklist li {
    font-size: 1.2rem;
  }

  /* Tools */
  .tools-title {
    font-size: 2.5rem;
  }

  .tools-track {
    gap: 4rem;
  }

  /* FAQ */
  .faq-title {
    font-size: 2.5rem;
  }

  /* Contact */

  .contact-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-left h2 {
    font-size: 3.5rem;
  }

  .contact-left p {
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-logo img {
    height: 60px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
 
  .section {
    padding: 4rem 0;
  }
  h2 {
    font-size: 0.5rem;
  }

  /* Navbar */
  .navbar .container {
    padding: 0 1rem;
    flex-direction: flex;
    gap: 1rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto; /* laat de links de hoogte bepalen */
    max-height: 0;
    overflow: hidden;
    padding-bottom: 2rem;
  
    background-color: #F5F5F5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  
    flex-direction: column;
    gap: 2rem;
  
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .nav-links.open {
    max-height: 17rem; /* genoeg ruimte voor je links */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    text-align: center;
    font-size: 1.2rem;
  }

  .logo img {
    height: 40px;
  }

  .menu-icon {
    display: block;
  }

  /* Hero */
  .hero {
    margin-top: 8rem;
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .subHeading {
    font-size: 1rem;
    font-weight: 500;
  
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
    margin-bottom: 3rem;
  }

  .btn {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Profile */
  .profile {
    
    align-items: center;
    margin: 4rem 0 2rem;
    text-align: center;
  }

  .profile-info h3 {
    font-size: 1.7rem;
  }

  .status {
    font-size: 0.8rem;
    margin-left: -0.2rem;
  }

  /* My Work */
  .my-work {
    padding: 3rem 1rem;
  }

  .my-work h2 {
    font-size: 2.5rem;
  }

  .work-track {
    gap: 2rem;
  }

  .work-item img {
    height: 200px;
  }

  /* Expertise */
  .carousel-track {
    animation: scroll 25s linear infinite;
  }
    
  @keyframes scroll {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-600%);
    }
    
  }

  /* Problem Section */

 .section-heading {
    font-size: 2.5rem;
    
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    margin: 0 1rem 3rem;
    padding: 0;
  }

  .problem-item p {
    font-size: 1.25rem;
  }

  .problem-box {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    font-size: 1.25rem;
    margin: 0 1rem;
  }

  /* Services */
  .services-container {
    padding: 2rem 1.5rem;
  }

  .services-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

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

  .service h3 {
    font-size: 2rem;
  }

  .checklist li {
    font-size: 1rem;
  }

  .services {
    padding: 0rem 0.5rem;
  }

  

  /* FAQ */
  .faq {
    padding: 3rem 1rem;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-question {
    font-size: 1rem;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .faq-icon {
    font-size: 2rem;
  
  }

  .faq-answer {
    padding: 0 2rem 0 3.5rem;
  }

  /* Contact */
  .contact-container {
    padding: 4rem 1rem 1rem 1rem;
;
  }

.contact {
  padding: 5rem 0.5rem;
}

  .contact-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 2.5rem;
  }

  .contact-left p {
    font-size: 1.25rem;
  }

  .form-group {
    text-align: left;
  }

  #contact-btn {
    margin-top: 4rem;
    margin-bottom: 0;
  }

  /* Footer */
  .footer-logo img {
    height: 50px;
  }

  .footer-socials img {
    height: 20px;
    width: 20px;
  }

  .footer-socials a {
    margin-left: 0;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

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