.course-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.course-img {
    flex-shrink: 0;
    height: 200px;
    /* Fixed height for image */
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the container */
}

.course-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.course-rate {
    color: #ffcc00;
}

.course-info {
    flex-grow: 1;
    margin-bottom: 15px;
}

.course-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-instructor img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.course-price {
    font-size: 18px;
    font-weight: bold;
}

.course-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-price {
    display: flex;
    align-items: center;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-discount {
    color: #e74c3c;
    font-weight: bold;
}

.btn-primary {
    /* Ajoutez des styles pour le bouton si nécessaire */
}

.logo-size {
    width: 80px !important;
    height: 50px !important;
}

.footer-logo {
    text-decoration: none;
    /* Remove underline from the link */
}

.logo-citech {
    color: blue;
    /* Set the color for "CITECH" */
    font-weight: bold;
    /* Make the text bold */
    font-size: 24px;
    /* Adjust the font size as needed */
}

.logo-sarl {
    color: green;
    /* Set the color for "SARL" */
    font-weight: bold;
    /* Make the text bold */
    font-size: 24px;
    /* Adjust the font size as needed */
    margin-left: 5px;
    /* Add spacing between "CITECH" and "SARL" */
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
}

.testimonial-single {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    /* Ajustez cette valeur selon vos besoins */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    /* Espacement entre les cartes */
    border-radius: 8px;
    background-color: #fff;
    /* Couleur de fond */
    transition: transform 0.3s;
}

.testimonial-single:hover {
    transform: scale(1.05);
    /* Effet d'agrandissement au survol */
}

.testimonial-quote {
    flex-grow: 1;
    /* Permet au texte de prendre l'espace restant */
}
.rounded-image {
    border-radius: 50% !important; /* Pour un léger arrondi */
    overflow: hidden;
    height: auto;
}

.instructor-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

.instructor-item {
    margin-bottom: 30px;
    text-align: center;
}

.instructor-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: 200px;
    /* Hauteur fixe pour uniformiser */
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Assure que l'image couvre le conteneur sans se déformer */
    border-radius: 8px;
    /* Ajoute un arrondi aux coins de l'image */
}

.instructor-content {
    padding: 15px;
}

.instructor-tag {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.instructor-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.instructor-rate {
    font-size: 14px;
    color: #f5c518;
    margin-bottom: 10px;
}

.instructor-rate i {
    color: #f5c518;
    /* Couleur des étoiles */
}

.instructor-enroll {
    font-size: 14px;
    color: #333;
}

.instructor-enroll i {
    color: #007bff;
    /* Couleur des icônes d'utilisateurs */
}

.terms-content p {
    text-align: justify; /* Justifie le texte */
}
