:root {
    --primary-blue: #036;
    --accent-green: #009B4D;
    --light-gray: #F5F5F5;
    --white: #FFF;
    --dark-gray: #333
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray)
}

.break-text {
    overflow-wrap: break-word;
    word-break: break-all;
    white-space: normal
}

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

#map {
    height: 100%;
    width: 100%
}

.navbar {
    background: var(--primary-blue) !important;
    box-shadow: 0 2px 10px #0000001a;
    transition: all .3s ease;
    padding: .75rem 0
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: .25rem 0;
    transition: all .3s ease
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--accent-green) !important
}

.action {
    color: var(--accent-green) !important
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 100%;
    background-color: var(--accent-green);
    transition: none !important
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 2px 8px #00000026;
    transition: all .3s ease
}

.navbar-logo:hover {
    box-shadow: 0 4px 12px #00000040;
    transform: scale(1.05)
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #0000001a
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all .3s ease;
    position: relative;
    padding: .5rem .75rem
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important
}

.navbar-nav .nav-link.active-nav {
    color: var(--accent-green) !important;
    font-weight: 600;
    background-color: #28a74526;
    border-radius: 25px
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: all .3s ease;
    transform: translateX(-50%);
    border-radius: 1px
}

.navbar-nav .nav-link:hover::after {
    width: 80%
}

.navbar-nav .nav-link.active::after {
    width: 100% !important;
    height: 3px !important;
    background: var(--accent-green) !important
}

.navbar-toggler {
    border: 2px solid var(--white);
    padding: .25rem .5rem
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem #ffffff40
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0066ccb3, #004080b3);
    z-index: 2
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,0 L0,0 Z" fill="#ffffff1a"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 100px 0;
    text-align: left
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px #00000080
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: .95;
    text-shadow: 1px 1px 2px #00000080
}

.btn-primary-custom {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #06c6
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center
    }

    .hero-content {
        padding: 60px 20px;
        text-align: center
    }
}

.section-padding {
    padding: 80px 0
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    position: relative
}

.about-section {
    background: var(--light-gray)
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px #0000001a;
    transition: all .3s ease;
    border: none;
    height: 100%
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #00000026
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 20px #0000001a;
    border-left: 5px solid var(--accent-green)
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray)
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue)
}

.news-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px #0000001a;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px #00000026
}

.news-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa
}

.image-news {
    width: 100%;
    height: 100%;
    position: relative
}

.image-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.news-content {
    padding: 1.5rem
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: var(--dark-gray)
}

.news-date {
    color: #6c757d;
    font-size: .9rem;
    margin-bottom: 1rem
}

.news-content p {
    color: #6c757d;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    font-weight: 500
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.contact-section {
    background: var(--light-gray)
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px #0000001a
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem
}

.contact-info h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem
}

.contact-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    width: 30px;
    margin-right: 1rem
}

.contact-item strong {
    color: var(--primary-blue);
    margin-right: .5rem
}

.social-links {
    text-align: center;
    margin-top: 2rem
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all .3s ease
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px)
}

.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px
}

.footer h5 {
    color: var(--accent-green);
    margin-bottom: 20px;
    font-weight: 600
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color .3s ease
}

.footer a:hover {
    color: var(--accent-green)
}

.image-placeholder {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    min-height: 300px
}

.logo-placeholder {
    width: 120px;
    height: 80px;
    background: var(--light-gray);
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #666;
    font-size: .9rem
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .section-title {
        font-size: 2rem
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.2rem;
        gap: 8px
    }

    .navbar-logo {
        height: 50px;
        max-width: 100px
    }

    .brand-text {
        font-size: 1.3rem
    }

    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #ffffff1a
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: .75rem 0;
        text-align: center
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem
    }

    .navbar-logo {
        height: 45px;
        max-width: 100px
    }

    .brand-text {
        font-size: 1.2rem
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1000
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #0033664d
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px #25d36666;
    transition: all .3s ease;
    z-index: 1000;
    animation: pulse 2s infinite
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px #25d36699
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px #25d36666
    }

    50% {
        box-shadow: 0 4px 20px #25d366cc
    }

    100% {
        box-shadow: 0 4px 20px #25d36666
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.hero-banner2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden
}

.service-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/service-header.jpg)
}

.about-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/about-header2.jpg)
}

.formation-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/formation-header.jpg)
}

.inscrire-formation-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/inscrire-formation.jpg)
}

.emploi-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/emploi-header.jpg)
}

