/*
to do list 

-color and design and font

-make the Projets section



*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100hv;
  background-color: #a39986;
  background-image: url("");
  padding-top: 80px;
}

body.modal-open {
  overflow: hidden;
}
li {
  list-style: none;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}
.navBarA:hover {
  color: orange;
}

/*Header - Modern Design*/
header {
  position: fixed;
  width: 100%;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 165, 0, 0.3);
}

button{
  cursor: pointer;
}

.navbar {
  position: relative;
  width: 100%;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

header.scrolled .navbar {
  height: 70px;
}

.navbar .logo a {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .logo a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, orange, rgb(255, 200, 0));
  transition: width 0.3s ease;
}

.navbar .logo a:hover::after {
  width: 100%;
}

.navbar .links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.navbar .links li a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar .links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: orange;
  transition: width 0.3s ease;
}

.navbar .links li a:hover::before {
  width: 100%;
}

.navbar .links li a:hover {
  color: orange;
  transform: translateY(-2px);
}

.navbar .toggle_btn {
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.navbar .toggle_btn:hover {
  background: rgba(255, 165, 0, 0.1);
  color: orange;
}

.action_btn {
  background: linear-gradient(135deg, orange, rgb(255, 140, 0));
  color: #fff;
  padding: 0.75rem 1.75rem;
  border: none;
  outline: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.action_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s;
}

.action_btn:hover::before {
  width: 300px;
  height: 300px;
}

.action_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.5);
  color: #fff;
}

.action_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
}
/*Dropdown menu - Modern Design*/
.dropdown_menu {
  display: none;
  position: absolute;
  right: 3rem;
  top: 80px;
  height: 0 !important;
  width: 320px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 165, 0, 0.2);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
}

.dropdown_menu.open {
  display: block;
  height: 280px !important;
  opacity: 1;
  visibility: visible;
}

.dropdown_menu li {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.dropdown_menu li:last-child {
  border-bottom: none;
}

.dropdown_menu li:hover {
  background: rgba(255, 165, 0, 0.1);
}

.dropdown_menu li a {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dropdown_menu li a:hover {
  color: orange;
  transform: translateX(5px);
}

.dropdown_menu .action_btn {
  width: 90%;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
}

/*hero - Modern Appealing Design*/

section#hero {
  height: 70vh;
  min-height: 500px;
  max-height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: -80px;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
  padding: 0 2rem;
}

.hero-text-wrapper {
  max-width: 1000px;
  animation: fadeInUp 1s ease-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tagline {
  font-size: 4rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-tagline-line {
  display: block;
  color: #fff;
  text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
}

.hero-tagline-line.highlight {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 10px rgba(255, 165, 0, 0.5));
}

.hero-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary {
  background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
  color: #fff;
  border: 2px solid transparent;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5);
  background: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: orange;
  color: orange;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
  color: orange;
  transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
  color: #FF8C00;
  transform: translateY(3px);
}

.hero-scroll-indicator i {
  font-size: 2rem;
  color: inherit;
  opacity: 0.8;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* About Section - Modern Design */
.about {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

.about-header {
  margin-bottom: 4rem;
  text-align: center;
}

.about-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.about-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.about-header-text {
  flex: 1;
  max-width: 900px;
  text-align: center;
}

.about-badge {
  display: inline-block;
  padding: 0;
  background: none;
  color: orange;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: none;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: orange;
  margin: 0;
  line-height: 1.4;
}

.about-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2c3e50;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #34495e;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
  border-color: orange;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, orange, rgb(255, 140, 0));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.about-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(255, 165, 0, 0.2);
}

.about-cta-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, orange, rgb(255, 140, 0));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 165, 0, 0.5);
  color: #fff;
}

.about-cta-btn i {
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(5px);
}

/* Services Section - Modern Accordion SEO Optimized */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: orange;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: rgba(255, 165, 0, 0.5);
  transform: translateY(-2px);
}

.service-item.active {
  border-color: orange;
  background: rgba(255, 165, 0, 0.08);
}

