body {
    font-family: 'poppins', sans-serif;
}

a {
    text-decoration: none;
}

/**********************************
       Section-Heading
**********************************/

.section-heading {
    color: #6610f2;
}


/**********************************
       Header
**********************************/

@media(max-width:768px) {

    .header-social-icon {
        display: flex;
    }


}


/**********************************
       Navbar
**********************************/
nav {
    background: white !important;
    box-shadow: 1px 1px 2px #00000085;
}


.navbar {
    background-color: rgba(30, 30, 30, 0.8) !important;
}

nav .navbar-brand {
    color: #1131ffe2 !important;
}

.navbar-nav .nav-link {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}


.navbar-nav a:hover {
    color: #0040ff !important;
}

.navbar-toggler {
    outline: none !important;
    padding: none !important;
}

.navbar-dark .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%280, 0, 255, 14%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar-dark .navbar-toggler {
    border: 1px solid blue;
}

.dropdown-menu a:hover {
    background-color: rgb(0, 131, 245) !important;
    color: black !important;

}



/**********************************
       Image Slide
**********************************/
.carousel-inner .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-inner .carousel-item::before {
    content: '';
    background-color: rgba(12, 11, 10, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.carousel-inner .carousel-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 40%;
    right: 0;
    left: 0;
}

.carousel-inner .carousel-caption span {
    color: #14f210 !important;
}

.carousel-inner .carousel-caption h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    width: 100%;
    margin: 0px auto 10px auto;
}

.carousel-inner .carousel-caption p {
    font-size: 15px;
    width: 80%;
    margin: 0px auto 20px auto;
}

@media(max-width: 560px) {
    .carousel-inner .carousel-caption h1 {
        font-size: 38px;
    }
}

@media(max-width:577px) {
    .carousel-inner .carousel-caption h1 {
        font-size: 25px;
    }

    .carousel-inner .carousel-caption {
        font-size: 13px;
    }
}

/**********************************
       Course
**********************************/
.course .box {
    padding: 10px 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 1);
}

.course .box img {
    padding: 10px 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 1);
}


.animated{
    animation: texte-apparait 3s ease-in-out forwards;
    transform: scale(1);
    text-shadow: 10px 10px 10px rgb(0, 0, 0);
    border: 5px;
}

@keyframes texte-apparait {
    from{ opacity: 0;}
    to { opacity: 1;}
}


/**********************************
       Evaluation
**********************************/

.evaluation{
    text-align: center;
    background: white;
}

h2 {
    color: #007bff;
  }
  
.evaluation p {
    color: #666;
  }
  
  select {
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  button {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
/* styles.css */
.scroll-btn {
    display: none; /* Cacher le bouton par défaut */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #555;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

.scroll-btn:hover {
    background-color: #333;
}