.recrutement-banner {
    background-image: linear-gradient(135deg, #007bffcc 0%, #004080cc 100%), url(../images/recrutement-header.jpg)
}

.hero-img {
    display: none
}

.hero-banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="#ffffff1a"/><circle cx="80" cy="40" r="1.5" fill="#ffffff1a"/><circle cx="40" cy="80" r="1" fill="#ffffff1a"/></svg>');
    opacity: .3;
    z-index: 1
}

.hero-content2 {
    position: relative;
    z-index: 2
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease .2s both
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    animation: fadeInUp 1s ease .4s both
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none
}

.breadcrumb-item.active {
    color: var(--accent-green)
}

.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease
}

.section.visible {
    opacity: 1;
    transform: translateY(0)
}

.section-alt {
    background-color: var(--light-gray)
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px #0000001a;
    transition: all .3s ease;
    height: 100%;
    border: none
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #00000026
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green), #00b354);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white)
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center
}

.service-description {
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 1.5rem
}

.btn-primary-custom {
    background: var(--accent-green);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block
}

.btn-primary-custom:hover {
    background: #00b354;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #009b4d4d
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block
}

.btn-outline-custom:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px)
}

.service-detail {
    margin-bottom: 4rem
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem
}

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

.service-list li {
    padding: .5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem
}

.service-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-green);
    position: absolute;
    left: 0
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    position: relative
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-green);
    z-index: 1
}

.process-step {
    background: var(--white);
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-green);
    position: relative;
    z-index: 2
}

.process-label {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
    width: 120px
}

.pricing-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px #0000001a
}

.form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all .3s ease
}

.form-control:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 .2rem #009b4d40
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    text-align: center
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-button {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

.cta-button:hover {
    background: #00b354;
    transform: translateY(-3px);
    color: var(--white)
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem
    }

    .section-title {
        font-size: 2rem
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem
    }

    .process-timeline::before {
        display: none
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .navbar-nav {
        text-align: center
    }
}

@media (max-width: 992px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 2rem
    }
}

.section {
    padding: 80px 0
}

.section-title {
    text-align: center;
    margin-bottom: 3rem
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-green)
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto
}

.company-presentation {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 20px
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px
}

.presentation-content h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.presentation-content p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8
}

.services-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500
}

.fade-in {
    opacity: 1;
    animation: fadeInUp .8s ease-out
}

.custom-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px #0000001a;
    transition: all .3s ease;
    border: none;
    height: 100%
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #00000026
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), #00b356);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white)
}

.timeline {
    position: relative;
    padding: 2rem 0
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-green);
    transform: translateX(-50%)
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    padding: 0 2rem
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    text-align: right;
    padding-right: 3rem
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    text-align: left;
    padding-left: 3rem
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: 0 2px 10px #0003
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: .5rem
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px #0000001a;
    transition: all .3s ease
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00000026
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue)
}

.stats-section {
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="#ffffff1a"/><circle cx="80" cy="20" r="2" fill="#ffffff1a"/><circle cx="50" cy="50" r="2" fill="#ffffff1a"/><circle cx="20" cy="80" r="2" fill="#ffffff1a"/><circle cx="80" cy="80" r="2" fill="#ffffff1a"/></svg>');
    opacity: .3
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    display: block
}

.stat-label {
    font-size: 1.1rem;
    margin-top: .5rem;
    opacity: .9
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px #0000001a;
    transition: all .3s ease
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00000026
}

.cert-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue)
}

.contact-section {
    padding: 100px 0 60px;
    background-color: var(--white)
}

.section-title-c {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue)
}

.image-placeholder h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: .5rem
}

.image-placeholder p {
    font-size: .9rem;
    margin: 0
}

.contact-c-form {
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 5px 20px #0000001a;
    border-radius: 10px
}

.fg-c {
    margin-bottom: 1.5rem
}

.form-label {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: .5rem
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: 1rem;
    transition: border-color .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 .2rem #009b4d40
}

.required {
    color: #dc3545
}

.btn-contact-c {
    background-color: var(--accent-green);
    color: var(--white);
    padding: .75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all .3s ease;
    width: 100%
}

.btn-contact-c:hover {
    background-color: #007a3d;
    transform: translateY(-2px);
    color: var(--white)
}

@media (max-width: 900px) {
    .timeline::before {
        left: 30px
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        text-align: left;
        padding-left: 4rem;
        padding-right: 1rem
    }

    .timeline-marker {
        left: 30px
    }

    .stat-number {
        font-size: 2.5rem
    }
}

.search-section {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 4px 20px #0000001a;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: 15px
}

