/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
  cursor: none;
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* Add spacing between logo and nav */
}

.logo {
  height: 70px;
  margin-right: 30px; /* Additional spacing if needed */
}


.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #f5c000;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}




.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #eee;
    padding: 22px 0;

}

/* Container inside header */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  height: 50px;
  cursor: pointer;
}


/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  gap: 45px; /* more spacing between nav items */
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px; /* slightly smaller text */
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f5c000;
  transition: width 0.3s ease;
}



.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Social icons */
.social a {
  margin-left: 18px;
  color: #000;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social a:hover {
  color: #f5c000;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)); /* dark at top, fade to clear */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: red;
  padding: 100px 20px;
}


/* Hero Section */
.hero {
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  padding: 50px;
  text-align: center;
}

.hero h1 {
  color: #f5c000;
  font-size: 80px;
  font-weight: 900;
}

.hero h2 {
  color: white;
  font-size: 40px;
  margin-top: 5px;
    font-weight: 300;

}
.inline-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
}
.white-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin-right: 10px;
}

/* About Section */
.about {
  background: #f5c000;
  padding: 80px 50px;
  background-image: url('images/architect-design-1-4.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.about .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.about .mission-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 750px;
  color: #fff;
  font-weight: 300;
}

.about strong {
  font-weight: 600;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 20px;
  }
}



.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #f5c000;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Section Container */
.specialty {
  background: #fff;
  text-align: center;
  padding: 60px 0 0 0;
}

/* Section Title */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

/* Cards Container - Full Width */
.specialty-cards {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2)); /* removes left gutter */
}

/* Card Style */
.card {
  flex: 1 1 50%;
  color: #fff;
  padding: 100px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 900px;
  box-sizing: border-box;
}

/* Card Inner Content */
.card-content {
  z-index: 1;
  text-align: left;
  max-width: 500px;
}

/* Typography & Layout for Cards */
.card p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card hr {
  width: 60px;
  border: 2px solid #fff;
  margin: 15px 0;
}

.card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  font-size: 19px;
  line-height: 1.6;
}

/* Backgrounds */
.card-bim {
    background-repeat: no-repeat;
  background:  url("images/fr.png");
  background-size: cover;
}

.card-autodesk {
  background: linear-gradient(to right, rgba(249, 199, 0, 0.35), rgba(235, 218, 150, 0.25)), url("images/fr2.png");
  background-size: cover;
  background-position: center;
}


/* Responsive for small screens */
@media (max-width: 900px) {
  .specialty-cards {
    flex-direction: column;
    margin-left: 0;
  }

  .card {
    flex: 1 1 100%;
    height: auto;
    padding: 40px 30px;
  }
}


.savoir-faire {
  background: url('images/oiu9r11-1-2.png') center center no-repeat;
  background-size: cover;
  padding: 80px 0;
  background-color: white;
}

.savoir-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;

}

.savoir-left {
  flex: 1;
  color: #222;
}

.savoir-left h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.underline {
  width: 300px;
  height: 4px;
  background-color: #000;
  margin-bottom: 30px;
}

.savoir-left p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.bottom-text {
  font-weight: bold;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
}

.savoir-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* optional: centers vertically if parent has height */
  gap: 20px; /* space between icon and stars */
  text-align: center;
}

.savoir-right .icon {
  max-width: 160px;
  height: auto;
}

.savoir-right .stars {
  max-width: 120px; /* adjust as needed */
  height: auto;
}


/* Responsive */
@media (max-width: 768px) {
  .savoir-content {
    flex-direction: column;
    text-align: center;
  }
}





/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-top: 30px;
  }
}
img[alt="5-star rating"] {
  display: block;
  margin: 20px auto 0; /* top margin + center */
  max-width: 280px;
  height: auto;
}
.contact-section {
  background-color: #fff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-left p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

form#contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

form#contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
}

form#contact-form input,
form#contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
}

form#contact-form textarea {
  resize: vertical;
}

form#contact-form input:focus,
form#contact-form textarea:focus {
  outline: none;
  border-color: #000;
}


.submit-btn {
  grid-column: 1 / -1;
  padding: 14px;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #222;
}



