/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #414141;
}

a {
    color: #313131;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #1c2541;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    background: #1c2541;
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #1c2541;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn:hover {
    color: #1c2541;
    background: transparent;
    box-shadow: inset 0 0 0 0 #1c2541;
    border-color: #1c2541;
}

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #1c2541;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px 0;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top:hover i {
    color: #414141;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .5s;
    
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

/* FR / EN language switch */
.navbar .lang-switch {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .lang-switch .lang-btn {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.navbar .lang-switch .lang-btn:focus {
    outline: 2px solid rgba(28, 37, 65, 0.45);
    outline-offset: 2px;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        border-bottom: 1px dashed rgba(256, 256, 256, .2);
        z-index: 9;
    }

    /* Desktop : marque à gauche, menu + FR/EN alignés à droite */
    .navbar > .container-fluid {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar .navbar-brand {
        flex-shrink: 0;
        margin-right: clamp(0.5rem, 1.15vw, 1.25rem);
        color: #ffffff;
        font-size: 32px;
        line-height: 1.08;
        letter-spacing: 1px;
    }

    .navbar .navbar-collapse {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-end;
    }

    .navbar .navbar-nav.navbar-nav--cluster {
        margin-left: 0;
        margin-right: 0;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar .navbar-nav.navbar-nav--cluster .lang-switch--nav {
        flex-shrink: 0;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #1c2541;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 8px 6px 8px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        border-bottom: 2px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
        white-space: nowrap;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #414141;
    }

    /* Sur le hero (fond bleu) : éviter le noir (#111) illisible — garder un contraste clair */
    .navbar-light:not(.nav-sticky) .navbar-nav .nav-link:hover,
    .navbar-light:not(.nav-sticky) .navbar-nav .nav-link.active {
        color: #ffffff;
        border-bottom: 2px solid rgba(255, 255, 255, 0.75);
        padding-bottom: 6px;
    }

    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #1c2541;
        border-bottom: 2px solid rgba(28, 37, 65, 0.35);
        padding-bottom: 6px;
    }

    .navbar .lang-switch {
        margin-top: 0;
        margin-left: 6px;
        padding-top: 0;
        padding-left: 10px;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.35);
    }

    .navbar.nav-sticky .lang-switch {
        border-left-color: rgba(0, 0, 0, 0.12);
    }

    .navbar-light:not(.nav-sticky) .lang-switch .lang-btn {
        color: rgba(255, 255, 255, 0.92);
    }

    .navbar-light:not(.nav-sticky) .lang-switch .lang-btn:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .navbar-light.nav-sticky .lang-switch .lang-btn {
        color: #414141;
    }

    .navbar-light.nav-sticky .lang-switch .lang-btn:hover {
        background: rgba(28, 37, 65, 0.08);
    }

    .navbar .lang-switch .lang-btn.lang-btn-active {
        border-color: rgba(255, 255, 255, 0.55);
        background: rgba(255, 255, 255, 0.18);
    }

    .navbar.nav-sticky .lang-switch .lang-btn.lang-btn-active {
        border-color: rgba(28, 37, 65, 0.35);
        background: rgba(28, 37, 65, 0.1);
    }
}

/* Laptop / largeur intermédiaire (ex. 1280px) : menu horizontal trop chargé */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .navbar {
        padding: 22px 28px;
    }

    .navbar.nav-sticky {
        padding: 10px 28px;
    }

    .navbar .navbar-brand {
        font-size: 28px;
        line-height: 1.06;
        letter-spacing: 0.75px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 7px 6px;
        font-size: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        padding: 22px 20px;
    }

    .navbar.nav-sticky {
        padding: 10px 20px;
    }

    .navbar .navbar-brand {
        font-size: 24px;
        line-height: 1.08;
        letter-spacing: 0.5px;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 5px 6px;
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }

    .navbar > .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    /* Langues + hamburger à droite sur la première ligne */
    .navbar-mobile-end {
        margin-left: auto;
        gap: 0.35rem;
    }

    .navbar .lang-switch--toolbar {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        gap: 6px;
    }

    .navbar .lang-switch--toolbar .lang-btn {
        padding: 4px 9px;
        font-size: 12px;
        font-weight: 600;
        color: #414141;
    }

    .navbar .lang-switch--toolbar .lang-btn.lang-btn-active {
        border-color: rgba(28, 37, 65, 0.4);
        background: rgba(28, 37, 65, 0.08);
    }

    .navbar > .container-fluid > .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
    }

    body.is-scrolling #navbarCollapse {
        display: none !important;
        height: 0 !important;
        overflow: hidden;
    }

    body.is-scrolling .navbar-toggler {
        pointer-events: none;
    }

    .navbar .navbar-brand {
        color: #1c2541;
        font-size: 22px;
        line-height: 1.15;
        letter-spacing: 0.5px;
        white-space: nowrap;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 8.75rem);
    }

    .navbar .navbar-toggler {
        flex-shrink: 0;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }

    /* Évite d’étirer les liens sur toute la largeur : le soulignement suit le texte */
    .navbar .navbar-nav.navbar-nav--cluster {
        align-items: flex-start;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #5a5a5a;
        border-bottom: 2px solid transparent;
        padding-bottom: 6px;
        width: auto;
        max-width: 100%;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:focus {
        color: #1c2541;
    }

    .navbar-light .navbar-nav .nav-link.active {
        color: #1c2541;
        border-bottom-color: rgba(28, 37, 65, 0.4);
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
    overflow: hidden;
    background: linear-gradient(rgba(28, 37, 65, .95), rgba(28, 37, 65, .95));
}

.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
    padding-right: 75px;
}

.hero .hero-image img {
    max-width: 80%;
    max-height: 80%;
}

.hero-mobile-photo {
    display: inline-block;
    width: min(78vw, 280px);
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-mobile-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero .hero-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 35px;
    font-weight: 300;
    color: #ffffff;
}