.search-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px #0000001a
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: .75rem 1rem;
    font-weight: 500;
    transition: all .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 .2rem #009b4d40
}

.btn-search {
    background: var(--accent-green);
    border: none;
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-search:hover {
    background: #007a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #009b4d66
}

.btn-reset {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    padding: .75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-reset:hover {
    background: var(--text-muted);
    color: #fff
}

.content-section {
    padding: 4rem 0;
    background: var(--light-gray)
}

.filters-sidebar {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px #0000001a;
    height: fit-content;
    position: sticky;
    top: 100px
}

.filter-group {
    margin-bottom: 2rem
}

.filter-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.form-check-input:checked {
    background-color: var(--accent-green);
    border-color: var(--accent-green)
}

.results-count {
    background: var(--primary-blue);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600
}

.job-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px #0000001a;
    transition: all .3s ease;
    border-left: 4px solid var(--accent-green)
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00000026
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: .5rem
}

.job-company {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1rem
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text-muted)
}

.job-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem
}

.job-tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500
}

.contract-badge {
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600
}

.badge-cdi {
    background: #d4edda;
    color: #155724
}

.badge-cdd {
    background: #fff3cd;
    color: #856404
}

.badge-stage {
    background: #d1ecf1;
    color: #0c5460
}

.badge-freelance {
    background: #f8d7da;
    color: #721c24
}

.job-actions {
    display: flex;
    gap: 1rem
}

.btn-details {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: .5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-details:hover {
    background: var(--primary-blue);
    color: #fff
}

.btn-apply {
    background: var(--accent-green);
    border: none;
    color: #fff;
    padding: .5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all .3s ease
}

.btn-apply:hover {
    background: #007a3d
}

.pagination {
    justify-content: center;
    margin-top: 3rem
}

.page-link {
    border: none;
    color: var(--primary-blue);
    padding: .75rem 1rem;
    margin: 0 .25rem;
    border-radius: 10px;
    font-weight: 600
}

.page-link:hover {
    background: var(--accent-green);
    color: #fff
}

.page-item.active .page-link {
    background: var(--primary-blue);
    color: #fff
}

.why-choose-section {
    padding: 5rem 0;
    background: var(--white)
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: all .3s ease
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #0000001a
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: .5rem
}

.stat-label {
    font-weight: 600;
    color: var(--primary-blue)
}

.career-tips-section {
    padding: 5rem 0;
    background: var(--light-gray)
}

.tip-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all .3s ease;
    box-shadow: 0 5px 20px #0000001a
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px #00000026
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: #fff;
    padding: 5rem 0
}

.cta-card {
    background: #ffffff1a;
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid #fff3
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in-up {
    animation: fadeInUp .6s ease forwards
}

.modal-content {
    border-radius: 15px;
    border: none
}

.modal-header {
    background: var(--primary-blue);
    color: #fff;
    border-radius: 15px 15px 0 0
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .filters-sidebar {
        margin-bottom: 2rem;
        position: static
    }

    .job-meta {
        flex-direction: column;
        gap: .5rem
    }

    .job-actions {
        flex-direction: column
    }

    .search-card {
        padding: 1.5rem
    }
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px #0000001a
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 2rem
}

.form-section-r {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px #00000014;
    border-left: 4px solid var(--accent-green)
}

.section-title-r {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--accent-green);
    display: flex;
    align-items: center;
    gap: .5rem
}

.job-info-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden
}

.job-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffffff1a 0%, transparent 70%);
    pointer-events: none
}

.job-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: .75rem
}

.job-info-item i {
    color: var(--accent-green);
    width: 20px
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: .75rem;
    transition: all .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 .2rem #009b4d40
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: .5rem
}

.required {
    color: #dc3545
}

.upload-zone {
    border: 3px dashed #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    background: #fafafa;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.upload-zone:hover {
    border-color: var(--accent-green);
    background: #009b4d0d
}

.upload-zone.dragover {
    border-color: var(--accent-green);
    background: #009b4d1a;
    transform: scale(1.02)
}

.upload-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem
}

.file-preview {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.file-info {
    display: flex;
    align-items: center;
    gap: .5rem
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: .75rem 2rem;
    border-radius: 8px;
    transition: all .3s ease
}

.btn-primary:hover {
    background: #024;
    border-color: #024;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #0033664d
}

.btn-success {
    background: var(--accent-green);
    border-color: var(--accent-green);
    font-weight: 600;
    padding: .75rem 2rem;
    border-radius: 8px;
    transition: all .3s ease
}

.btn-success:hover {
    background: #007a3d;
    border-color: #007a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #009b4d4d
}

.progress-bar {
    background: var(--accent-green);
    transition: width .3s ease
}

.process-step-r {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px #0000001a
}

.process-step-r::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px #0000000d
}

