:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --dark-blue: #102a43;
  --blue-accent: #243b53;
  --light-gray: #f5f5f5;
  --text-color: #111;
  --transition: all 0.3s ease-in-out;
}
* {
  font-family: 'Montserrat', sans-serif;
}
h1, h2, h3 {
  font-weight: 600;
}

p, a, li {
  font-weight: 400;
}
#about strong {
  color: var(--blue-accent);
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Add overlay layer on top of video but behind text */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* subtle darkness */
  z-index: 2;
}

.hero-content {
  z-index: 3;
  max-width: 90%;
  padding: 0 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}



.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
}
/* Burger button styling */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* above nav links */
}

.burger span {
  display: block;
  height: 3px;
  background: rgb(12, 12, 12);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Show burger on mobile */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px; /* height of navbar */
    right: 0;
    background: var(--dark-blue);
    height: calc(100vh - 60px);
    width: 250px;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -3px 0 6px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin-bottom: 1.5rem;
  }

  .nav-links li.social-icons {
    margin-top: auto;
  }

  .nav-links li a {
    color: white;
    font-size: 1.2rem;
  }

  /* Remove horizontal flex for nav-links */
  .nav-links {
    display: flex;
  }
}

.clients-section {
  padding: 6rem 2rem;
  text-align: center;
}

.clients-section h2 {
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--dark-blue);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.clients-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--blue-accent);
  border-radius: 2px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.client-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  flex: 1 1 180px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 600px) {
  .clients-logos {
    gap: 1.5rem;
  }
  .client-card {
    max-width: 140px;
    padding: 1rem;
  }
  .clients-section h2 {
    font-size: 1.8rem;
  }
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #e0e0e0;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 1.8rem;
  animation: bounce 2s infinite;
  color: white;
}

.scroll-down a {
  color: white;
  text-decoration: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

 

.services-section {
  padding: 4rem 2rem;
  background-color: var(--light-gray);
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.icon-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.icon-link img {
  display: block;
  margin: 0 auto;
 
}

.icon-link:hover img {
  filter: invert(40%) sepia(100%) saturate(600%) hue-rotate(200deg);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #102a43;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.services-section h2 {
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
  color: #102a43;
  font-weight: 700;
  margin: 0 auto 2rem auto; /* centre avec marge */
}

.services-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #243b53;
  border-radius: 2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  color: var(--dark-blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-accent);
}

.navbar {
  background: var(--dark-blue);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #102a43; /* dark navy or whatever matches your site */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
}

.hero {
  padding: 5rem 2rem;
  background-color: var(--light-gray);
  text-align: center;
}

.hero h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-color);
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2.3rem;
  color: var(--dark-blue);
  margin-bottom: 2rem;
}

.section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--blue-accent);
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition);
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  background: var(--light-gray);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.card p {
  color: var(--text-color);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  font-weight: bold;
  color: var(--black);
}

.footer {
  background: var(--dark-blue);
  padding: 1rem;
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --dark-blue: #102a43;
  --blue-accent: #243b53;
  --light-gray: #f5f5f5;
  --text-color: #111;
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue-accent);
}

/* NAVBAR STYLES */
.navbar {
  background: var(--dark-blue);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .brand {
  font-size: 1.6rem;
  font-weight: 100;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}
.navbar {
  background: var(--dark-blue);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center; /* center all horizontally */
  gap: 4rem; /* spacing between brand, nav links, social icons */
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

/* Brand on the left */
.brand {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: auto; /* push brand to left */
}

/* Main nav links centered */
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem; /* space between links */
  justify-content: center;
  flex: 1 1 auto; /* take available space */
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;  /* spacing between logo and text */
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* makes the logo round */
  object-fit: cover;
  display: block;
}

.nav-links li a {
  color: var(--white);
  font-weight: 400; /* normal weight */
  font-size: 1.1rem;
  position: relative;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Underline effect on hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}


/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .brand {
    margin-right: 0;
  }

  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-links {
    margin-left: 0;
    gap: 1rem;
  }
}
/* Social icons aligned on the right */
.social-links {
  list-style: none;
  display: flex;
  gap: 0.8rem; /* minimal spacing */
  padding: 0;
  margin-left: auto; /* push social icons to right */
}

.social-links li a.social-icon {
  color: var(--white);
  font-size: 1.3rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links li a.social-icon:hover {
  color: var(--blue-accent);
}


/* HERO SECTION */
.hero {
  padding: 5rem 2rem;
  background-color: var(--light-gray);
  text-align: center;
}

.hero h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
.contact-section {
  background-color: #102a43;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section a {
  color: #f5f5f5;
  text-decoration: underline;
}

.contact-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}



.footer a {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-icons {
  margin-top: 1rem;
}

.footer-icons a {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #ccc;
}

.footer-icons a:hover {
  color: white;
}

/* NAVBAR icons */
.navbar .nav-links li i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  color: #ffffff;
}
.footer {
  background-color: #0a1e36;
  color: white;
  padding: 3rem 2rem 1rem; /* less bottom padding to fit copyright */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  flex-direction: column;
  gap: 2rem;
}


.footer-bottom {
  border-top: 1px solid #355070; /* visible blueish line */
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  width: 100%;
  font-weight: 600;
}


.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 240px;
}

.footer-left h4,
.footer-right h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-right ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right ul li a:hover {
  color: #ffffff;
}