.service-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.service-header:hover {
  background: rgba(255, 165, 0, 0.1);
}

.service-header-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-icon-header {
  font-size: 2.5rem;
  color: white;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-header:hover .service-icon-header {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.service-toggle {
  font-size: 1.5rem;
  color: orange;
  transition: transform 0.4s ease;
}

.service-item.active .service-toggle {
  transform: rotate(180deg);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.active .service-content {
  max-height: 1200px;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.5rem 2rem;
}

.service-description {
  color: #fff;
}

.service-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: orange;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-list li i {
  color: orange;
  font-size: 0.9rem;
}

.service-footer {
  font-size: 1rem;
  color: orange;
  font-weight: 600;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 165, 0, 0.3);
}

.service-gallery {
  display: flex;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid rgba(255, 165, 0, 0.2);
}

.gallery-img:hover {
  transform: scale(1.05);
  border-color: orange;
  box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

/* Responsive Services */
@media (max-width: 992px) {
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-header-content {
    gap: 1rem;
  }
  
  .service-icon-header {
    width: 55px;
    height: 55px;
    font-size: 2rem;
  }
  
  .service-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }
  
  .services-container {
    padding: 0 1rem;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
  }
  
  .service-header {
    padding: 1rem 1.5rem;
  }
  
  .service-name {
    font-size: 1.1rem;
  }
  
  .service-content-grid {
    padding: 1.5rem 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .gallery-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .service-header-content {
    gap: 1rem;
    align-items: center;
  }
  
  .service-icon-header {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-subtitle {
    font-size: 1.2rem;
  }
  
  .service-text {
    font-size: 0.95rem;
  }
}

/* Old Services CSS (to be removed eventually) */
.sevices {
  padding: 50px 0;
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  background-color: #212121;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.column {
  display: flex;
  width: 100%;
  padding: 0 0 2em 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.serviceName {
  font-size: 20px;
  font-weight: 600;
  color: orange;
  margin: 1em 0;
  transition-duration: 0.4s;
}
.serviceDescription {
  color: #fdfdfd;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  transition-duration: 0.7s;
}
.icon-wrapper {
  background-color: #4d85df;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the transparency as needed */
  display: none;
  z-index: 4; /* Place the overlay above other elements except the modal */
}
#modal1,
#modal2,
#modal3,
#modal4,
#modal5,
#modal6,
#modal7,
#modal8,
#modal9 {
  display: flex;
}
.exitIconServices {
  z-index: 7;
  height: fit-content;
  position: absolute;
  top: 5%;
  right: 5%;
  cursor: pointer;
  justify-items: center;
  align-items: center;
  font-size: 100%;
  font-size: 1.5em;
}
.expand {
  z-index: 2;
  position: absolute;
  width: fit-content;
  top: 3%;
  right: 3%;
  font-size: 1.25em;
}
.expandIcon {
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
}
.modal {
  position: fixed;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  place-content: center;
}
.serviceExpanded {
  z-index: 6;
  width: auto;
  height: 100%;
  color: #000000;
  display: flex;
  place-content: center;
  align-items: center;
  border-radius: 8px;
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);  
}
.imgServicesDiv {
  width: 100%;
  height: auto;
  display: block;
  place-content: center;
  align-items: center;
}
/*delete
.ServiceExpandDescription {
  margin-top: 5%;
  margin-bottom: 5%;
  position: relative;
  width: 70%;
  height: auto;
  padding: 0 3em 0 3em;
  display: grid;
  box-sizing: border-box;
  justify-self: center;
  justify-content: center;
  align-items: center;
  place-content: top;
}
.expandDescription {
  margin: 0;
  padding: 0;
  color: #1c2833;
  height: 100%;
  width: 100%;
  font-family: "Montserrat";
  font-size: 1.8vw;
  font-weight: 600;
}
*/
/*imagine changer*/
.slider {
  width: 100%;
  height: auto;
  margin: 0;
  top: 0;
}
[class^="slider"] {
  position: relative;
}
.list {
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  display: grid;
  transition: 0.75s;
  align-items: center;
  place-items: center;
}
[class^="list"]  {
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  display: grid;
  transition: 0.75s;
  align-items: center;
  place-items: center;
  margin: 3em 0;
}
.img {
  max-height: 80vh;
  max-width: 80vw;
}
.list img {
  display: flex;
  z-index: 2;
  width: 100%;
  height: auto;
}
.buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.buttons button {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: rgba(7, 6, 6, 0.548);
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.buttons button:hover {
  background-color: rgba(85, 73, 73, 0.692);
}
[class^="dots"]  {
  position: absolute;
  bottom: 0;
  color: #fff;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
[class^="dots"] li {
  list-style: none;
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  margin: 1.25em;
  border-radius: 20px;
  transition: 0.75s;
}
[class^="dots"] li.active {
  width: 2em;
}
.sevices {
  height: auto;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projets {
  background: linear-gradient(135deg, #a89060 0%, #c4a771 100%);
  padding: 5rem 0;
  text-align: center;
}

.projets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.projets-badge {
  display: inline-block;
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.projets-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.projets-description {
  font-size: 1.4rem;
  color: #2c2c2c;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.btn-voir-projets {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  border: none;
}

.btn-voir-projets:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.btn-voir-projets i {
  transition: transform 0.3s ease;
}

.btn-voir-projets:hover i {
  transform: translateX(5px);
}

/* Responsive Projects Section */
@media (max-width: 768px) {
  .projets {
    padding: 3rem 0;
  }

  .projets-title {
    font-size: 2.2rem;
  }

  .projets-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .btn-voir-projets {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .projets-title {
    font-size: 1.8rem;
  }

  .projets-description {
    font-size: 1rem;
  }
}

/* Old Projets Styles - Keep for compatibility */
.Projets {
  background-color: rgba(136, 109, 41, 0.445);
  padding: 1.5em 0 1.5em 0;
}
.NosRealisation {
  display: grid;
  justify-content: center;
  align-items: space-between;
  margin: 2em 15% 2em 15%;
}
.projetsTitle {
  display: flex;
  justify-content: center;
}
.PrjTittle {
  font-size: 6rem;
  color: #000000;
}

.projetsDes {
  width: 70%;
  justify-self: center;
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
  padding: 25px 0 50px 0;
}
.Realisation {
  font-size: 2em;
  font-family: 'Roboto', serif;
  font-weight: 500;
}

.LinkToProjets {
  font-size: 1em;
  color: orange;
}
.LinkToProjets:hover {
  color: rgb(216, 140, 0);
}

/*
#contact Section
*/
/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  padding: 5rem 0;
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-badge {
  display: inline-block;
  padding: 0;
  background: none;
  color: orange;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: orange;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contactTitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: orange;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0;
}

.infoCard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  height: auto;
  min-height: 280px;
}

.infoCard:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: orange;
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.infoCard-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.infoCard:hover .infoCard-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.infoCard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.infoCard-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: orange;
  margin: 0.5rem 0 1rem;
  letter-spacing: 1px;
}

.infoCard p {
  max-height: none;
}

.infoCard-label {
  font-size: 0.95rem;
  color: #b0b0b0;
  font-weight: 400;
}

.contact-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.cta-text {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
}

.cta-text strong {
  color: orange;
  font-weight: 700;
}

/* Responsive Contact Section */
@media (max-width: 992px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 4rem;
  }
  
  .infoCard {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }

  .contact-title, .contactTitle {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .contact-info {
    max-width: 400px;
    padding: 0 1rem;
  }

  .infoCard {
    padding: 2rem 1.5rem;
  }

  .infoCard-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-title, .contactTitle {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-info {
    max-width: 350px;
  }

  .infoCard-title {
    font-size: 1.3rem;
  }

  .infoCard-text {
    font-size: 1.1rem;
  }
} 

.card {
  position: relative;
  max-width: 350px;
  min-width: 200px;
  width: 100%;
  max-height: 250px;
  min-height: 200px;
  height: 100%;
  background: #212121;
  box-shadow: rgba(0, 0, 0, 0.4) 10px 20px 30px, rgba(0, 0, 0, 0.3) 10px 1px 53px 3px, rgba(1, 0, 0, 0.2) 0px -1px 3px inset;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: #fff;
}
.card:hover {
  transform: scale(1.021);
}

.card:active {
  transform: scale(0.95) rotateZ(1.1deg);
}
.card:hover .serviceName {
  color: #fff;
  transition-duration: 0.7s;
}
.card:hover .serviceDescription {
  transition-duration: 0.4s;
  color: orange;
}
.inner-card{
  padding: 0 30px;
}








/*responsive design*/



@media screen and (min-width: 1200px) {
  .expandDescription {
    font-size: 1.25vw;
  }
  .imgServicesDiv {
    height: auto;
    display: block;
    justify-self: center;
  }
}
@media screen and (min-width: 768px) {
  .sevices {
    padding: 50px 2em;
  }
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .sevices {
    padding: 50px 5%;
  }
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media screen and (min-width: 1600px) {
  .sevices {
    padding: 50px 15em;
  }
}






  

@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }
  
  header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
  }
  
  .navbar {
    padding: 0 2rem;
    height: 70px;
  }
  
  .navbar .logo a {
    font-size: 1.5rem;
  }
  
  .navbar .links,
  .navbar .action_btn {
    display: none;
  }
  
  .navbar .toggle_btn {
    display: block;
  }
  
  .dropdown_menu {
    display: block;
    right: 2rem;
    width: 280px;
  }
  
  .introduction {
    font-size: 1.75rem;
  }
  .expandDescription {
    font-size: 2.8vw;
  }
  .imgServicesDiv {
    width: 100%;
    height: auto;
    display: block;
  }
  .ServiceExpandDescription {
    width: 70%;
    height: 30%;
    margin-bottom: 15%;
    padding: 0 3em 0 3em;
    border: 0px solid #424949; /* corrected border property */
  }
  .contact-info{
    flex-direction: column;
  }
  .infoCard{
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }
  .card {
    position: relative;
    width: 300px;
    height: 200px;
    perspective: 1000px;
  }
}
@media (max-width: 650px) {
  section#hero {
    height: 55vh;
    min-height: 400px;
  }
  
  .hero-content {
    padding: 2.5rem 1.5rem 0;
  }
  
  .hero-tagline {
    font-size: 2.5rem;
  }
  
  .hero-main-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-buttons {
    margin-bottom: 7rem;
  }
  
  .hero-scroll-indicator {
    bottom: 1rem;
  }
  
  .hero-scroll-indicator i {
    font-size: 1.3rem;
  }
  
  .about-logo {
    width: 100px;
    height: 100px;
  }
  
  .expandDescription {
    font-size: 3vw;
  }
}
@media (max-width: 576px) {
  header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
  }
  
  .navbar {
    padding: 0 1.5rem;
  }
  
  .navbar .logo a {
    font-size: 1.35rem;
  }
  
  .dropdown_menu {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
    top: 70px;
  }
}
@media (max-width: 400px) {
  section#hero {
    height: 50vh;
    min-height: 380px;
  }
  
  .hero-tagline {
    font-size: 2rem;
  }
  
  .hero-main-title {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .about-logo {
    width: 80px;
    height: 80px;
  }
  
  .imgServicesDiv {
    width: 100%;
    height: auto;
  }
  .ServiceExpandDescription {
    width: 80%;
    height: 45%;
    padding: 0 1.5em 0 1.5em;
  }
  .expandDescription {
    font-size: 4vw;
  }
}

/* ===========================
   NEW SEO-OPTIMIZED STYLES
   =========================== */

/* About Section Enhanced - Updated */
.about-title {
  font-size: 2.75rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-family: 'Roboto Slab', serif;
  line-height: 1.3;
}

.about-subtitle {
  font-size: 1.5rem;
  color: orange;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Services Section Enhanced */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.services-title {
  font-size: 2.5rem;
  color: orange;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #fdfdfd;
  max-width: 700px;
  margin: 0 auto;
}

.serviceName {
  font-size: 1.25rem;
}

.serviceDescription {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Projects Section Enhanced */
.PrjTittle {
  font-size: 5rem;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.PrjTittle:hover {
  color: orange;
}

.Realisation {
  font-size: 1.25rem;
  font-family: 'Roboto', serif;
  font-weight: 500;
  line-height: 1.8;
  color: #1c2833;
}

.btn-voir-projets {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: orange;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-voir-projets:hover {
  background-color: rgb(216, 140, 0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
  color: #fff;
}

/* Contact Section Enhanced */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 3rem;
  font-weight: 400;
}

.infoCard-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0.75rem 0 0.5rem 0;
}

.infoCard-label {
  font-size: 0.9rem;
  color: #ff6348;
  font-style: italic;
  margin-top: 0.5rem;
  display: block;
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.cta-text {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 4rem 2rem 0 2rem;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.5rem;
  color: orange;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-certifications p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  color: #fff;
}

.footer-certifications i {
  color: orange;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.footer-links a:hover {
  color: orange;
  padding-left: 5px;
}

.footer-contact-info {
  margin-bottom: 1.5rem;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0;
  font-size: 1rem;
}

.footer-contact-info i {
  color: orange;
  width: 20px;
}

.footer-contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-info a:hover {
  color: orange;
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social-title,
.footer-hours-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 165, 0, 0.1);
  border: 2px solid orange;
  border-radius: 50%;
  color: orange;
  font-size: 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: orange;
  color: #fff;
  transform: translateY(-3px);
}

.footer-hours p {
  margin: 0.5rem 0;
  color: #ccc;
}

.footer-bottom {
  background: #1a1a1a;
  padding: 2rem 2rem;
  margin-top: 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 1rem;
}

.footer-keywords {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-made-by {
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

.koda-link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.koda-link:hover {
  color: #333;
  text-decoration: underline;
}

/* Responsive About & Footer */
@media (max-width: 992px) {
  .about-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-header-text {
    text-align: center;
  }
  
  .about-logo {
    width: 120px;
    height: 120px;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section#hero {
    height: 60vh;
    min-height: 450px;
  }
  
  .hero-content {
    padding: 3rem 2rem 0;
  }
  
  .hero-tagline {
    font-size: 3rem;
  }
  
  .hero-main-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-bottom: 6rem;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-scroll-indicator {
    bottom: 1.5rem;
  }
  
  .hero-scroll-indicator i {
    font-size: 1.5rem;
  }
  
  .about {
    padding: 3rem 1.5rem;
  }
  
  .about-header {
    margin-bottom: 3rem;
  }
  
  .about-header-content {
    text-align: center;
  }
  
  .about-section-title {
    text-align: center;
  }
  
  .about-text-content {
    text-align: center;
  }
  
  .about-intro,
  .about-description {
    text-align: center;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .about-cta {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer {
    padding: 3rem 1.5rem 0 1.5rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .PrjTittle {
    font-size: 3.5rem;
  }
  
  .contactTitle {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    width: 180px;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .about {
    padding: 2.5rem 1rem;
  }
  
  .about-section-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .about-title {
    font-size: 1.65rem;
    text-align: center;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .about-intro,
  .about-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .about-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  
  .footer-title {
    font-size: 1.25rem;
  }
  
  .PrjTittle {
    font-size: 2.5rem;
  }
  
  .contactTitle {
    font-size: 3rem;
  }
  
  .btn-voir-projets {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   LIGHTBOX IMAGE VIEWER
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px 20px;
}

.lightbox[style*="display: block"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 1200px;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #ff6b35;
  transform: scale(1.2);
}

.lightbox-caption {
  display: none; /* Hide alt text caption */
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox {
    padding: 50px 15px 15px 15px;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 80vh;
  }
  
  .lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 40px;
  }
}