.faq-question {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease
}

.faq-question:hover {
    background: #024
}

.faq-answer {
    padding: 1rem;
    display: none;
    color: var(--dark-gray)
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.radio-item {
    display: flex;
    align-items: center;
    gap: .5rem
}

.checkbox-group {
    margin-top: 1rem
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-bottom: .75rem
}

.error-message {
    color: #dc3545;
    font-size: .875rem;
    margin-top: .25rem;
    display: none
}

.success-message {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00b35a 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0
}

.reference-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-green)
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0
    }

    .form-section-r {
        padding: 1rem
    }

    .radio-group {
        flex-direction: column
    }

    .job-info-card {
        padding: 1.5rem
    }
}

.floating-progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px #0000001a;
    z-index: 1000;
    min-width: 200px
}

.language-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem
}

.level-select {
    min-width: 120px
}

.breadcrumb {
    background: #ffffff1a;
    padding: .5rem 1rem;
    border-radius: 25px;
    animation: fadeInUp 1s ease .4s both
}

.breadcrumb-item a {
    color: #fffc;
    text-decoration: none
}

.breadcrumb-item.active {
    color: var(--white)
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px #0000001a;
    transition: transform .3s ease, box-shadow .3s ease
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px #00000026
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: .75rem 1rem;
    font-size: .95rem;
    transition: border-color .3s ease, box-shadow .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 .2rem #1e3a8a40
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: .5rem
}

.required::after {
    content: " *";
    color: #dc2626
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #1e3a8a4d;
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-blue) 100%)
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: .75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: all .3s ease
}

.btn-outline-primary-custom:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #1e3a8a4d
}

.section-padding-iform {
    padding: 5rem 0
}

.section-title-iform {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem
}

.process-step-iform {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem
}

.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem
}

.file-upload {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: border-color .3s ease;
    cursor: pointer
}

.file-upload:hover {
    border-color: var(--primary-blue)
}

.file-upload.dragover {
    border-color: var(--accent-green);
    background-color: #10b9811a
}

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

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem
    }

    .section-title-iform {
        font-size: 2rem
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.2rem
    }
}

.invalid-feedback {
    display: block;
    font-size: .875rem;
    color: #dc2626;
    margin-top: .25rem
}

.is-invalid {
    border-color: #dc2626
}

.is-valid {
    border-color: var(--accent-green)
}

.form-progress {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    width: 0;
    transition: width .3s ease
}

.search-section {
    padding: 80px 0;
    background-color: var(--light-gray)
}

.search-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px #0000001a;
    margin-bottom: 50px
}

.search-card h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 600
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: border-color .3s ease
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 .2rem #009b4d40
}

.filter-section {
    margin-bottom: 50px
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 500;
    transition: all .3s ease
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white)
}

.formation-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px #0000001a;
    transition: all .3s ease;
    border: none
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00000026
}

.formation-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 15px
}

.badge-btp {
    background: #FF6B35;
    color: #fff
}

.badge-industrie {
    background: #4ECDC4;
    color: #fff
}

.badge-transport {
    background: #45B7D1;
    color: #fff
}

.badge-services {
    background: #96CEB4;
    color: #fff
}

.badge-securite {
    background: #FFEAA7;
    color: #333
}

.formation-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px
}

.formation-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: .9rem;
    color: var(--dark-gray)
}

.detail-item i {
    margin-right: 5px;
    color: var(--accent-green)
}

.formation-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5
}

.formation-actions {
    display: flex;
    gap: 10px
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all .3s ease
}

.btn-outline-primary-custom:hover {
    background: var(--primary-blue);
    color: var(--white)
}

.popular-section {
    padding: 80px 0;
    background: var(--white)
}

.popular-section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600
}

.advantages-section {
    padding: 80px 0;
    background: var(--light-gray)
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px #0000001a;
    transition: transform .3s ease
}

.advantage-item:hover {
    transform: translateY(-5px)
}

.advantage-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 20px
}

.testimonials-section {
    padding: 80px 0;
    background: var(--white)
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px #0000001a
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white)
}

.contact-section-format {
    padding: 80px 0;
    background: var(--light-gray)
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px #0000001a
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem
    }

    .search-card {
        padding: 25px
    }

    .formation-details {
        flex-direction: column;
        gap: 10px
    }

    .formation-actions {
        flex-direction: column
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px
}

.spinner-border {
    color: var(--accent-green)
}