
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
    opacity: 0;
}

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

.blog .blog-item .project-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .project-img img {
    transform: scale(1.3);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover {
    border: none !important;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Testimonial End ***/

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
/* ===== CARTES SUPM ===== */
.supm-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}
.supm-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px; color: #fff;
}
.supm-icon-orange { background: #FF6B00; }
.supm-icon-blue { background: #0056D2; }
.supm-title { color: #0056D2; font-weight: 700; margin-bottom: 15px; }
.supm-text { color: #666; font-size: 14px; line-height: 1.7; text-align: justify; }

/* ===== LISTE AVEC + ===== */
.supm-list-acc{ border-radius: 10px; }
.supm-list-item{
    background: #fff;
    border-bottom: 1px dashed #E0E0E0; /* comme sur ta capture */
    padding: 15px 0;
}
.supm-list-item:last-child{ border-bottom: none; }

.supm-list-header{
    font-weight: 600;
    font-size: 16px;
    color: #002B5B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.supm-list-header .icon{
    font-size: 20px;
    color: #FF6B00; /* orange comme sur ta capture */
    font-weight: bold;
    transition: 0.3s;
}
.supm-list-header.active .icon{ 
    transform: rotate(45deg); 
    color: #0056D2; 
}

.supm-list-content{
    max-height: 0; /* CACHÉ PAR DEFAUT */
    overflow: hidden;
    padding: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.supm-list-content.show{
    max-height: 200px; /* AFFICHÉ QUAND ON CLIQUE */
    padding-top: 10px;
}
/* ===== end valeur mission... + ===== */
/* ===== strat paragraphe vision mission + ===== */
.supm-innover-text p{
    text-align: justify;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}
.supm-innover-text strong{
    color: #002B5B; /* Bleu SUPM pour les filières */
    font-weight: 700;
}
.supm-list-acc,
.supm-list-header,
.supm-list-content {
    text-align: left;
}
/* ===== end paragraphe vision mission + ===== */
/* ===== SECTION INNOVER POUR MIEUX FORMER ===== */
.supm-innover-block{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    transition: 0.3s;
    margin-bottom: 30px;
}
.supm-innover-block:hover{ 
    transform: translateY(-5px); 
    box-shadow: 0 12px 35px rgba(0,86,210,0.15);
}

.supm-innover-icon{
    min-width: 60px; height: 60px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    flex-shrink: 0;
}
.supm-innover-orange{ background: linear-gradient(135deg, #FF6B00, #FF8C00); }
.supm-innover-blue{ background: linear-gradient(135deg, #0056D2, #0041A3); }

.supm-innover-title{
    font-size: 20px;
    font-weight: 700;
    color: #002B5B;
    margin-bottom: 15px;
}
.supm-innover-text{
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}
.supm-innover-text strong{ color: #FF6B00; font-weight: 700; }

/* BADGES FILIERES */
.supm-filieres-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.badge-filiere{
    background: #F0F7FF;
    color: #0056D2;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #D6E8FF;
    transition: 0.3s;
    cursor: default;
}
.badge-filiere:hover{
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
    transform: scale(1.05);
}

/* ===== SECTION 4 BLOCS OBJECTIFS ===== */
.supm-objectif-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #FF6B00;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.supm-objectif-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-left: 5px solid #0056D2;
}

.supm-obj-icon{
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.supm-obj-orange{ background: linear-gradient(135deg, #FF6B00, #FF8C00); }
.supm-obj-blue{ background: linear-gradient(135deg, #0056D2, #0041A3); }

.supm-obj-title{
    font-size: 18px;
    font-weight: 700;
    color: #002B5B;
    margin-bottom: 15px;
    line-height: 1.4;
}
.supm-obj-text{
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    flex-grow: 1;
}
.supm-obj-text strong{ color: #FF6B00; font-weight: 700; }
/* ===== SECTION Labà ===== */
@media (max-width: 768px) {
    .display-5 { font-size: 1.8rem !important; }
}
/* ===== SECTION vie associative ===== */
.position-relative img {
    transition: transform 0.4s ease;
}
.position-relative:hover img {
    transform: scale(1.05);
}
.asso-hero img { 
    transition: transform 0.6s ease; 
    max-height: 480px; 
    object-fit: cover; 
}
.asso-hero:hover img { 
    transform: scale(1.05); 
}
.asso-card { 
    transition: all 0.3s ease; 
    border-radius: 15px; 
    border-left: 4px solid #007BFF;
}
.asso-card:hover { 
    transform: translateY(-8px); 
    border-left: 4px solid #FF6B00;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
/*====start droit====*/
  /* MENU POLE DROIT */
#menu-droit .list-group-item {
  background: #007BFF;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  border: none !important;
}
#menu-droit .list-group-item:hover { background: #0056b3; color:#fff; }
#menu-droit .active { background: #0056b3 !important; border-left: 4px solid #FF6B00 !important; }
.sidebar-link { background: #007BFF !important; }

/* TABS */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

/* SCHEMA DROIT */
/* ====== SCHEMA ORGANISATION PRO ====== */
/* ====== SCHEMA ORGANISATION FINAL ====== */
.orga-schema {
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 20px 0;
}
.orga-title {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}
.orga-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.orga-desc .lmd { font-weight: 700; color: #007BFF; }

.orga-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

/* GAUCHE */
.orga-left { width: 45%; }
.orga-label {
    font-style: italic;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.orga-box {
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}
.orga-box-purple { background: #6A5ACD; color: #fff; }
.orga-box-light { background: #D8D1F0; color: #333; }
.orga-arrow {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #2E8BCF;
    font-size: 16px;
}

/* DROITE */
.orga-right { width: 50%; position: relative; }
.orga-stage {
    background: #6A5ACD;
    color: #fff;
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.orga-stage strong { font-size: 12px; }
.orga-stage small { font-size: 10px; opacity: 0.9; }
.orga-arrow-down { text-align: center; color: #2E8BCF; margin: 5px 0; }

/* LIGNES + VIE ACTIVE */
.orga-connect {
    position: relative;
    margin-top: 30px;
    height: 100px;
}
.orga-line-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #2E8BCF;
}
.orga-line-bottom {
    position: absolute;
    bottom: 40px;
    right: 2px;
    width: 70%;
    height: 2px;
    background: #2E8BCF;
}
.orga-line-to-vie {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 30%;
    height: 2px;
    background: #2E8BCF;
}
.orga-line-v {
    position: absolute;
    bottom: 40px;
    left: 30%;
    width: 2px;
    height: 40px;
    background: #2E8BCF;
}
.orga-vie {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: #6A5ACD;
    border: 4px solid #2E4A7A;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

@media(max-width: 992px){
    .orga-body { flex-direction: column; gap: 30px; }
    .orga-left, .orga-right { width: 100%; }
    .orga-arrow, .orga-connect { display: none; }
}
/*====end droit====*/
/*=====start tourisme===*/
.list-group-item.active {
    background: #009688 !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,150,136,0.3);
}
.sidebar-link {
    background: #F0FFFD;
    color: #002B5B;
    font-weight: 500;
    transition: 0.3s;
}
.sidebar-link:hover {
    background: #009688;
    color: #fff;
    transform: translateX(8px);
}
.schema-tourisme {
    background: linear-gradient(135deg, #F0FFFD 0%, #E0F7FA 100%);
    border: 1px solid #B2DFDB;
}
.schema-box-main {
    background: #009688;
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,150,136,0.2);
}
.schema-box-option {
    background: #fff;
    color: #009688;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    border-left: 3px solid #009688;
}
.schema-box-stage {
    background: #009688;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,150,136,0.15);
}
.schema-box-diplome {
    background: #E0F2F1;
    color: #002B5B;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    border: 2px dashed #009688;
}
.list-group-item {
    font-weight: 600;
    transition: all 0.3s ease;
}
.list-group-item.active {
    background: #007BFF !important;
    border-left: 4px solid #FF6B00 !important;
}
.list-group-item:hover {
    background: #e9f5ff;
    border-left: 4px solid #007BFF;
}
.tab-content { min-height: 500px; }
.schema-box-stage {
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid #007BFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.schema-box-diplome {
    background: #FF6B00;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
}
.list-group-item.active {
    background: #007BFF !important;
    border-left: 4px solid #FF6B00 !important;
}
.schema-tourisme {
    position: relative;
    background: #f8f9fa;
}

.schema-box-diplome {
    background: #D8D1F0;
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

/* Petits points de connexion sur les diplômes */
#diplome-licence::after, #diplome-master::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #009688;
    border-radius: 50%;
}
/*==end tourisme===*/
/*==start polr ing==*/
.btn-tech {
    background: #0056B3;
    color: #fff;
    border: 2px solid #0056B3;
    transition: 0.3s;
}
.btn-tech:hover, .active-tech {
    background: #00A3E0 !important;
    border-color: #00A3E0 !important;
    color: #fff !important;
    transform: translateX(5px);
}
.btn-outline-tech {
    background: #F0F8FF;
    color: #0056B3;
    border: 2px solid #B3D9FF;
    transition: 0.3s;
}
.btn-outline-tech:hover {
    background: #0056B3;
    color: #fff;
    border-color: #0056B3;
    transform: translateX(5px);
}
.schema-ingenierie {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    border: 1px solid #B3D9FF;
}
.schema-box-tech {
    background: #0056B3;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,86,179,0.2);
}
.schema-box-stage {
    background: #00A3E0;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,163,224,0.2);
}
.schema-box-diplome {
    background: #E6F3FF;
    color: #0056B3;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    border: 2px dashed #00A3E0;
}
/*===fin==*/
/*==== stat management===*/
.btn-mgmt {
    background: #FF6B00;
    color: #fff;
    border: 2px solid #FF6B00;
    transition: 0.3s;
}
.btn-mgmt:hover, .active-mgmt {
    background: #002B5B !important;
    border-color: #002B5B !important;
    color: #fff !important;
    transform: translateX(5px);
}
.btn-outline-mgmt {
    background: #FFF5F0;
    color: #FF6B00;
    border: 2px solid #FFD4B8;
    transition: 0.3s;
}
.btn-outline-mgmt:hover {
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
    transform: translateX(5px);
}
.schema-management {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF0E6 100%);
    border: 1px solid #FFD4B8;
}
.schema-box-mgmt {
    background: #FF6B00;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 3px 10px rgba(255,107,0,0.2);
}
.schema-box-stage-mgmt {
    background: #FF6B00;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(255,107,0,0.2);
}
.schema-box-diplome-mgmt {
    background: #FFF0E6;
    color: #002B5B;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    border: 2px dashed #FF6B00;
}
/*----start bibliotheque-----*/
.biblio-hero {
    background: url('img/bibliotheque-bg.jpg') center/cover no-repeat; /* Mets ta photo ici */
    min-height: 500px;
}
@media (max-width: 768px) {
    .biblio-hero { min-height: 400px; }
    .biblio-hero h1 { font-size: 2.2rem; }
}
.btn-cta {
    background: #FF6B00;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-cta:hover {
    background: #002B5B;
    color: #fff;
    transform: translateY(-3px);
}
.catalogue-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}
.catalogue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,43,91,0.15) !important;
}
.card-icon {
    width: 80px;
    height: 80px;
    background: #002B5B; /* Bleu SupM */
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px auto; /* Effet qui dépasse */
    box-shadow: 0 5px 15px rgba(0,43,91,0.3);
}
.btn-catalogue {
    background: #002B5B;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-catalogue:hover {
    background: #FF6B00;
    color: #fff;
}
/* fin biblotheque */
/*start dossier*/
.service-hero-dossier {
    position: relative;
    height: 400px;
    background: url('../img/biblotheque/imdossier.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Voile PRO Bleu SupM */
.service-hero-dossier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,43,91,0.90) 0%, rgba(0,86,179,0.75) 100%);
    border-radius: 1rem;
}

/* Contenu au dessus */
.service-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 750px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
    .service-hero-dossier {
        height: 320px;
    }
    .service-content h2 {
        font-size: 1.8rem;
    }
}
/*start orientation*/
.biblio-hero {
    position: relative;
    height: 450px; /* Hauteur pro */
    background: url('../img/biblotheque/biblio.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Effet parallax pro */
}

/* Voile dégradé Bleu/Bleu Foncé */
.biblio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,43,91,0.85) 0%, rgba(0,43,91,0.65) 100%);
    z-index: 1;
}

.biblio-content {
    position: relative;
    z-index: 2; /* Pour passer au dessus du voile */
    max-width: 800px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .biblio-hero {
        height: 350px;
        background-attachment: scroll; /* Désactive parallax sur mobile */
    }
    .biblio-content h2 {
        font-size: 2rem;
    }
}
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,43,91,0.15) !important;
}
.btn-orientation {
    background: #002B5B;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}
.btn-orientation:hover {
    background: #FF6B00;
    color: #fff;
    transform: translateY(-2px);
}
/*end */
/*start orientatin*/
.page-hero-orientation {
    position: relative;
    height: 450px;
    background: url('../img/biblotheque/imdossier.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Voile PRO dégradé Bleu SupM */
.page-hero-orientation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,43,91,0.92) 0%, rgba(0,86,179,0.80) 100%);
}

/* Contenu au dessus */
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    animation: heroFade 1s ease;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-orientation {
        height: 350px;
    }
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    .page-hero-content h2 {
        font-size: 1.3rem;
    }
}
#form-orientation h3 {
    color: #002B5B !important; /* Bleu SupM */
}
#form-orientation .fa-user-check {
    color: #FF6B00 !important; /* Orange SupM */
}
.btn-orientation {
    background: #002B5B;
    color: #fff;
    border-radius: 8px;
}
.btn-orientation:hover {
    background: #FF6B00;
}
/*start pv*/
.page-hero-pv {
    position: relative;
    height: 450px;
    background: url('../img/biblotheque/pv.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Voile PRO Bleu SupM */
.page-hero-pv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,43,91,0.92) 0%, rgba(0,86,179,0.80) 100%);
}

/* Contenu au dessus */
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    animation: heroFade 1s ease;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Boutons PV */
.btn-pv {
    background: #fff;
    color: #002B5B;
    border: 2px solid #DEE2E6;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-pv:hover {
    background: #002B5B;
    color: #fff;
    border-color: #002B5B;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,43,91,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-pv {
        height: 350px;
    }
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}
/*formulaire dossier*/
.btn-dossier {
    background: #002B5B;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-dossier:hover {
    background: #FF6B00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,107,0,0.3);
}
.form-control, .form-select {
    border: 2px solid #DEE2E6;
    border-radius: 8px;
    padding: 12px;
}
.form-control:focus, .form-select:focus {
    border-color: #002B5B;
    box-shadow: 0 0 0 0.2rem rgba(0,43,91,0.15);
}
/* start preinscription*/
.page-hero-preinsc {
    position: relative;
    height: 450px;
    background: url('../img/biblotheque/imdossier.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-preinsc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,43,91,0.92) 0%, rgba(0,86,179,0.80) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    animation: heroFade 1s ease;
}

.btn-preinsc {
    background: #002B5B;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-preinsc:hover {
    background: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,107,0,0.3);
}
.form-control, .form-select {
    border: 2px solid #DEE2E6;
    border-radius: 8px;
    padding: 12px;
}
.form-control:focus, .form-select:focus {
    border-color: #002B5B;
    box-shadow: 0 0 0 0.2rem rgba(0,43,91,0.15);
}
/*emploi du temps*/
.page-hero-emploi {
    position: relative;
    height: 450px;
    background: url('../img/slider/slider5.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-emploi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(0,43,91,0.92) 0%, rgba(0,86,179,0.80) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    animation: heroFade 1s ease;
}

.btn-emploi {
    background: #002B5B;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-emploi:hover {
    background: #FF6B00;
    color: #fff;
}
.btn-download {
    background: #FF6B00;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-download:hover {
    background: #002B5B;
    color: #fff;
}

.table th, .table td {
    vertical-align: middle;
    font-size: 14px;
}
.table tbody tr:hover {
    background-color: rgba(0,43,91,0.05);
}

@media (max-width: 768px) {
    .page-hero-emploi { height: 350px; }
    .table { font-size: 12px; }
}
/*start evenement*/
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,43,91,0.15) !important;
}
/*startgalerie*/
.card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,43,91,0.15) !important; }
.card:hover .position-absolute:last-child { opacity: 1 !important; }
.btn-outline-secondary:hover { background:#002B5B; color:#fff; border-color:#002B5B; }
/* start CHIFFRES CLES SUPMANAGEMENT */
/* ===== SECTION CHIFFRES SUPMANAGEMENT ===== */
.chiffre-box {
    min-height: 190px;
    border-top: 5px solid #007BFF;
    border-radius: 12px !important;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.98);
}
.chiffre-box:hover {
    transform: translateY(-12px);
    border-top: 5px solid #FF6B00;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.chiffre-box i {
    transition: all 0.3s ease;
}
.chiffre-box:hover i {
    transform: scale(1.1);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .chiffre-box {
        min-height: 160px;
        padding: 1.2rem !important;
    }
    .chiffre-box h2 {
        font-size: 2.2rem !important;
    }
}
/*fin chiffres*/
/* star labo EFFET HERO LABO */
.labo-hero img {
    transition: transform 0.6s ease;
    max-height: 500px;
    object-fit: cover;
}
.labo-hero:hover img {
    transform: scale(1.05); /* zoom doux au survol */
}
.labo-hero img { transition: transform 0.6s ease; max-height: 500px; object-fit: cover; }
.labo-hero:hover img { transform: scale(1.05); }
.labo-card { transition: all 0.3s ease; border-radius: 15px; }
.labo-card:hover { transform: translateY(-8px); }
/*start pole formation*/
./* Dropdown imbriqué Bootstrap 5 */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
/* Flèche pour indiquer qu'il y a un sous-menu */
.dropdown-submenu > .dropdown-item::after {
    content: "›";
    float: right;
    margin-left: 10px;
}
/* =====start GALERIE SUP'MANAGEMENT ===== */
/* ===== GALERIE BACKGROUND PRO SUP'MANAGEMENT ===== */
.gallery-supm {
  background: #f8f9fa;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 25px rgba(10,61,98,0.15);
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10,61,98,0.25);
}

/* Overlay dégradé Bleu -> Orange */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,61,98,0) 0%, rgba(10,61,98,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(243,156,18,0.1) 0%, rgba(10,61,98,0.95) 100%);
}

.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #F39C12;
  color: #0A3D62;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-content h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 15px;
  min-height: 40px;
}