.hero .hero-btn .btn {
    margin-top: 35px;
    color: #1c2541;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero .hero-content {
        padding: 0 15px;
    }
    
    .hero .hero-text p {
        font-size: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text h2 {
        font-size: 25px;
        height: 25px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

/* Tablette : même ligne que desktop / mobile (la demi-colonne md est étroite) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero .hero-btn {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero .hero-btn .btn {
        margin-top: 35px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: center;
    }

    /* « Télécharger mon CV » tient sur une ligne ; le 2e bouton ne prend que la place utile */
    .hero .hero-btn .cv-pdf-download {
        white-space: nowrap;
        flex: 1 0 auto;
        min-width: min-content;
    }

    .hero .hero-btn a.btn[href="#contact"] {
        flex: 0 0 auto;
    }

    .hero .hero-btn .btn:first-child {
        margin-right: 0;
    }
}

/* Tablette ~800–992px : padding plus serré, typo un peu plus petite (évite boutons trop hauts) */
@media (min-width: 800px) and (max-width: 991.98px) {
    .hero .hero-btn .btn {
        padding: 7px 12px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: 0.35px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: max(15px, env(safe-area-inset-top, 0px));
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    html {
        scroll-padding-top: var(--mobile-nav-height, 72px);
    }

    .hero,
    .about,
    .service,
    .experience,
    .team,
    .portfolio,
    .testimonial,
    .contact {
        scroll-margin-top: var(--mobile-nav-height, 72px);
    }

    .hero {
        min-height: calc(100dvh - var(--mobile-nav-height, 72px));
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding-top: calc(var(--mobile-nav-height, 72px) + 24px);
    }

    .hero .row > .d-md-none.text-center.mb-4 {
        margin-top: 8px;
        margin-bottom: 1.75rem !important;
    }

    .hero .container-fluid {
        width: 100%;
    }

    .about {
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-bottom: 60px;
    }
    
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-text p {
        font-size: 18px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text h2 {
        font-size: 22px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
    }
    
    .hero .hero-text h2 {
        font-size: 18px;
        height: 18px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #1c2541;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #1c2541;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    margin: -45px 0 45px 0;
}

.about .col-lg-6 {
    padding: 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-content {
    padding: 0 48px 0 56px;
}

.about .about-content-inner {
    max-width: min(100%, 720px);
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about .about-main-row {
    align-items: flex-start;
}

.about .about-main-row .about-img {
    height: min(72vh, 600px);
    min-height: 240px;
    align-self: flex-start;
    overflow: hidden;
}

.about .about-main-row .about-img img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
    transform-origin: center center;
    display: block;
    border-radius: 0 12px 12px 0;
}

@media (max-width: 991.98px) {
    .about .about-main-row .about-img {
        height: min(52vh, 480px);
        min-height: 200px;
    }

    .about .about-main-row .about-img img {
        border-radius: 0;
    }
}

.about .about-section-head {
    margin-bottom: 28px;
}

@media (min-width: 992px) {
    /* Décollage du hero bleu (la section a margin-top négatif) */
    .about {
        padding-top: 24px;
    }

    .about .about-section-head {
        padding-top: 0;
    }

    .about .about-main-row .about-img {
        height: min(78vh, 680px);
        min-height: 420px;
    }

    .about .about-main-row .about-img img {
        object-position: center 8%;
    }
}

.about .about-bio {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-left: 4px solid #1c2541;
    border-radius: 0 10px 10px 0;
    padding: 26px 28px 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(28, 37, 65, 0.08);
}

.about .about-lead {
    font-size: 17px;
    line-height: 1.65;
    color: #414141;
    margin-bottom: 14px;
}

.about .about-location {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about .about-location i {
    color: #1c2541;
    margin-top: 3px;
    flex-shrink: 0;
}

.about .about-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}

.about .about-highlights {
    margin-bottom: 28px;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.about .about-highlights-pair {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about .about-highlights-pair .about-highlight {
        min-height: 208px;
        padding: 24px 22px 22px;
    }
}

.about .about-highlights-pair .about-highlight-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
    margin-bottom: 14px;
}

.about .about-second-row .about-highlights-pair .about-highlight-icon {
    margin-bottom: 0;
}

.about .about-highlights-pair .about-highlight-title {
    margin-bottom: 10px;
}

.about .about-second-row .about-highlights-pair .about-highlight-title {
    margin-bottom: 0;
}

.about .about-second-row .about-highlights-pair .about-highlight-head {
    margin-bottom: 14px;
}

.about .about-highlights-pair .about-lang-item {
    font-size: 15px;
    line-height: 1.65;
}

.about .about-highlights-pair .about-highlight p {
    font-size: 15px;
    line-height: 1.6;
}

.about .about-second-row {
    margin-top: 16px;
    align-items: stretch;
}

@media (max-width: 991.98px) {
    .about .about-second-row {
        margin-top: 8px;
    }
}

.about .about-chart-below-photo {
    max-width: 420px;
}

@media (max-width: 991.98px) {
    .about .about-chart-below-photo {
        max-width: min(100%, 400px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
    }
}

.about .about-content--highlights-only {
    padding-top: 0;
}

.about .about-second-row .about-highlight-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.about .about-second-row .about-highlight-head .about-highlight-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.about .about-second-row .about-highlight-head .about-highlight-title {
    margin-bottom: 0;
    line-height: 1.25;
}

@media (min-width: 992px) {
    .about .about-second-row > .col-lg-6 {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .about .about-second-row .about-chart-below-photo {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        min-height: 0;
    }

    .about .about-second-row .about-highlight--skills-chart--compact {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 0;
        height: 100%;
    }

    .about .about-second-row .about-highlight--skills-chart--compact .about-skills-chart {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 220px;
    }

    .about .about-second-row .about-highlight--skills-chart--compact .about-skills-chart svg {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: min(52vh, 400px);
        flex: 0 1 auto;
    }

    .about .about-content.about-content--highlights-only {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        padding-left: 10px;
        padding-right: 48px;
        min-height: 0;
        height: 100%;
    }

    .about .about-content--highlights-only .about-content-inner {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        max-width: none;
        width: 100%;
        min-height: 0;
    }

    .about .about-second-row .about-highlights-pair {
        flex: 1 1 auto;
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        margin-left: -10px;
        margin-right: -10px;
        min-height: 0;
    }

    .about .about-second-row .about-highlights-pair > [class*="col-"] {
        display: flex;
        flex-direction: column;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about .about-second-row .about-highlights-pair .about-highlight {
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .about .about-second-row .about-highlights-pair .about-highlight--langs .about-lang-list {
        flex: 1 1 auto;
    }

    .about .about-second-row .about-highlights-pair .about-highlight:not(.about-highlight--langs) .about-atouts-list {
        flex: 1 1 auto;
        margin-top: 0;
    }
}

.about .about-second-row .about-atouts-list {
    margin: 0;
    padding: 0;
}

.about .about-second-row .about-atouts-list li {
    display: block;
    font-size: 15px;
    line-height: 1.55;
    color: #666666;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #e8ecf1;
}

.about .about-second-row .about-atouts-list li:first-child {
    padding-top: 0;
}

.about .about-second-row .about-atouts-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.about .about-second-row .about-lang-list .about-lang-item {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e8ecf1;
}

.about .about-second-row .about-lang-list .about-lang-item:first-child {
    padding-top: 0;
}

.about .about-second-row .about-lang-list .about-lang-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 991.98px) {
    .about .about-content.about-content--highlights-only {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }
}

.about .about-cta-bottom {
    margin-top: 8px;
}

.about .about-cta-bottom-inner {
    max-width: min(100%, 960px);
    margin-left: auto;
    margin-right: auto;
    padding: 20px 56px 0 48px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .about .about-cta-bottom-inner {
        padding: 20px 20px 0;
    }
}

.about .about-cta-bottom .about-cta {
    margin-top: 0;
}

.about .about-highlight {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 20px 18px;
    margin-bottom: 12px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
    .about .about-highlight {
        margin-bottom: 0;
        min-height: 168px;
    }

    .about .about-highlight--wide {
        min-height: auto;
    }
}

.about .about-highlight:hover {
    border-color: rgba(28, 37, 65, 0.35);
    box-shadow: 0 8px 28px rgba(28, 37, 65, 0.1);
}

.about .about-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(28, 37, 65, 0.12);
    color: #1c2541;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 12px;
}

.about .about-highlight-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1c2541;
    margin: 0 0 8px 0;
}

.about .about-highlight p {
    font-size: 14px;
    line-height: 1.55;
    color: #666666;
    margin: 0;
}

.about .about-highlight--langs {
    min-height: auto;
}

.about .about-lang-list {
    text-align: left;
}

.about .about-lang-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #414141;
    margin-bottom: 10px;
}

.about .about-lang-item:last-child {
    margin-bottom: 0;
}

.about .about-lang-name {
    flex: 0 0 auto;
    min-width: 5.5rem;
    font-weight: 600;
    color: #414141;
}

.about .about-lang-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #1c2541;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.about .about-lang-stars .fa-star,
.about .about-lang-stars .fas.fa-star,
.about .about-lang-stars .far.fa-star {
    color: #1c2541;
}

.about .about-lang-note {
    font-size: 13px;
    color: #666666;
    font-style: italic;
    margin-left: 4px;
}

@media (min-width: 768px) {
    .about .about-highlight--skills {
        min-height: auto;
    }

    .about .about-highlight--skills-chart--compact.about-highlight {
        min-height: auto;
    }
}

.about .about-highlight--skills-chart {
    padding: 20px 14px 22px 14px;
    overflow: visible;
}

@media (min-width: 576px) {
    .about .about-highlight--skills-chart:not(.about-highlight--skills-chart--compact) {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.about .about-highlight--skills-chart .about-highlight-title {
    margin-bottom: 14px;
}

.about .about-highlight--skills-chart--compact {
    padding: 16px 14px 18px;
    margin-bottom: 0;
}

.about .about-highlight--skills-chart--compact .about-highlight-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-bottom: 0;
}

.about .about-second-row .about-highlight--skills-chart--compact .about-highlight-head {
    margin-bottom: 10px;
}

.about .about-highlight--skills-chart--compact .about-highlight-title {
    font-size: 12px;
    margin-bottom: 0;
    letter-spacing: 0.07em;
}

.about .about-highlight--skills-chart--compact .about-skills-chart svg {
    max-height: 280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about .about-skills-chart {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
    box-sizing: border-box;
}

.about .about-skills-chart svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
}

.about .about-skills-chart-labels text {
    font-family: "Montserrat", sans-serif;
}

.about .about-skills-panel {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    padding: 24px 26px 22px;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.about .about-skills-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f4;
}

.about .about-skills-title {
    font-size: 18px;
    font-weight: 700;
    color: #414141;
    margin: 0 0 8px 0;
}

.about .about-skills-legend {
    font-size: 13px;
    line-height: 1.55;
    color: #888888;
    margin: 0;
}

.about .about-skills-grid.skills {
    margin-bottom: 0;
}

.about .about-skill-item {
    margin-bottom: 0;
}

.about .about-skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px 0;
}

@media (min-width: 992px) {
    .about .about-skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 40px;
    }
}

.about .about-cta {
    margin-top: 4px;
}

.about .about-cta .btn {
    padding-left: 28px;
    padding-right: 28px;
}

.about .about-cta .cv-pdf-download:active,
.about .about-cta .cv-pdf-download:focus-visible,
.about .about-cta .cv-pdf-download.is-pressed {
    color: #ffffff;
    background: #1c2541;
    border-color: #1c2541;
    box-shadow: inset 0 0 0 50px #1c2541;
}

.about .about-text p {
    font-size: 16px;
}

.about .skills {
    margin-bottom: 30px;
}

.about .about-skills-panel .skills {
    margin-bottom: 0;
}

.about .skill-name {
    margin-top: 15px;
}

.about .about-skill-item .skill-name {
    margin-top: 0;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .skill-name-single p {
    width: 100%;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: #dddddd;
}

.about .about-skills-panel .progress {
    height: 8px;
    border-radius: 6px;
    background: #e8ecf1;
}

.about .progress .progress-bar {
    width: 0px;
    background: #1c2541;
    border-radius: 10px;
    transition: 2s;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content {
        padding: 45px 20px 0 20px;
    }

    .about .about-content-inner {
        max-width: none;
        margin-left: 0;
    }

    .about .about-bio {
        padding: 22px 20px;
    }
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #1c2541;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #1c2541;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 11px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 11px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #1c2541;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #dddddd;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

.experience .timeline .timeline-logo {
    max-height: 52px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.experience .timeline .timeline-logo--sandvik {
    max-height: 40px;
    max-width: 118px;
}

.experience .timeline .timeline-logo--pays-gex {
    max-height: 68px;
    max-width: 200px;
}

.experience .timeline .timeline-text ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 15px;
}

.experience .timeline .timeline-text ul li {
    margin-bottom: 6px;
}

@media (max-width: 991.98px) {
    #experience .timeline-item {
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }

    .experience .timeline .timeline-text {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }

    .experience .timeline .timeline-logo--sandvik {
        max-height: 28px;
        max-width: 82px;
    }

    .experience .timeline .timeline-logo--pays-gex {
        max-height: 44px;
        max-width: 140px;
    }
}


/*******************************/
/********* Journey CSS *********/
/*******************************/
.journey {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.journey-intro {
    max-width: 980px;
    margin: -12px auto 0;
    padding: 0 24px;
}

.journey-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    text-align: center;
}

.journey-path {
    display: flex;
    justify-content: center;
    max-width: 980px;
    margin: 34px auto 34px;
    padding: 0 24px;
    gap: 0;
    list-style: none;
    counter-reset: journey-path;
}

.journey-path-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    padding: 40px 8px 0;
    text-align: center;
    counter-increment: journey-path;
}

.journey-path-item::after {
    position: absolute;
    content: "";
    top: 17px;
    right: -50%;
    left: 50%;
    z-index: 0;
    height: 2px;
    background: #1c2541;
}

.journey-path-item:last-child::after {
    display: none;
}

.journey-path-item::before {
    position: absolute;
    top: 3px;
    left: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    content: counter(journey-path);
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #1c2541;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #fecb4b;
    box-shadow: 0 0 0 2px #1c2541;
}

.journey-path-place {
    display: block;
    min-height: 42px;
    padding: 12px 8px 10px;
    padding-top: 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    background: #1c2541;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(28, 37, 65, 0.12);
}

.journey-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 100%;
    padding: 20px 18px 18px;
    border: 1px solid #e5ebf2;
    border-radius: 0;
    background: #ffffff;
    box-shadow: inset 0 3px 0 #1c2541, 0 6px 22px rgba(28, 37, 65, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    counter-increment: journey-step;
}

.journey-step:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 37, 65, 0.25);
    box-shadow: inset 0 3px 0 #1c2541, 0 10px 28px rgba(28, 37, 65, 0.12);
}

.journey-steps {
    counter-reset: journey-step;
}

.journey-step-media {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    background: #ffffff;
    overflow: visible;
}

.journey-step-media::after {
    position: absolute;
    right: -8px;
    bottom: -8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    content: counter(journey-step);
    font-size: 10px;
    font-weight: 700;
    color: #1c2541;
    background: #fecb4b;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(28, 37, 65, 0.25);
}

.journey-step-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.journey-step-logo--gex {
    max-width: 46px;
    max-height: 46px;
}

.journey-step-body {
    min-width: 0;
}

.journey-step-org {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.journey-step-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #1c2541;
}

.journey-step-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
}

