/* contact opties */

dl.alt dt i {
  margin-right: 8px;
  color: #596774; 
}

.contact-list {
  list-style: none;
  padding: 9;
  margin: 0;
}

.contact-list li {
  margin-bottom: 50px;
}

.contact-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  color: #75b1ec;
}

.contact-list a:hover {
  color: #6c95bd;
}

.contact-list i {
  font-size: 20px;
  margin-right: 10px;
  color: #428ad1;
  width: 25px;
  text-align: center;
}

/* contact form */

#contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(78, 78, 78, 0.322);
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 77, 77, 0.24);
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 6px rgba(44, 62, 80, 0.3);
  outline: none;
}

#contact-form input[type="submit"],
#contact-form input[type="reset"] {
  border-radius: 6px;
  padding: 5px 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form input[type="submit"] {
  background-color: #478dd8;
  color: #fff;
  border: none;
}
#contact-form input[type="submit"]:hover {
  background-color: #2d5a8a;
}

#contact-form input[type="reset"] {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(78, 78, 78, 0.274);
}
#contact-form input[type="reset"]:hover {
  background-color: #f2f2f2;
}

.value-item .value-icon i {
  transition: color 1.0s ease;
  font-size: 2.5rem;
}

/* icon kleur transition */

/* Our Mission */
.value-item:nth-child(1):hover .value-icon i {
  color: #d45963;
}

/* Our Expertise */
.value-item:nth-child(2):hover .value-icon i {
  color: #1f4172;
}

/* Our Commitment */
.value-item:nth-child(3):hover .value-icon i {
  color: #2a9d8f;
}

.value-item:hover .value-title {
  color: currentColor;
  transition: color 0.4s ease;
}

/* Our approach pagina */

#approach .ceo-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  box-shadow: 0 5px 20px rgba(65, 65, 65, 0.185);
  border-radius: 8px;    
}

#approach .ceo-image {
  border-radius: 50%;
  overflow: hidden;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(44, 44, 44, 0.377);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-left: 60px;
}

#approach .ceo-image:hover {
  transform: scale(1.00);
}

#approach .ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#approach .ceo-image img:hover {
  transform: scale(1.05);
}

#approach .ceo-content {
  background: #ffffff10;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#approach .ceo-content:hover {
  transform: translateY(-5px);
}

#approach .ceo-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 0.3rem;
}

#approach .ceo-title {
  font-size: 1.1rem;
  font-style: italic;
  color: #2a9d8f;
  margin-bottom: 1.2rem;
}

#approach .ceo-description p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #444;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer */

footer.main.style2 {
  background: #222;
  color: #eee;
  padding: 3rem 2rem;
  font-family: "Arial", sans-serif;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

footer.main.style2 h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

footer.main.style2 p {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
}

footer.main.style2 .footer-social {
  margin: 2rem 0;
}

footer.main.style2 .social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

footer.main.style2 .social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #444;
  color: #eee;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

footer.main.style2 .social-icons li a:hover {
  background: #ffcc00;
  color: #222;
}

footer.main.style2 .copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
}

/* header */

.logoTitle {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 1rem 0 0.5rem 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #222;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logoSubtitle {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Projects Section */
#projects {
  padding: 5rem 2rem;
  background: #fafafa;
}

#projects .major h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #222;
  position: relative;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.project-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.project-image img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.project-image:hover .project-overlay {
  opacity: 1;
}

/* titels */

.project-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.project-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .project-item {
    flex-direction: column !important;
    text-align: center;
  }

  .project-item h3 {
    font-size: 1.5rem;
  }
}

section .major h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
  position: relative;
}

section .major h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1b77f0, #7024ff);
  margin: 1rem auto 0;
  border-radius: 3px;
}

section .major h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000 !important;
  position: relative;
}

section .major h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b8ffd, #6302ff); 
  margin: 1rem auto 0;
  border-radius: 3px;
}

.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #8f17ff 0%, #1317fc 100%);
}

/* ===== Project Images Styling ===== */

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-height: 420px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  max-width: 460px;
  width: 100%;
}

.project-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.project-image:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-image:hover .project-overlay {
  opacity: 1;
}

.project-overlay .view-more {
  font-size: 1.1rem;
  font-weight: 600;
  background: rgb(62, 90, 214);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ===== Project sectie algemene stijl ===== */
#projects .project-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

#projects .project-item:nth-child(even) {
  flex-direction: row-reverse;
}

#projects h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #222;
}

#projects p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 500px;
}

/* ===== Responsief ===== */
@media (max-width: 768px) {
  #projects .project-item {
    flex-direction: column !important;
    text-align: center;
  }

  #projects .project-image {
    max-width: 100%;
  }

  #projects .project-image img {
    height: 300px;
  }
}

/* ===== Modal Slider Styling (alleen voor Carpifix) ===== */
#modal-carpifix .modal-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

#modal-carpifix .slider-images {
  display: flex;
  transition: transform 0.4s ease;
}

#modal-carpifix .modal-image {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  display: none;
  border-radius: 12px;
}

#modal-carpifix .modal-image.active {
  display: block;
}

/* ===== Minimalistische pijltjes voor slider ===== */
#modal-carpifix .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white !important;
  border: none;
  font-size: 1.5rem;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}

#modal-carpifix .slider-arrow.left {
  left: 10px;
}

#modal-carpifix .slider-arrow.right {
  right: 10px;
}

#modal-carpifix .slider-arrow:hover {
  color: white !important;
}

/* ===== Algemene modal-afbeelding styling (Curatio & andere) ===== */
.project-modal .modal-body > .modal-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 0 0;
  display: block;
}

@media screen and (min-width: 980px) {
  .project-modal .modal-body > .modal-image {
    width: 40%;
    border-radius: 0 0 0 8px;
  }
}
