/* ===========================
   Box Info Banner
=========================== */
.box-info-banner11{
    position: relative;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 22px;

    padding: 40px;
    box-shadow: 0 15px 45px rgba(0,0,0,.10);
}

/* Titre */
.box-info-banner11 h2{
    color: #2542C5 !important;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}


/* ===========================
   Mobile
=========================== */
@media (max-width:768px){

    .box-info-banner11{
        background: rgba(255,255,255,.55);
        backdrop-filter: blur(8px);

        padding: 22px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,.08);
    }

    .box-info-banner11 h2{
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .box-info-banner11 p{
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width:480px){

    .box-info-banner11{
        padding: 18px;
    }

    .box-info-banner11 h2{
        font-size: 22px;
    }

    .box-info-banner11 p{
        font-size: 14px;
    }
}

/* Écrans LG */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .box-info-banner11 h2 {
        font-size: 28px; /* Ajuste à 32px si tu le souhaites encore plus petit */
        line-height: 1.2;
    }
}
@media (max-width: 767.98px) {
    .banner-slide-11 {
       min-height: 775px;
    }
}
@media (max-width: 767.98px) {

    .banner-slide-11{
        position: relative;
        display: flex;
        align-items: flex-end; /* Aligne le contenu en bas */
        min-height: 775px; /* Ajuste selon la hauteur de ta bannière */
    }

    .banner-abs{
        position: absolute;
        left: 0;
        right: 0;
        bottom: 370px;
        width: 100%;
    }

    .box-info-banner11{
        background: rgba(255,255,255,.88);
        border-radius: 18px;
        padding: 20px;
    }

}

.header-logo img {
    width: 40%;
    height: auto;
}
.header .main-menu li a {
    font-weight: 500;
    padding: 5px 5px 5px 5px;
}
.header-top {
    height: 30px;
}
.header-top .header-wrap .top-bar {
    align-items: center;
    display: flex;
    height: 30px;
    width: 100%;
}
.header .main-header .header-left .header-right {
    padding: 5px 0 5px 5px;
    text-align: right;
    width: 40%;
}
h2 {
    font-size: 30px;
    line-height: 40px;
}
h4 {
    font-size: 22px;
    line-height: 30px;
}
.card-we-do .card-image {
    height: 100%;
    min-height: 220px; /* IMPORTANT : donne une vraie hauteur */
}

.card-we-do .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-support .card-image .box-circle-img {
    background-color: #fffbff;
}
.card-offer .card-image img {
    max-height: 100%;
}
.card-we-do .card-image {
    max-width: 100%;

}
.team-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.team-scroll-wrapper::-webkit-scrollbar {
    display: none; /* clean UI */
}

.team-scroll-item {
    flex: 0 0 auto;
    width: 160px; /* ajuste selon ton design */
    scroll-snap-align: start;
}

.team-scroll-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}
.team-scroll-item:first-child {
    margin-left: 12px;
}

.team-scroll-item:last-child {
    margin-right: 12px;
}
.banner-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

/* Tablette */
@media (max-width: 992px) {
    .banner-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .banner-title {
        font-size: 26px;
        line-height: 1.25;
        text-align: center;
    }
  	.banner-1 {
     	padding: 20px 0 18px;
	}
  	.font-md {
    	font-size: 12px !important;
      font-weight: 400 !important;
    line-height: 14px !important;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .banner-title {
        font-size: 22px;
    
    }
    .banner-1 {
     	padding: 10px 0 9px;
	}
    .font-md {
    	font-size: 12px !important;
    }
}
.services-section {
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;

    display: flex;
    flex-direction: column;

    transition: all 0.3s ease;

    border: 1px solid #f1f1f1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-image-wrapper {
    display: block;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 275px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card-body {
    padding: 25px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;

    margin-bottom: 18px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;

    margin-bottom: 14px;
}

.service-title a {
    color: #05264e;
    text-decoration: none;
}

.service-description {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;

    font-weight: 600;
    color: #05264e;

    text-decoration: none;

    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 8px;
}

/* Mobile */
@media (max-width: 768px) {

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-card-body {
        padding: 20px;
    }
}
.service-card-body {
    background-color: #e0eef4;
}