.journey-conclusion {
    max-width: 980px;
    margin: 32px auto 0;
    padding: 28px 30px;
    border-left: 4px solid #fecb4b;
    background: #1c2541;
    box-shadow: 0 8px 30px rgba(28, 37, 65, 0.16);
}

.journey-conclusion p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.journey-method {
    margin-top: 16px !important;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 767.98px) {
    .journey-path {
        padding: 0 10px;
    }

    .journey-steps {
        gap: 28px;
    }

    .journey-path-item {
        padding: 36px 2px 0;
    }

    .journey-path-item::before {
        top: 5px;
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .journey-path-item::after {
        top: 17px;
    }

    .journey-path-place {
        min-height: 44px;
        padding: 8px 4px 7px;
        font-size: 10px;
        line-height: 1.3;
        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .journey-path {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .journey-path-item {
        padding: 34px 4px 0;
    }

    .journey-path-item::after {
        display: none;
    }

    .journey-path-place {
        min-height: 48px;
        padding: 8px 6px 7px;
        font-size: 11px;
    }

    .journey-intro,
    .journey-steps {
        padding-left: 14px;
        padding-right: 14px;
    }

    .journey-intro p {
        font-size: 15px;
    }

    .journey-conclusion {
        padding: 18px 16px;
    }

    .journey-step {
        padding: 14px;
        gap: 12px;
    }

    .journey-step-media {
        width: 46px;
        height: 46px;
    }

    .journey-step-logo {
        max-width: 32px;
        max-height: 32px;
    }
}


/*******************************/
/******** Supported CSS ********/
/*******************************/
.supported {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.supported-card {
    max-width: 860px;
    margin: -12px auto 0;
    border: 1px solid #e5ebf2;
    border-top: 4px solid #1c2541;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(28, 37, 65, 0.07);
}

.supported-card-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 24px 28px 18px;
    border-bottom: 1px solid #e5ebf2;
}

.supported-card-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid #e5ebf2;
    border-radius: 0;
    background: #ffffff;
    overflow: hidden;
}

.supported-card-logo {
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
}

.supported-card-identity {
    min-width: 0;
}

.supported-card-name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1c2541;
}

.supported-card-full {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}

.supported-card-content {
    padding: 24px 28px 26px;
}

.supported-card-mission {
    margin: 0 0 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5ebf2;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

.supported-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.supported-card-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.supported-card-list li::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 1px;
    width: 12px;
    height: 12px;
    background: #fecb4b;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 767.98px) {
    .supported-card-brand {
        padding: 24px;
    }

    .supported-card-icon {
        width: 56px;
        height: 56px;
    }

    .supported-card-logo {
        max-width: 46px;
        max-height: 46px;
    }

    .supported-card-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .supported-card-brand {
        padding: 20px 16px;
        gap: 14px;
    }

    .supported-card-name {
        font-size: 22px;
    }

    .supported-card-full {
        font-size: 12px;
    }

    .supported-card-content {
        padding: 22px 16px 20px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.service .service-item:hover {
    box-shadow: inset 800px 0 0 0 #1c2541;
}

.service .service-icon {
    position: relative;
    width: 150px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1c2541;
    background: #ffffff;
}

.service .service-icon i {
    position: relative;
    font-size: 60px;
    color: #1c2541;
    transition: .3s;
}

.service .service-item:hover i {
    font-size: 75px;
}

.service .service-text {
    position: relative;
    width: calc(100% - 120px);
    padding: 0 30px;
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.service .service-text p {
    margin: 0;
    font-size: 16px;
    transition: 1s;
}

.service .service-item:hover .service-text h3,
.service .service-item:hover .service-text p {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .service .service-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .service .service-text p {
        font-size: 14px;
    }
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 40px 0;
}

.portfolio .section-header h2 span {
    color: #1c2541;
}

.portfolio-achievements {
    max-width: 980px;
    margin: -10px auto 30px;
    padding: 24px 24px 20px;
    border: 1px solid #e5ebf2;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
    box-shadow: 0 8px 30px rgba(28, 37, 65, 0.08);
}

.portfolio-achievements-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

/* Même lignée horizontale que le h3 dans .portfolio-achievements (980px + padding 24px). */
.portfolio-gallery-heading-wrap {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.portfolio-gallery-title {
    margin-top: 34px;
    margin-bottom: 22px;
}

.portfolio-achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.portfolio-achievement-item {
    background: #ffffff;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    padding: 14px 14px 12px;
}

.portfolio-achievement-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 7px 0;
}

.portfolio-achievement-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    padding-right: 14px;
    margin-right: 2px;
    border-right: 1px solid rgba(28, 37, 65, 0.2);
    box-sizing: content-box;
}

.portfolio-achievement-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1c2541;
}

@media (max-width: 575.98px) {
    .portfolio-achievement-logo {
        width: 38px;
        height: 38px;
    }
}

.portfolio-achievement-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.portfolio-achievement-meta {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.portfolio-achievement-list {
    margin: 0;
    padding-left: 18px;
}

.portfolio-achievement-list li {
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 6px;
}

.portfolio-achievement-list li:last-child {
    margin-bottom: 0;
}

.portfolio-achievements-figure,
.portfolio-achievement-figure {
    margin: 16px 0 0;
}

.portfolio-achievements-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #d9e2ec;
    box-shadow: 0 8px 24px rgba(28, 37, 65, 0.12);
}

.portfolio-achievement-figure {
    text-align: center;
}

.portfolio-achievement-figure__link {
    position: relative;
    display: inline-block;
    max-width: min(100%, 640px);
    vertical-align: top;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d9e2ec;
    box-shadow: 0 8px 24px rgba(28, 37, 65, 0.12);
    color: inherit;
    text-decoration: none;
    cursor: zoom-in;
    transition: box-shadow 0.25s ease;
}

.portfolio-achievement-figure__link:hover,
.portfolio-achievement-figure__link:focus {
    outline: none;
}

.portfolio-achievement-figure__link:hover img,
.portfolio-achievement-figure__link:focus-visible img {
    transform: scale(1.04);
}

.portfolio-achievement-figure__link:focus-visible {
    box-shadow: 0 0 0 3px rgba(28, 37, 65, 0.45);
}

.portfolio-achievement-figure__loupe {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: inherit;
    background: rgba(28, 37, 65, 0.42);
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.portfolio-achievement-figure__loupe i {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.portfolio-achievement-figure__link:hover .portfolio-achievement-figure__loupe,
.portfolio-achievement-figure__link:focus-visible .portfolio-achievement-figure__loupe {
    opacity: 1;
}

/* Graphique GKS : un peu plus petit que la largeur pleine carte */
.portfolio-achievement-figure__link img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(40vh, 340px);
    object-fit: contain;
    transition: transform 0.28s ease;
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .portfolio-achievement-figure__link img {
        max-height: min(38vh, 260px);
    }

    .portfolio-achievement-figure__loupe {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-achievement-figure__link:hover img,
    .portfolio-achievement-figure__link:focus-visible img {
        transform: none;
    }

    .portfolio-achievement-figure__loupe,
    .portfolio-achievement-figure__link img {
        transition: none;
    }
}

.portfolio-filter-chips {
    list-style: none;
    margin: -8px 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.portfolio-filter-chips li {
    margin: 0;
    padding: 0;
}

.portfolio-filter-btn {
    cursor: pointer;
    margin: 0;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.35;
    color: #ffffff;
    background: #1c2541;
    border: 2px solid #1c2541;
    border-radius: 0;
    box-shadow: inset 0 0 0 50px #1c2541;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn:focus {
    color: #1c2541;
    background: transparent;
    box-shadow: inset 0 0 0 0 #1c2541;
    border-color: #1c2541;
    outline: none;
}

.portfolio-filter-btn.filter-active {
    color: #1c2541;
    background: #ffffff;
    box-shadow: none;
    border-color: #1c2541;
}

.portfolio-filter-btn:focus-visible {
    outline: 2px solid #1c2541;
    outline-offset: 2px;
}

.portfolio-carousel-wrap {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 52px 28px;
}

.portfolio .portfolio-carousel {
    position: relative;
}

.portfolio .portfolio-carousel .owl-stage-outer {
    padding: 12px 0 8px;
}

.portfolio-slide {
    max-width: 860px;
    margin: 0 auto;
}

.portfolio-embed--youtube {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
    box-shadow: 0 12px 40px rgba(28, 37, 65, 0.18);
}

.portfolio-embed--youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.portfolio-slide-photo {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(28, 37, 65, 0.14);
    background: #e2e8f0;
}

.portfolio-slide-photo__link {
    position: relative;
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    cursor: zoom-in;
    border-radius: inherit;
    transition: box-shadow 0.25s ease;
    overflow: hidden;
}

.portfolio-slide-photo__link:hover,
.portfolio-slide-photo__link:focus {
    outline: none;
}

.portfolio-slide-photo__link:hover img,
.portfolio-slide-photo__link:focus-visible img {
    transform: scale(1.04);
}

.portfolio-slide-photo__link:focus-visible {
    box-shadow: 0 0 0 3px rgba(28, 37, 65, 0.45);
}

.portfolio-slide-photo__loupe {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border-radius: inherit;
    background: rgba(28, 37, 65, 0.42);
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.portfolio-slide-photo__loupe i {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.portfolio-slide-photo__link:hover .portfolio-slide-photo__loupe,
.portfolio-slide-photo__link:focus-visible .portfolio-slide-photo__loupe {
    opacity: 1;
}

.portfolio-slide-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.28s ease;
    pointer-events: none;
}

.portfolio-slide-caption {
    margin-top: 18px;
    padding: 0 4px;
    text-align: center;
}

.portfolio-slide-caption h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.portfolio-slide-meta {
    margin: 0 0 10px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.portfolio-slide-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1c2541;
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 37, 65, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.portfolio-slide-link:hover,
.portfolio-slide-link:focus {
    color: #1a3555;
    border-bottom-color: rgba(26, 53, 85, 0.55);
}

.portfolio .portfolio-carousel .owl-nav {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    pointer-events: none;
    z-index: 20;
}

.portfolio .portfolio-carousel .owl-nav .owl-prev,
.portfolio .portfolio-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #1c2541;
    background: #ffffff;
    color: #1c2541;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(28, 37, 65, 0.15);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.portfolio .portfolio-carousel .owl-nav .owl-prev i,
.portfolio .portfolio-carousel .owl-nav .owl-next i {
    color: #1c2541;
    pointer-events: none;
}

.portfolio .portfolio-carousel .owl-nav .owl-prev:hover,
.portfolio .portfolio-carousel .owl-nav .owl-next:hover,
.portfolio .portfolio-carousel .owl-nav .owl-prev:focus,
.portfolio .portfolio-carousel .owl-nav .owl-next:focus {
    background: #1c2541;
    color: #ffffff;
    outline: none;
}

.portfolio .portfolio-carousel .owl-nav .owl-prev:hover i,
.portfolio .portfolio-carousel .owl-nav .owl-next:hover i,
.portfolio .portfolio-carousel .owl-nav .owl-prev:focus i,
.portfolio .portfolio-carousel .owl-nav .owl-next:focus i {
    color: #ffffff;
}

.portfolio .portfolio-carousel .owl-nav .owl-prev:focus-visible,
.portfolio .portfolio-carousel .owl-nav .owl-next:focus-visible {
    outline: 2px solid #1c2541;
    outline-offset: 3px;
}

/* Indicateurs (points) sous le carrousel réalisations */
.portfolio .portfolio-carousel .owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 12px;
    margin: 18px 0 0;
    padding: 12px 8px 4px;
    text-align: center;
    line-height: 0;
}

.portfolio .portfolio-carousel .owl-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 4px;
    cursor: pointer;
    background: transparent;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.portfolio .portfolio-carousel .owl-dot span {
    display: block;
    width: 11px;
    height: 11px;
    margin: 0;
    border-radius: 50%;
    background: #cbd5e1;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio .portfolio-carousel .owl-dot:hover span,
.portfolio .portfolio-carousel .owl-dot:focus span {
    background: #94a3b8;
}

.portfolio .portfolio-carousel .owl-dot.active span {
    background: #1c2541;
    transform: scale(1.35);
    box-shadow: 0 0 0 3px rgba(28, 37, 65, 0.22);
}

.portfolio .portfolio-carousel .owl-dot:focus {
    outline: none;
}

.portfolio .portfolio-carousel .owl-dot:focus-visible {
    outline: 2px solid #1c2541;
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .portfolio-achievements {
        padding: 18px 14px 14px;
        margin-bottom: 22px;
    }

    .portfolio-gallery-heading-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .portfolio-achievements-title {
        font-size: 18px;
    }

    .portfolio-carousel-wrap {
        padding: 0 40px 8px;
    }

    .portfolio .portfolio-carousel .owl-nav {
        top: 32%;
    }

    .portfolio .portfolio-carousel .owl-nav .owl-prev,
    .portfolio .portfolio-carousel .owl-nav .owl-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .portfolio-slide-caption h3 {
        font-size: 17px;
    }

    .portfolio-slide-photo {
        height: 260px;
    }

    .portfolio-slide-photo__loupe {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .portfolio-slide-photo__link:hover img,
    .portfolio-slide-photo__link:focus-visible img {
        transform: none;
    }

    .portfolio-slide-photo__loupe,
    .portfolio-slide-photo img {
        transition: none;
    }
}


/*******************************/
/********* Banner CSS **********/
/*******************************/
.banner {
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 90px 0;
    background: #1c2541;
}

.banner .container {
    max-width: 750px;
    text-align: center;
}

.banner .section-header {
    margin-bottom: 20px;
}

.banner .section-header p {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.banner .section-header p::before {
    background: rgba(255, 255, 255, 0.4);
}

.banner .section-header p::after {
    display: none;
}

.banner .section-header h2 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.banner .section-header h2 span {
    color: #fecb4b;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.banner .banner-text p {
    font-size: 18px;
    color: #ffffff;
}

.banner .banner-text .btn {
    margin-top: 15px;
    color: #1c2541;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.banner .banner-text .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.team .team-img {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    transition: .5s;
}

.team .team-text {
    position: relative;
    width: 50%;
    padding: 0 30px;
}

.team .team-text h2 {
    color: #1c2541;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 1s;
}

.team .team-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 1s;
}

.team .team-text p {
    margin-bottom: 20px;
    transition: 1s;
}

.team .team-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .team-social a.btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    margin-right: 5px;
}

.team .team-item:hover {
    box-shadow: inset 800px 0 0 0 #1c2541;
}

.team .team-item:hover .team-img img {
    transform: scale(1.2);
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text h4,
.team .team-item:hover .team-text p {
    color: #ffffff;
}

.team .team-item:hover .team-social a.btn {
    background: #ffffff;
}

.team .team-item:hover .team-social a.btn:hover {
    border-color: #ffffff;
}

@media(max-width: 575.98px) {
    .team .team-text {
        padding: 0 15px;
    }
    
    .team .team-text h2 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .team .team-text h4 {
        margin-bottom: 5px;
    }

    .team .team-text p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
}

/* Formations & diplômes — chronologies verticales (style CV timeline) */
.team.team-formation-merge {
    padding-bottom: 55px;
}

.team .formation-merge-row {
    margin-top: 8px;
}

.team .formation-timeline-column {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.team .formation-timeline-column-title {
    display: table;
    margin: 0 auto 32px;
    padding: 0 4px 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1f1f1f;
    border-bottom: 3px solid #1c2541;
    text-align: center;
}

.team .formation-timeline {
    --ft-year: 68px;
    --ft-gap: 14px;
    --ft-rail: 22px;
    --ft-accent: #1c2541;
    position: relative;
    margin: 0;
    padding: 8px 0 4px;
}

.team .formation-timeline::before {
    content: "";
    position: absolute;
    left: calc(var(--ft-year) + var(--ft-gap) + var(--ft-rail) / 2 - 1px);
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg, var(--ft-accent) 0%, rgba(28, 37, 65, 0.35) 100%);
}

.team .formation-timeline-entry {
    display: grid;
    grid-template-columns: var(--ft-year) var(--ft-rail) minmax(0, 1fr);
    column-gap: var(--ft-gap);
    align-items: start;
    margin-bottom: 22px;
}

.team .formation-timeline-entry:last-child {
    margin-bottom: 0;
}

.team .formation-timeline-year {
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--ft-accent);
    line-height: 1.3;
    padding-top: 14px;
}

.team .formation-timeline-year--range {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    line-height: 1.2;
}

.team .formation-timeline-year-sep {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.75;
}

.team .formation-timeline-marker {
    width: 12px;
    height: 12px;
    border: 2px solid var(--ft-accent);
    border-radius: 50%;
    background: #ffffff;
    justify-self: center;
    margin-top: 16px;
    position: relative;
    z-index: 1;
    box-sizing: content-box;
}

.team .formation-timeline-card {
    background: #ffffff;
    padding: 14px 18px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(28, 37, 65, 0.08);
    position: relative;
    transform: translateY(0);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease;
}

.team .formation-timeline-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 34px rgba(28, 37, 65, 0.14),
        0 6px 14px rgba(0, 0, 0, 0.08);
    border-color: rgba(28, 37, 65, 0.18);
}

.team .formation-timeline-card::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 28px;
    border: 7px solid transparent;
    border-right-color: rgba(28, 37, 65, 0.06);
    margin-right: -1px;
    transition: border-right-color 0.28s ease;
}

.team .formation-timeline-card:hover::before {
    border-right-color: rgba(28, 37, 65, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .team .formation-timeline-card {
        transition: none;
    }

    .team .formation-timeline-card:hover {
        transform: none;
    }

    .team .formation-timeline-card::before {
        transition: none;
    }
}

.team .formation-timeline-card-inner {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
}

.team .formation-timeline-card-inner--nologo {
    grid-template-columns: minmax(0, 1fr);
}

.team .formation-timeline-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    background: none;
    border: none;
    box-shadow: none;
}

.team .formation-timeline-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    object-position: center;
}

.team .formation-timeline-card-main {
    min-width: 0;
    padding-top: 1px;
}

.team .formation-timeline-card-main .formation-timeline-card-title {
    margin: 0 0 6px;
}

.team .formation-timeline-card-main .formation-timeline-org {
    margin: 0;
}

.team .formation-timeline-card-main .formation-timeline-note {
    margin: 10px 0 0;
}

.team .formation-timeline-card-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: none;
}

.team .formation-timeline-org {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1c2541;
    opacity: 0.95;
}

.team .formation-timeline-note {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #666666;
}

@media (max-width: 991.98px) {
    .team .formation-timeline-column {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .team .formation-timeline {
        --ft-year: 44px;
        --ft-gap: 10px;
        --ft-rail: 18px;
    }

    .team .formation-timeline::before {
        top: 14px;
        bottom: 14px;
    }

    .team .formation-timeline-year {
        font-size: 13px;
        padding-top: 12px;
    }

    .team .formation-timeline-marker {
        margin-top: 14px;
        width: 10px;
        height: 10px;
    }

    .team .formation-timeline-card {
        padding: 12px 14px 14px;
    }

    .team .formation-timeline-card::before {
        top: 22px;
        border-width: 6px;
    }

    .team .formation-timeline-card-inner {
        grid-template-columns: 64px minmax(0, 1fr);
        column-gap: 12px;
    }

    .team .formation-timeline-card-inner--nologo {
        grid-template-columns: minmax(0, 1fr);
    }

    .team .formation-timeline-logo-slot {
        width: 64px;
        height: 64px;
        padding: 0;
        border-radius: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .team .formation-timeline-logo {
        width: 44px;
        height: 44px;
    }

    .team .formation-timeline-card-title {
        font-size: 14px;
    }

    .team .formation-timeline-org {
        font-size: 12px;
    }

    .team .formation-timeline-note {
        font-size: 12px;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    background: #1c2541;
}

.testimonial .container {
    max-width: 640px;
}

.testimonial .section-header {
    margin-bottom: 28px;
}

.testimonial .section-header p {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
}

.testimonial .section-header p::before,
.testimonial .section-header p::after {
    background: rgba(255, 255, 255, 0.4);
}

.testimonial .section-header h2 {
    color: #ffffff;
}

.testimonial .testimonial-icon {
    margin-bottom: 28px;
    text-align: center;
}

.testimonial .testimonial-icon i {
    font-size: 42px;
    color: #ffffff;
}

.testimonial .testimonials-carousel {
    position: relative;
    padding-left: 48px;
    padding-right: 48px;
}

.testimonial .testimonials-carousel .owl-stage-outer {
    padding: 8px 0 20px;
}

.testimonial .testimonials-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 50;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev,
.testimonial .testimonials-carousel .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: #ffffff;
    color: #1c2541;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev i,
.testimonial .testimonials-carousel .owl-nav .owl-next i {
    color: #1c2541;
    pointer-events: none;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonials-carousel .owl-nav .owl-next:hover,
.testimonial .testimonials-carousel .owl-nav .owl-prev:focus,
.testimonial .testimonials-carousel .owl-nav .owl-next:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #1a3555;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.16);
    outline: none;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonials-carousel .owl-nav .owl-next:hover i,
.testimonial .testimonials-carousel .owl-nav .owl-prev:focus i,
.testimonial .testimonials-carousel .owl-nav .owl-next:focus i {
    color: #1a3555;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev:focus-visible,
.testimonial .testimonials-carousel .owl-nav .owl-next:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.testimonial .testimonials-carousel .owl-nav .owl-prev:active,
.testimonial .testimonials-carousel .owl-nav .owl-next:active {
    transform: scale(0.96);
}

.testimonial .testimonials-carousel .owl-nav .owl-prev.disabled,
.testimonial .testimonials-carousel .owl-nav .owl-next.disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 auto;
    padding: 0 8px;
    text-align: center;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    padding: 28px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
    border-bottom: 1px solid rgba(28, 37, 65, 0.1);
}

.testimonial-brand img {
    display: block;
    max-width: min(240px, 88vw);
    max-height: 96px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    filter: none;
}

.testimonial-body {
    padding: 26px 28px 32px;
}

.testimonial-lead {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    font-style: italic;
    color: #5a5a5a;
}

.testimonial-name {
    margin: 0 0 6px;
    color: #1c2541;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.testimonial-role {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: none;
    letter-spacing: 0.02em;
}

.testimonial-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    line-height: 1.55;
    color: #444444;
}

.testimonial-contact .testimonial-email {
    color: #1c2541;
    font-weight: 600;
    word-break: break-word;
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 37, 65, 0.25);
    padding-bottom: 5px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.testimonial-contact .testimonial-email:hover,
.testimonial-contact .testimonial-email:focus {
    color: #1a3555;
    border-bottom-color: rgba(26, 53, 85, 0.45);
}

.testimonial-contact .testimonial-phone {
    display: block;
    font-weight: 500;
    color: #555555;
    white-space: normal;
}

.testimonial-phone-sep {
    display: inline-block;
    margin: 0 0.55em;
    font-weight: 500;
    color: #555555;
}

@media (max-width: 575.98px) {
    .testimonial {
        padding: 70px 0;
    }

    .testimonial-brand {
        min-height: 112px;
        padding: 22px 20px;
    }

    .testimonial-brand img {
        max-height: 80px;
    }

    .testimonial-body {
        padding: 22px 18px 26px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial .testimonials-carousel {
        padding-left: 36px;
        padding-right: 36px;
    }

    .testimonial .testimonials-carousel .owl-nav .owl-prev,
    .testimonial .testimonials-carousel .owl-nav .owl-next {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .testimonial-contact .testimonial-phone {
        white-space: nowrap;
        font-size: 12px;
    }

    .testimonial-contact .testimonial-phone .testimonial-phone-sep {
        margin: 0 0.35em;
    }
}

.testimonial .owl-dots {
    margin-top: 8px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.testimonial .owl-dot.active {
    background: #ffffff;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #1c2541;
}

.contact .contact-heading-block {
    max-width: 750px;
    margin: 0 auto;
    padding: 55px 15px 36px;
    text-align: center;
}

.contact-layout-section {
    padding: 48px 0 70px;
}

.contact-layout-header {
    margin-bottom: 32px;
}

.contact-layout-header p {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact-layout-header p::before {
    background: rgba(255, 255, 255, 0.4);
}

.contact-layout-header p::after {
    display: none;
}

.contact-layout-header h2 {
    margin: 8px 0 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-layout-header h2 span {
    color: #fecb4b;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.contact-heading-block--split {
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.contact-layout__col-content {
    display: flex;
    align-items: center;
}

.contact-heading-block--split .contact-heading-text {
    margin: 0;
}

.contact-heading-block--split .contact-heading-text p {
    max-width: none;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
}

.contact-linkedin-action {
    margin-top: 28px;
}

.contact-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 18px 6px 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    color: #1c2541;
    background: #fecb4b;
    border: 2px solid #fecb4b;
    border-radius: 0;
    box-shadow: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.contact-linkedin-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 0 !important;
    font-size: 15px;
    color: #fecb4b;
    background: #1c2541;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-linkedin-btn:hover,
.contact-linkedin-btn:focus {
    color: #ffffff;
    background: #1c2541;
    border-color: #fecb4b;
    box-shadow: none;
    transform: translateY(-1px);
}

.contact-linkedin-btn:hover i,
.contact-linkedin-btn:focus i {
    color: #1c2541;
    background: #fecb4b;
}

@media (min-width: 992px) {
    .contact-layout-section .contact-form-section__col-visual {
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: stretch;
    }

    .contact-layout__col-content {
        align-items: flex-start;
        padding-top: 8px;
    }

    .contact-heading-block--split {
        width: 100%;
        padding: 8px 8px 24px 36px;
        margin-top: 0;
    }

    .contact-layout-section .contact-form-visual.contact-form-visual--layout {
        position: relative;
        display: block;
        flex: 1 1 auto;
        align-self: stretch;
        width: 100%;
        min-height: 480px;
        max-height: min(68vh, 580px);
        margin-right: 8px;
        padding: 0;
        overflow: hidden;
        border-radius: 16px;
    }

    .contact-layout-section .contact-form-visual.contact-form-visual--layout .contact-form-visual__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        border-radius: 16px;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 991.98px) {
    .contact-layout-header h2 span {
        font-size: 34px;
    }

    .contact-layout__col-content {
        align-items: stretch;
    }

    .contact-heading-block--split {
        padding: 20px 0 0;
        text-align: center;
    }

    .contact-heading-block--split .contact-heading-text p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
        max-width: 560px;
    }

    .contact-linkedin-action {
        text-align: center;
    }

    .contact-linkedin-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-layout-section .contact-form-visual--layout {
        max-width: 420px;
        margin: 0 auto;
    }
}

.contact .contact-heading-block .section-header {
    margin-bottom: 20px;
}

.contact .contact-heading-block .section-header p {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.contact .contact-heading-block .section-header p::before {
    background: rgba(255, 255, 255, 0.4);
}

.contact .contact-heading-block .section-header p::after {
    display: none;
}

.contact .contact-heading-block .section-header h2 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact .contact-heading-block .section-header h2 span {
    color: #fecb4b;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.contact .contact-heading-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767.98px) {
    .contact .contact-heading-block .section-header h2 span {
        font-size: 34px;
    }

    .contact .contact-heading-text p {
        font-size: 16px;
    }
}

.contact .contact-form-section {
    padding: 8px 0 80px;
}

/* Image à gauche : même hauteur que la colonne formulaire (stretch sur la row) */
.contact-form-section__row {
    flex-direction: row;
}

.contact-form-section__col-visual {
    display: flex;
    flex-direction: column;
    min-height: 1px;
}

.contact-form-visual {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 16px;
}

/* Pas de .img-fluid : il force height:auto et empêche de remplir la cellule */

.contact-form-visual__img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Image + formulaire côte à côte uniquement à partir du breakpoint lg (évite colonnes étroites en tablette) */
@media (min-width: 992px) {
    /* Même décalage vertical que .contact .contact-form pour aligner avec le panneau blanc */
    .contact-form-section__col-visual {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    /* flex-basis 0 : la colonne image prend toute la hauteur utile comme le panneau à droite */
    .contact-form-visual {
        position: relative;
        flex: 1 1 0;
        width: 100%;
        min-height: 0;
        margin-right: 8px;
        overflow: hidden;
        border-radius: 16px;
    }

    /* Remplit tout le cadre (largeur + hauteur) — éviter top/right/bottom/left + width/height en conflit */
    .contact .contact-form-visual__img {
        position: absolute;
        left: 0;
        top: 8%;
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 16px;
        object-fit: cover;
        object-position: center 12%;
    }
}

.contact .contact-form {
    position: relative;
    padding: 32px 0 24px;
    background: transparent;
}

.contact-form-panel {
    max-width: 100%;
    padding: 28px 28px 32px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(28, 37, 65, 0.08);
}

.contact-form-panel__head {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(28, 37, 65, 0.1);
}

.contact-form-panel__title {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #1c2541;
    letter-spacing: 0.02em;
}

.contact-form-panel__lead {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.65;
    color: #5a6b7a;
}

.contact-form-panel__meta {
    margin: 0;
    font-size: 14px;
}

.contact-form-panel__link {
    color: #1c2541;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 37, 65, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-form-panel__link:hover,
.contact-form-panel__link:focus {
    color: #1a3555;
    border-bottom-color: rgba(26, 53, 85, 0.45);
}

.contact-form-panel__link--pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-form-panel__form .form-group {
    margin-bottom: 18px;
}

.contact-form-panel__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1c2541;
}

.contact .contact-form-panel__control.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
    color: #1e293b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact .contact-form-panel__control.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: #1c2541;
    box-shadow: 0 0 0 3px rgba(28, 37, 65, 0.15);
}

.contact .contact-form-panel__control.form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.contact-form-panel__control--area {
    min-height: 120px;
    resize: vertical;
}

.contact-form-panel__actions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.contact-form-panel__sent-feedback {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #166534;
    transition: opacity 0.4s ease, max-height 0.45s ease, margin-top 0.35s ease;
}

.contact-form-panel__sent-feedback.contact-form-panel__sent-feedback--visible {
    margin-top: 14px;
    max-height: 120px;
    opacity: 1;
}

.contact-form-panel__submit.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    background: #1c2541 !important;
    border: 2px solid #1c2541 !important;
    border-radius: 10px;
    box-shadow: none !important;
    margin-top: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-form-panel__submit.btn:hover {
    color: #ffffff !important;
    background: #1f3654 !important;
    border-color: #1f3654 !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

.contact-form-panel__submit.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(28, 37, 65, 0.35) !important;
}

.contact-form-panel__submit.contact-form-panel__submit--sent {
    color: #ffffff !important;
    background: #198754 !important;
    border-color: #198754 !important;
    transform: none;
}

.contact-form-panel__submit.contact-form-panel__submit--sent:hover {
    color: #ffffff !important;
    background: #157347 !important;
    border-color: #157347 !important;
    transform: none;
    box-shadow: none !important;
}

.contact-form-panel__submit.contact-form-panel__submit--sent:focus {
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.4) !important;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    font-style: italic;
    color: #5a6b7a;
}

/* Mobile + tablette (jusqu'à 991px) : image au-dessus, formulaire en dessous */
@media (max-width: 991.98px) {
    .contact-form-section__col-visual {
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .contact-form-visual {
        flex: 0 0 auto;
        position: static;
        overflow: visible;
        border-radius: 0;
        margin-right: 0;
        justify-content: center;
        padding: 0 0 8px;
    }

    .contact .contact-form-visual__img {
        position: static;
        width: 100%;
        max-width: min(100%, 380px);
        height: auto;
        margin: 0 auto;
        border-radius: 12px;
        object-fit: contain;
        object-position: center;
    }

    .contact .contact-form {
        padding: 12px 0 50px;
    }

    .contact-form-panel {
        padding: 22px 18px 26px;
    }
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
    transition: .5s;
}

.blog .blog-item:hover img {
    transform: scale(1.1);
}

.blog .blog-text {
    position: relative;
    padding: 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.blog .blog-text h2 {
    font-size: 25px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 8px 15px;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 13px;
}

.blog .blog-meta i {
    color: #414141;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    background: #1c2541;
}

.footer .container-fluid {
    padding: 60px 0 0 0;
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
}

.footer .footer-info h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.footer .footer-info h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.footer .footer-menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.footer .footer-menu p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    margin: 0;
}

.footer .footer-menu p:last-child {
    border: none;
}

.footer .footer-menu a {
    color: #e8f4fc;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer .footer-menu a:hover,
.footer .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.footer .footer-social {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 26px;
    width: 100%;
    max-width: 100%;
    margin: 22px auto 0;
    padding: 0;
    text-align: center;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer .footer-social a i {
    margin: 0;
    font-size: 22px;
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer .footer-social a:hover i,
.footer .footer-social a:focus i {
    color: #fecb4b;
}

.footer .footer-social a:focus {
    outline: none;
}

.footer .footer-social a:focus-visible {
    outline: 2px solid #fecb4b;
    outline-offset: 4px;
    border-radius: 4px;
}

.footer .copyright {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fecb4b;
    font-weight: 600;
}

.footer .copyright p a:hover {
    color: #ffe566;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .footer .footer-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        padding: 0 8px 6px;
        box-sizing: border-box;
    }

    .footer .footer-menu a {
        white-space: nowrap;
    }

    .footer .footer-menu p {
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer .footer-menu p {
        font-size: 14px;
        line-height: 1.2;
        padding: 0 10px;
    }
}
