*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.link {
    position: relative;
    padding-bottom: 5px;
}


i {
    margin-right: 6px;
}


@media screen and (max-width : 767px){ 

nav {
    display: flex; 
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; 
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 64px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-bottom: 30px;
}


.navigation_links {
    display: none;
}


.navigation_links.active {
    display: block;
}


nav a {
    margin: 10px;
}

.mobile-styles {
    display: flex;
    justify-content: space-between !important;
    margin: 10px;
    padding: 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; 
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto ;
    width: 100%;
    box-sizing: border-box;
}

.menu {
    font-size: 2rem;
    cursor: pointer;
}

}

nav a {
    text-decoration: none;
    color: #3B56C9;
    font-size: 20px;
}


.apropos_img {
    position: relative;
    background-image: url('images/image-apropos.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    overflow: hidden; 
    border-radius: 15px;
}

.apropos_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 20px;
    padding: 15px;
}


.apropos_content h3 { 
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.expetise-content {
    text-align: center;
}

.expetise-content h2 {
    margin-bottom: 10px;
    color: #1e3a8a;
}


.expetise-content p {
   color: #6b7280;
   margin-top: 10px;
   margin-left: 10px;
   max-width: 340px;
}

.apropos_content a{
    text-decoration: none;
    padding: 20px;
    background-color: #F59E0B;
    color: white;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 0.375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    margin-top: 30px;
}


.apropos_content a:hover {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}


.section_apropos {
    margin-top: 100px;
}


.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 5px;
    padding: 10px;
}

footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 50px;
}

.reseaux-group a { 
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.reseaux-group a:hover {
    background: #e0b300;
    transform: translateY(-2px);
}

.reseaux-group  {
    margin-top: 35px;
}


.footer-title
{  
    font-weight: 600;
    position: relative;
    display: inline-block;
}


.footer-title::after {
  content: "";
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 55%;
  height: 2px;
  background-color: #FFC107; 
  border-radius: 2px;
}


.copyright{
    text-align: center;
    color: #6b7280;
    margin-top: 25px;
    font-size: 1rem;
}

.reseaux-group {
    display: flex;
    gap: 22px;
}

.network-arrow p {
    margin-top: 30px;
    color: #ffd700;
}


.footer-links {
    margin-top: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #6b7280;
    display: flex;
    gap: 2px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 18px;
}


.footer-links a:hover {
    color: rgb(235, 85, 30);
    transform: translateY(-2px);
}


.footer-times ul li , .footer-contacts ul li  {
    margin-top: 30px;
}


li {
    list-style: none;
}


.trait {
    width: 320px;
    height: 2px;
    background: #000;
    margin: 8px auto ;
    text-align: center;
}


.mobile-styles button {
    border: none;
    background: none;
}

@media screen and (min-width : 768px)  {

.link {
    position: relative;
    padding-bottom: 12px;
}
  

.link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 32px;
    width: 100%;
    height: 2px;
    background-color: #F59E0B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
} 


.link:hover::after {
    transform: scaleX(1);
}


nav {
    display: flex; 
    flex-direction: row;
    gap: 40px;
}


.menu {
    display: none;
}


.btn {
    position: relative;
    bottom: 12px;
}


.nav_contenaire img {
  margin-left: 70px;
  position: relative;
  bottom: 9px;
}


.navigation_links {
    margin-right: 80px;
    margin-top: 13px;
}


.btn::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 10px;
    width: 100%;
    height: 2px;
    background-color: #F59E0B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}


.btn {
    padding: 15px;
    background-color: #FFB224;
    border-radius: 10px;
}


.btn:hover {
    background: #F59E0B;
}


.btn:hover::after {
    transform: scaleX(1);
}


.btn:hover::after {
    transform: scaleX(1);
} 


.nav_contenaire {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; 
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto ;
    width: 100%;
    box-sizing: border-box;
}


.trait {
    width: 1120px;
}


.apropos_content {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    gap: 90px;
    margin: 60px;
    padding: 15px;
}

.section_apropos {
    margin-top: 180px;
}

.apropos_img {
    width: 2850px;
}


.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 15px;
    padding: 20px;
    padding-bottom: 50px;
}

.apropos_content p { 
    font-size: 1.1rem;
    line-height: 1.6;
}


.expetise-content h2 {
    font-size: 3rem;
    color: #1e3a8a;
}


.expetise-content p {
   max-width: none;
   font-size: 1.5rem;
   margin-top: 6px;
}
}

