body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    overflow: hidden; /* Masquer le contenu pendant le chargement */
}

.hero {
    position:relative;
    background: linear-gradient(to right, #fd7755, #ffd884);
    background-image: url("/images/paper.jpg");
    background-size:100%;
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero2 {
    position:relative;
    background: linear-gradient(to right, #fd7755, #ffd884);
    background-image: url("/images/paper-d.jpg");
    background-size:100%;
    color: white;
    padding: 80px 0;
    text-align: center;
}


.service-card {
    border: 1px solid #a8a8a8;
    background:rgba(255,126,95, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: scale(1.05);
}

footer {
    padding: 40px 0;
    background-color: #343a40;
    color: white;
}

.navbar {
    background-color: #343a40;
}

.navbar-nav .nav-link {
    color: #fff;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #feb47b;
}

/* Loader styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

.testimonial {
    background:rgba(255, 123, 0, 0.027);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
}
.orange{
    background-color: #feb47b;
    color:#343a40;
    border:solid #2f3031 0.1pt;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    width:300px;
    height:220px;
    justify-content: center;
    align-items: center;
}
.popup-box p {
    margin: 0;
    font-size: 1.2em;
}
.popup-box button {
    margin-top: 10px;
}
.popup-box button:hover {
    background-color: #feb47b;
    color: #343a40;
}
.popup-box button:focus {
    outline: none;
}
.popup-x{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #343a40;
}
.popup-x:hover {
    color: #feb47b;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #343a40;
}
.close-button:hover {
    color: #feb47b;
}
.close-button:focus {
    outline: none;
}

h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Style du flou pour l'arrière-plan */
.blur-background {
    filter: blur(8px);
}

/* Style du div popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 9999;
   
    text-align: center;
}

.popup h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.popup p {
    font-size: 18px;
    margin-bottom: 20px;
}

.popup .btn {
    padding: 10px 20px;
    background-color: #ff7e5f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup .btn:hover {
    background-color: #feb47b;
}

.in-foot {
    background-color: #a8a8a8;
    color:white;
    font-size: 20px;
}