@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-contact, .footer-nav {
    width: 100%;
  }

  .footer-contact .social-icons a {
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px; /* space between left and right */
  }

  .contact-left,
  .contact-right {
    min-width: 100%;
    height: auto; /* let right container adjust height */
  }
}

@media (max-width: 768px) {
  form#contact-form {
    grid-template-columns: 1fr; /* Stack fields vertically */
  }

  form#contact-form .form-group.full-width {
    grid-column: auto; /* Reset full-width spanning */
  }

  .submit-btn {
    grid-column: auto; /* Reset submit button spanning */
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-nav {
    margin-top: 30px;
  }
}
.services-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.services-section .section-description {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-content: center;
  width: 100%;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}
.ceo-section {
  padding: 100px 20px;
  background-color: #fdfdfd;
  font-family: 'Poppins', sans-serif;
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ceo-text {
  max-width: 600px;
  color: #111;
}

.ceo-text h2 {
  font-size: 32px;
  color: #f5c000;
  margin-bottom: 10px;
  font-weight: 700;
}

.ceo-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}
.ceo-section .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.nos-clients {
  background-color: #f9f9f9;
  padding: 80px 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.nos-clients h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
  text-transform: uppercase;
}

.nos-clients .intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 30px;
}

.nos-clients p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 20px auto;
}

.nos-clients ul {
  list-style: none;
  padding-left: 0;
  margin: 20px auto 30px;
  max-width: 700px;
  text-align: left;
}

.nos-clients ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.nos-clients ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f9c700;
  font-size: 1.2rem;
  line-height: 1;
}

.nos-clients .contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
}

.nos-clients .contact-link a {
  color: #f9c700;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  background-color: #222;
  transition: background-color 0.3s ease;
}

.nos-clients .contact-link a:hover {
  background-color: #000;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #666;
  color: white;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background-color: #f9c700; /* Yellow on hover */
  color: #333;
}
html {
  scroll-behavior: smooth;
}


.ceo-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ceo-title .quote {
  font-size: 60px;
  color: #f9c700; /* Yellow quote marks */
  font-family: Georgia, serif;
  line-height: 0;
}

.ceo-title .title-text {
  color: #111; /* Black text */
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
}





/* Mobile nav toggle button */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hidden menu on mobile */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    max-width: 300px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .nav a {
    font-size: 18px;
  }
  .nav-toggle {
    display: block;
    color: #000;
  }
}
/* GLOBAL FIXES */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* Empêche le débordement horizontal */
}

/* Responsive container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Important pour éviter que le contenu touche les bords sur mobile */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* VIDEO BACKGROUND WRAPPER */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* HEADER & NAV */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    max-width: 300px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .nav a {
    font-size: 18px;
  }
  .nav-toggle {
    display: block;
    color: #000;
  }
  .container {
    flex-wrap: wrap;
  }
}

/* FOOTER & CONTACT SECTION */
footer, .contact-section {
  padding: 40px 20px;
}

footer {
  background: #000;
  color: #eee;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 5px 0;
  font-size: 15px;
}

.footer-socials {
  margin: 15px 0;
}

.footer-socials a {
  margin-right: 15px;
  color: white;
  font-size: 18px;
}

footer a:hover {
  text-decoration: underline;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 30px;
}
.footer-nav h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
  display: inline-block;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin: 8px 0;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}
.footer-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.footer-contact .social-icons a {
  margin-right: 15px;
  color: #ccc;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}

.footer-contact .social-icons a:hover {
  color: #f9c700;
}
footer {
  background-color: #000; /* black background */
  color: #fff; /* white text */
  text-align: center;
  padding: 20px 0;
  font-size: 15px;
  font-family: 'poppins', sans-serif;
  border-top: none; /* remove any border if present */
}

footer a {
  color: #fff; /* white links */
  text-decoration: none;
}

.footer-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 60px 0 20px;
}


.footer-links h4 {
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

/* MOBILE HERO TEXT ADJUST */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero h2 {
    font-size: 20px;
  }
}
/* HEADER GLOBAL */
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 50px;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

/* NAVIGATION */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* SOCIAL LINKS */
.nav .social {
  display: flex;
  gap: 15px;
}

.nav .social a {
  color: #000;
  font-size: 18px;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    gap: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav .social {
    justify-content: flex-start;
    margin-top: 10px;
  }
}