 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-optical-sizing: auto;
    font-style: normal;
    font-family: "Roboto Condensed", sans-serif;

}
body, .hero-title, .hero-text {
    font-family: 'Poppins', sans-serif;
}


        .top-header{
             background-color: #ff9900;
        } 

section {
    border-bottom: 1px solid #e0e0e0;
    padding: 3px 50px;
}







/* bacground pour tous le pages */
.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 25vh; /* ajustable selon le besoin */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay transparent */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(0, 0, 0, 0.5); /* noir transparent à 50% */
  z-index: 1;
}

/* Texte au-dessus de l'overlay */
.hero-bg .hero-body {
  position: relative;
  z-index: 2;
  color: #fff; /* texte blanc */
  padding: 0 15px; /* padding pour mobile */
}

/* Titres et description responsive */
.hero-bg .hero-tete {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

.hero-bg .hero-descr {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 0.5rem;
}










/* Wrapper de la section */
.content-section-aboutus {
    background-color: #f8f9fa; /* fond clair */
}

/* Statistiques */
.stats-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000099;
    margin: 0;
}

.stat-label {
    font-weight: 300;
    font-size: 1rem;
    color: #555;
}

/* Séparateur vertical */
.vertical-divider {
    width: 1px;
    background-color: #ccc;
    margin: 0 30px;
    height: auto;
    flex-grow: 1;
}



.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000099;
    margin-bottom: 20px;
}



