@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;

}

main {
    background: linear-gradient(145deg, #d8f7ffab, #d0ffefbf, #16d60fdb);
    border: 2px solid black;
}

.bg-custom {
    background-color: rgba(29, 122, 29, 0.815);
}

h4 {
    color: #2e7d32;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rounded-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

.card-body:hover {
    transition: all 0.3s;

}

.card-advantage {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-advantage:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.tooltip {
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tooltip-arrow {
    color: #28a745;
}



.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #6c757d;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: #f8f9fa;
    border-radius: 6px;
    width: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* Initialement caché */
    transform: translateY(50px);
    /* Décalé vers le bas */
    transition: all 0.8s ease-out;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -13px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #6c757d;
    border: 4px solid #f8f9fa;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #198754;
}

.timeline p {
    margin: 0;
    font-size: 1rem;
    color: #6c757d;
}


.bg-custom {
    background-color: rgba(29, 122, 29, 0.815);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #28a745;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

.custom-checkbox input:checked+.checkmark {
    background-color: #28a745;
    border-color: #28a745;
}

.custom-checkbox input:checked+.checkmark::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}