.gallery-content .btn {
  background: #fff;
  color: #0A3D62;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.gallery-content .btn:hover {
  background: #F39C12;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item { height: 300px; }
  .gallery-content h3 { font-size: 1.1rem; }
}
/*start contact*/
/* ===== CONTACT SUP'MANAGEMENT AVEC BACKGROUND ===== */
:root {
  --bleu-supm: #0A3D62;
  --orange-supm: #F39C12;
}

/* HERO */
.contact-hero {
  position: relative;
  height: 450px;
  background: url('../img/admin/contact-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,61,98,0.85) 0%, rgba(243,156,18,0.70) 100%);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* SECTION */
.contact-supm { background: #f8f9fa; }

/* CARTE INFOS */
.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border-left: 5px solid var(--orange-supm);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
}
.contact-info-card h3 { color: var(--bleu-supm); font-weight: 700; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.icon-box {
  width: 55px; height: 55px;
  background: rgba(243,156,18,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box i { color: var(--bleu-supm); }
.contact-info-item h5 { color: var(--bleu-supm); font-weight: 700; margin-bottom: 5px; }
.contact-info-item a { color: #555; text-decoration: none; transition: 0.3s; }
.contact-info-item a:hover { color: var(--orange-supm); }

/* RESEAUX */
.social-contact a {
  display: inline-flex; width: 45px; height: 45px;
  background: var(--bleu-supm); color: #fff; border-radius: 50%;
  align-items: center; justify-content: center; margin-right: 10px;
  transition: 0.3s; text-decoration: none;
}
.social-contact a:hover { background: var(--orange-supm); transform: translateY(-3px); }

/* FORMULAIRE */
.contact-form-wrapper {
  position: relative; border-radius: 16px; overflow: hidden;
  background: url('../img/admin/form-bg.webp') center/cover no-repeat;
  box-shadow: 0 10px 30px rgba(10,61,98,0.2);
}
.contact-form-overlay { background: rgba(10,61,98,0.93); padding: 40px; }
.form-control {
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 8px; padding: 14px;
}
.form-control::placeholder { color: rgba(255,255,255,0.7); }
.form-control:focus {
  background: rgba(255,255,255,0.15); border-color: var(--orange-supm);
  color: #fff; box-shadow: none;
}
.btn-send {
  background: var(--orange-supm); color: var(--bleu-supm);
  border: none; font-weight: 700; border-radius: 8px; transition: 0.3s;
}
.btn-send:hover { background: #fff; color: var(--bleu-supm); transform: translateY(-2px); }

/* MAP */
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(10,61,98,0.15); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero { height: 350px; }
  .contact-hero-content h1 { font-size: 2.5rem; }
  .contact-form-overlay { padding: 25px; }
}
/*start a propos*/
/* ===== A PROPOS SUP'MANAGEMENT AVEC BACKGROUND ===== */
:root {
  --bleu-supm: #0A3D62;
  --orange-supm: #F39C12;
}

/* 1. HERO A PROPOS */
.about-hero {
  position: relative;
  height: 450px;
  background: url('../img/admin/campus-a-propos.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,61,98,0.85) 0%, rgba(243,156,18,0.70) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-hero p { color: rgba(255,255,255,0.9); }

/* 2. SECTION PCA */
.about-supm { background: #fff; }
.about-img-wrapper { position: relative; }
.about-img-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--bleu-supm);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  border-left: 4px solid var(--orange-supm);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.about-img-badge h3 { font-size: 1.1rem; margin: 0; color: var(--orange-supm); }
.about-img-badge span { font-size: 0.85rem; }

/* 3. SECTION VMV AVEC BACKGROUND */
.vmv-supm {
  position: relative;
  background: url('../img/admin/bg-vmv.webp') center/cover fixed no-repeat;
}
.vmv-overlay {
  background: rgba(10,61,98,0.92);
}

.vmv-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.vmv-card:hover {
  transform: translateY(-10px);
  background: rgba(243,156,18,0.1);
  border-color: var(--orange-supm);
}
.vmv-icon {
  width: 80px;
  height: 80px;
  background: var(--orange-supm);
  color: var(--bleu-supm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}
.vmv-card h3 { color: var(--orange-supm); font-weight: 700; margin-bottom: 15px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero h1 { font-size: 2.5rem; }
  .about-img-badge { position: static; margin-top: 20px; }
}
/* =====start PAGE EVENEMENT SUP'MANAGEMENT ===== */
:root {
  --bleu-supm: #0A3D62;
  --orange-supm: #F39C12;
}

/* 1. HERO EVENEMENT */
.event-hero {
  position: relative;
  height: 500px;
  background: url('../img/admin/event-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.event-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,61,98,0.9) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: center;
}
.event-badge {
  background: var(--orange-supm);
  color: var(--bleu-supm);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.event-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-top: 15px;
}
.event-hero h1 span { color: var(--orange-supm); }
.event-info-bar {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.info-item {
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.info-item i { color: var(--orange-supm); margin-right: 8px; }

/* 2. CONTENU */
.event-supm { background: #f8f9fa; }
.event-main-image { position: relative; }
.event-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bleu-supm);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  border-left: 3px solid var(--orange-supm);
}
.event-text p {
  text-align: justify;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.btn-orange {
  background: var(--orange-supm);
  color: var(--bleu-supm);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.btn-orange:hover {
  background: var(--bleu-supm);
  color: #fff;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .event-hero h1 { font-size: 2.2rem; }
  .event-info-bar { flex-direction: column; gap: 15px; align-items: center; }
}
/*start elon*/
.event-text p {
  text-align: center; /* CENTRE LE TEXTE */
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
  max-width: 750px; /* Empêche que ça fasse une ligne trop longue */
  margin-left: auto;
  margin-right: auto;
}
.event-text p.fw-bold {
  font-size: 1.1rem;
}
/* ===== PAGE ACTUALITE DETAIL ===== */
:root {
  --bleu-supm: #0A3D62;
  --orange-supm: #F39C12;
}

.news-detail { background: #fff; }

/* IMAGE PRINCIPALE */
.news-main-img {
  overflow: hidden;
  border-radius: 16px;
}
.news-main-img img {
  transition: transform 0.5s ease;
}
.news-main-img:hover img {
  transform: scale(1.03);
}

/* META */
.news-meta {
  color: #777;
  font-size: 0.9rem;
  font-weight: 500;
}
.news-meta i { color: var(--orange-supm); }

/* TITRE */
.news-title {
  color: var(--bleu-supm);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
}

/* CONTENU TEXTE */
.news-content {
  text-align: center; /* CENTRE LE TEXTE COMME TU VOULAIS */
  max-width: 750px;
  margin: 0 auto;
}
.news-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* GALERIE */
.news-gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.news-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-gallery-item:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-title { font-size: 1.8rem; }
  .news-content { text-align: left; } /* Sur mobile on repasse à gauche pour la lisibilité */
}
/*supmanagement*/
   .texte-justifie {
    text-align: justify;
    line-height: 1.7;
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto;
}
/* ====== SECTION CONTACT pole de droit ====== */
.form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 14px;
}
.form-control:focus {
    border-color: #FF7A00;
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}
.btn:hover {
    background: #E56E00 !important;
    transition: 0.3s;
}
/* Style pour les inputs type ligne */
.form-label {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}
.form-line {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding: 8px 5px;
    background-color: #fff;
    box-shadow: none;
    outline: none;
}
.form-line:focus {
    border-bottom: 2px solid #FF7A00;
    background-color: #fff;
    box-shadow: none;
}