/* Responsive */
@media (max-width: 991px) {
    .col-lg-4, .col-lg-8 {
        flex: 1 1 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .vertical-divider {
        display: none;
    }

    .stats-wrapper {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 20px;
    }

    .stat-item {
        align-items: center;
    }
}









/* Général  LES UPCAMING COURSES*/
.content-section {
  background-color: #f9f9f9;
  color: #333;
}

/* Titres */
.text-primary {
  color: #007bff !important;
}

.month-title {
  font-weight: 600;
  font-size: 1rem;
  color: #444;
  margin: 1rem 2rem;
  border-bottom: 2px solid yellow;
}

/* Cards Événements */
.event-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.date-tag {
  min-width: 80px;
  background: linear-gradient(135deg,#0d6efd,#6610f2);
  border-radius: 12px 0 0 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.date-tag .day {
  font-size: 1.6rem;
}

.date-tag .day-end {
  font-size: 1rem;
}

.date-tag .month {
  font-size: 00.9rem;
}

/* Join Us */
.joinus-card {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}


.joinus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


.joinus-card .bg-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0,123,255,0.1);
  top: -30px;
  right: -30px;
  z-index: 0;
}

/* Responsive */
@media(max-width: 991px){
  .date-tag {
    min-width: 60px;
    padding: 1rem;
  }
}



@media (max-height: 576px)  {
            .btn-ms {
                font-size: 10px;
                padding: 6px 10px;
            }

            .joinus-card {
  background: #f9f9f9;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
            
        }


/* Carte */
.course-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Image */
.course-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Titre */
.course-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Bouton */
.course-card .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.course-card .btn:hover i {
    transform: translateX(5px);
}

/* Stats */
.course-card .stats {
    border-top: 1px solid #ecf0f1;
    padding-top: 10px;
}

/* Couleur par catégorie (exemple tech) */
.view-course-link {
    background-color: #000099;
    color: #fff;
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .course-card .card-title {
        font-size: 1.1rem;
    }
}











/*pateners*/

.partners-section h2 {
    font-size: 2.2rem;
    color: #222;
    letter-spacing: 1px;
}



.partner-item img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: .3s ease;
    margin-bottom: 10px;
}

.partner-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}








       :root {
            --primary-color: #4a6cf7;
            --secondary-color: #6c757d;
            --light-bg: #f8f9fa;
        }
        
        .testimonials-section {
            background-color: var(--light-bg);
            padding: clamp(3rem, 8vw, 5rem) 0;
            overflow: hidden;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #333;
            line-height: 1.2;
        }
        
        .section-subtitle {
            color: var(--secondary-color);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            max-width: min(90%, 700px);
            margin: 0 auto clamp(2rem, 5vw, 3rem);
            line-height: 1.6;
        }
        
        /* Styles des cartes de témoignage */
        .testimonial-card {
            background: white;
            border-radius: clamp(10px, 2vw, 15px);
            padding: clamp(1.25rem, 3vw, 1.875rem);
            margin: clamp(0.5rem, 1.5vw, 0.9375rem);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: clamp(1rem, 2vw, 1.25rem);
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .testimonial-avatar {
            width: clamp(60px, 8vw, 70px);
            height: clamp(60px, 8vw, 70px);
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
            flex-shrink: 0;
        }
        
        .testimonial-author {
            flex: 1;
            min-width: 200px;
        }
        
        .testimonial-author h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #333;
            font-size: clamp(1rem, 2vw, 1.25rem);
        }
        
        .testimonial-author p {
            color: var(--secondary-color);
            margin: 0;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin-bottom: clamp(0.75rem, 1.5vw, 0.9375rem);
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }
        
        .testimonial-text {
            color: #555;
            font-style: italic;
            line-height: 1.6;
            position: relative;
            padding-left: 25px;
            flex-grow: 1;
            font-size: clamp(0.9rem, 1.8vw, 1rem);
        }
        
        .testimonial-text:before {
            content: "“";
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
            left: -5px;
            top: -15px;
            font-family: Georgia, serif;
        }
        
        /* Styles du slider Slick */
        .testimonials-slider {
            padding: 10px 0 40px;
        }
        
        /* Points indicateurs */
        .slick-dots {
            bottom: 0;
        }
        
        .slick-dots li {
            margin: 0 5px;
            width: 12px;
            height: 12px;
        }
        
        .slick-dots li button {
            width: 12px;
            height: 12px;
            padding: 0;
        }
        
        .slick-dots li button:before {
            font-size: 10px;
            color: #ccc;
            opacity: 1;
        }
        
        .slick-dots li.slick-active button:before {
            color: var(--primary-color);
        }
        
        /* Navigation personnalisée */
        .slider-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: clamp(1.5rem, 4vw, 2.5rem);
            gap: clamp(10px, 2vw, 15px);
        }
        
        .slider-btn {
            width: clamp(40px, 6vw, 50px);
            height: clamp(40px, 6vw, 50px);
            border-radius: 50%;
            background-color: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: clamp(1rem, 2vw, 1.2rem);
        }
        
        .slider-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        
        .slider-btn:active {
            transform: scale(0.95);
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .testimonial-author {
                min-width: 180px;
            }
        }
        
        @media (max-width: 991px) {
            .testimonial-card {
                min-height: 250px;
            }
            
            .testimonial-header {
                gap: 12px;
            }
            
            .testimonial-author {
                min-width: 150px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonials-section {
                padding: 2.5rem 0;
            }
            
            .testimonial-card {
                margin: 8px;
                min-height: 230px;
            }
            
            .testimonial-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .testimonial-avatar {
                margin: 0;
            }
            
            .testimonial-author {
                min-width: 100%;
            }
            
            .testimonial-text {
                padding-left: 20px;
                text-align: center;
            }
            
            .testimonial-text:before {
                left: 0;
                right: 0;
                margin: 0 auto;
                text-align: center;
                width: 100%;
            }
            
            .slider-btn {
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 575px) {
            .testimonial-card {
                min-height: 200px;
                padding: 20px 15px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .section-subtitle {
                font-size: 0.9rem;
                padding: 0 10px;
            }
            
            .testimonial-text {
                font-size: 0.85rem;
                padding-left: 15px;
            }
            
            .testimonial-rating {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 400px) {
            .testimonial-card {
                margin: 5px;
                padding: 15px 12px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .testimonial-author h4 {
                font-size: 1rem;
            }
        }
        
        /* Pour les très grands écrans */
        @media (min-width: 1600px) {
            .testimonial-card {
                max-width: 600px;
                margin: 20px auto;
            }
        }
        
        /* Ajustements pour le mode paysage mobile */
        @media (max-height: 576px) and (orientation: landscape) {
            .testimonials-section {
                padding: 2rem 0;
            }
            
            .testimonial-card {
                min-height: 180px;
            }
        }
   



        /*Inscription css*/

      
/* Section globale */
.form-section {
  background-color: #fff;
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #222;
}

.form-section h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.form-section p {
  color: #555;
  margin-bottom: 20px;
}

/* Bloc formulaire */
.form-box {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.form-box h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Champs */
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* Grille responsive */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 45%;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

/* Radios */
.radio-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: normal;
}

/* Checkbox */
.terms {
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.terms input[type="checkbox"] {
  margin-right: 5px;
}

/* Boutons */
.btn-submit {
  border: none;
  color: white;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 10px;
}

.btn-reset {
  border: none;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

/* Responsive */
@media(max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }








        }




 




/* Container */
.course-container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Card */
.info-box-wrapper {
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info-box-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

/* Image */
.elementor-image-box-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Subtitle */
.info-box-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #28a745;
    margin-top: 10px;
}

/* Title */
.info-box-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 10px 0;
    color: #0d6efd;
}

/* Text */
.info-box-inner p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

/* Button */
.wd-button-wrapper .btn {
    font-size: 0.9rem;
    border-radius: 30px;
    padding: 8px 22px;
}

/* ===================== */
/*      RESPONSIVE       */
/* ===================== */

/* Mobile */
@media (max-width: 576px) {
    .info-box-title {
        font-size: 1rem;
    }
    .info-box-inner p {
        font-size: 0.9rem;
    }
    .wd-button-wrapper .btn {
        font-size: 0.85rem;
        padding: 7px 18px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .elementor-image-box-img img {
        height: 210px;
    }
}

/* Desktop large */
@media (min-width: 1200px) {
    .info-box-wrapper {
        max-width: 360px;
    }
}





/* Cours details */
.course-img {
    max-height: 420px;
    object-fit: cover;
}

/* Texte */
.course-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile */
@media (max-width: 576px) {
    h3 {
        font-size: 1.2rem;
    }

    .course-desc {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* Tablette */
@media (min-width: 768px) {
    .course-img {
        max-height: 450px;
    }
}

/* Desktop large */
@media (min-width: 1200px) {
    .course-img {
        max-height: 500px;
    }
}









/* galleries */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}

.gallery-media {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-media {
  transform: scale(1.05);
}

  .gallery-label {
    font-size: .75rem;
    padding: 5px 10px;
  }
}

/* Contenu CKEditor */
.ck-content h1, .ck-content h2, .ck-content h3, .ck-content h4 {
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}
.ck-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.ck-content ul, .ck-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.ck-content li {
  margin-bottom: .4rem;
}
.ck-content a {
  color: #000099;
  text-decoration: underline;
}
.ck-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-media {
    height: 200px;
  }
  .gallery-label {
    font-size: .75rem;
    padding: 5px 10px;
  }
}
