@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilmer';
    src: url('../font/Gilmer Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #E83C13;
    --dark-gray-shade: #3C3B3C;
    --light-gray-shade: #00000080;
    --lighter-gray-shade: #BEBEBE;
    --lightest-gray-shade: #00000026;
    --dark-white-shade: #E3E3E3;
    --secondary-white: #3C3B3C00;
    --font-family: 'Gilmer', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray-shade);
}

/* Navbar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: white;
}

.logo-section {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.logo-container {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.logo-container img {
    width: 120px;
    height: 50px;
    margin-left: 50px;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100% !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0px;
    margin-right: 30px;
    margin-bottom: 0;
    height: 100% !important;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}


.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.special-links {
    display: flex;
    height: 100%;
    margin-left: 30px;
}

.special-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    font-size: 12px;
    gap: 5px;
}

.special-links i {
    font-size: 18px;
}

.search {
    background: var(--primary-color);
    color: white;
    width: 90px;
}

.language {
    background: #333;
    color: white;
    width: 90px;
}

.nav-links li {
    position: relative;
    padding-bottom: 5px;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;

}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:not(.active):hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    box-sizing: border-box;

    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: white;
    min-width: 270px;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    width: 100%;
    color: var(--dark-gray-shade);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.2s;
    font-weight: bold;
    text-align: center;
}

.dropdown-menu a:hover {

}

.dropdown-menu {
    border: none;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: none;
}

/* search */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    display: flex;
    align-items: center;
}

.search-container input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    padding: 15px 15px;
    font-size: 20px;
    color: white;
    outline: none;
}

.search-container input::placeholder {
    color: white;
    opacity: 0.7;
}

.search-container .fa-search {
    position: absolute;
    right: 15px;
    color: white;
    font-size: 20px;
}

.close-btn {
    position: absolute;
    top: 90px;
    right: 30px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid white;
    padding: 5px 10px;
}

.close-btn:hover {
    opacity: 0.7;
}

/* Hero Slider Styling */

.hero {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider:not(.active) {
    width: 100%;
}

.slider.active {
    width: 300%;
}

.slide {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    font-size: 35px;
    color: white;
    padding: 20px;
    flex-shrink: 0;
    position: relative;
    font-weight: bold;
    backdrop-filter: var(--secondary-white);
}

.slider {
    position: relative;
}

.slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--light-gray-shade), transparent);
    z-index: 1;
}


.slider {
    background: linear-gradient(to top, var(--light-gray-shade), transparent);

}

.slide-text-size {
    margin-left: 80px;
    z-index: 2;
    width: 60%;
}

.slide-text {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;

}

.slider.active .slide:nth-child(1) .slide-text,
.slider.active .slide:nth-child(2) .slide-text,
.slider.active .slide:nth-child(3) .slide-text {
    opacity: 1;
}


.slider:not(.active) .slide:nth-child(1) {
    width: 60%;
}

.slider:not(.active) .slide:nth-child(2) {
    width: 20%;
}

.slider:not(.active) .slide:nth-child(3) {
    width: 20%;
}

.slider.active .slide {
    width: 33.3333%;
}

.controls {
    z-index: 3;
    position: absolute;
    top: 2%;
    left: 5.5%;
    display: flex;
    gap: 10px;
}

.prev,
.next {
    border: #ffffff solid 1px;
    background: rgba(0, 0, 0, 0);
    color: white;
    /* border: none; */
    padding: 4px 10px;
    cursor: pointer;
    font-size: 14px;
}

.timer-bar {
    position: absolute;
    top: 9%;
    left: 5.5%;
    width: 68px;
    /* Adjust as needed */
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 3;
}

.timer-progress {
    height: 100%;
    width: 0%;
    background: white;
    transition: width linear;
}

.slide:nth-child(1) {
    background: url(./images/Page\ Accueil/img1_slider.jpg) no-repeat center center/cover;
}

.slide:nth-child(2) {
    background: url(./images/Page\ Accueil/img2_slider.jpg) no-repeat center center/cover;
}

.slide:nth-child(3) {
    background: url(./images/Page\ Accueil/img3_slider.jpg) no-repeat center center/cover;
}

.explore {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    position: absolute;
    bottom: 30px;
    right: 100px;
    z-index: 99;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.explore-btn {
    display: flex;
    color: white;
    text-decoration: none;
    padding: 10px 10px;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

/* ABOUT */
.image-content {
    flex: 1;
}

.title-content {
    color: var(--dark-gray-shade);
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: bold;
}

.text-content {
    line-height: 1.6;
    margin-bottom: 20px;
    margin-right: 20px;
    color: var(--dark-gray-shade);
    font-size: 16px;
    font-weight: bold;
}

.image-content img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .image-content {
        order: 1;
    }
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.buttons a {
    text-decoration: none;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: lighter;
    text-align: center;
}

.button-icon {
    border: white solid 1px;
    background: transparent;
    color: white;
    /* border: none; */
    padding: 5px 8px;
    cursor: pointer;
    font-size: 10px;
}

.more {
    background: var(--dark-white-shade);
    color: black;
}

.apply,
.submit-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: lighter;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

/* .apply:hover,
.submit-btn:hover {
    color: #ff4444;
    background-color: var(--lighter-gray-shade);
    transform: translateY(-1px);
} */

.button-icon,
.arrow-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
    padding: 4px 10px;
}

.apply:hover .button-icon,
.submit-btn:hover .arrow-icon {
    transform: translateX(3px);
}

.apply:focus,
.submit-btn:focus {
    outline: 2px solid rgba(255, 68, 68, 0.4);
    outline-offset: 2px;
}


.more .button-icon {
    border: var(--dark-gray-shade) solid 1px;
    color: var(--dark-gray-shade);
}


.apply .button-icon {
    border: white solid 2px;
    color: white;
}

.content-container {
    position: relative;
}

.image-content {
    flex: 1;
    position: relative;
    overflow: visible;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .image-content {
        padding: 20px 0;
    }
}

.cards-section {
    background: white;
    padding: 80px 0;
}

.card-item {
    min-height: 200px;
}

.orange-card {
    background: var(--primary-color);
    color: white;
}

.dark-card {
    background: #3C3B3C;
    color: white;
}

.card-img {
    width: 30%;
    object-fit: cover;
    margin-right: 20px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.card-title .underline {
    padding-bottom: 10px;
    display: inline-block;
    line-height: 1.6;
    color: #fff;
    position: relative;
    font-size: 18px;
}
.secteur h5{
    color:#fff;
}

.d-flex .column-inner{
    justify-content: center;
}

.card-title .underline:after {
    content: "";
    height: 4px;
    width: 20%;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.card-text {
    font-size: 16px;
    font-weight: 100;
}

.card-text p{
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    line-height: 19px;
}

.toggle-btn {
    margin: 20px 0;
}

.toggle-btn-1 {
    background: white;
    border: 2px solid white;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.toggle-btn-2 {
    background: white;
    border: 2px solid white;
    color: #3C3B3C;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    transform: rotate(45deg);
}

.partners-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.Universities-list li {
    list-style-type: none;
    font-weight: bold;
    cursor: pointer;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

.tag {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    width: fit-content;
    margin-left: 0 !important;
}


.Universities-list li.tag {
    background-color: var(--primary-color);
    color: white;
}

.footer-banner {
    background: url("images/um6p_canada_cover.jfif") no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: #fff;

}

.footer-banner-content {
    position: relative;
    z-index: 2;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 60px 0;
    width: 100%;
    margin: 0;
}

.footer-banner h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.discover-btn {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    width: 210px;
}

.discover-btn .button-icon {
    border: white solid 1px;
    color: white;
    padding: 5px 10px;
    font-size: 10px;
    margin-left: 5px;
    font-weight: 100;
}

.discover-btn:hover {
    background: #d0d0d0;
    color: black;
}

/* FOOTER */
.footer-main {
    background-color: #333;
    color: #fff;
    padding: 20px 80px;
}

.footer-container {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left .logo-container img {
    width: 150px;
    height: auto;
    margin-left: 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 17px;
    color: var(--dark-gray-shade);
    transition: 0.3s;
    background-color: white;
    width: 25px;
    height: 25px;
    text-align: center;
}

.social-icons a:hover {
    color: var(--primary-color);
}


.footer-middle-right {
    display: flex;
    justify-content: end;
    gap: 120px;
}

@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        padding-top: 20px;
    }

    .footer-middle-right {
        margin-left: 0;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .footer-middle-right {
        flex-direction: column;
        gap: 30px;
    }

    .copyright {
        margin: 20px;
    }
}

/* Footer Middle */
.footer-middle h5 {
    margin-bottom: 10px;
    font-size: 16px;
}


.footer-middle ul {
    list-style: none;
    padding-left: 1px;
    margin: 0;
}

.footer-middle ul li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 4px;
    height: 20px;
}

.footer-middle ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 16px;
}

.footer-middle ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-middle ul li a:hover {
    color: var(--primary-color);
}

/* Footer Right */
.footer-right h5 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-right p {
    margin-bottom: 4px;
    font-size: 14px;
    height: 20px;

}

.footer-right a {
    color: #fff;
    text-decoration: none;

}

.footer-right a:hover {
    color: var(--primary-color);
}

.information {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* MISSION */

/* BREADCRUMB */

.breadcrumb-container {
    height: 250px;
    margin-top: 80px;
    position: relative;
    background: url('./images/Breadcrumb.jpg') no-repeat center center/cover;
    padding: 10px 15px;
    color: white;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-content {
    position: absolute;
    bottom: 0;
    z-index: 2;
    margin-left: 6%;
    width: fit-content;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: " • ";
    color: #ffffff;
    font-weight: bold;
}

/* DIRECTOR */

.director-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    gap: 40px;
    background-color: #ffffff;
}

.director-image {
    position: relative;
}

.director-image img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.director-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -31px;
    width: 103%;
    height: 80%;
    background: linear-gradient(to top, var(--primary-color), transparent);
    z-index: 1;
}


.director-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.director-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray-shade);
}

.director-text .director-name {
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 14px;
}

.director-text .director-title {
    font-weight: bold;
    color: var(--dark-gray-shade);
    font-size: 14px;
}

@media (max-width: 768px) {
    .director-section {
        flex-direction: column;
        text-align: center;
    }

    .director-text {
        padding-left: 0;
        margin-top: 20px;
    }
}

/* TESTIMONIALS */
.testimonials {
    background-color: var(--dark-white-shade);
}

.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: var(--dark-white-shade);
}

.testimonials-text {
    max-width: 500px;
}

.testimonials-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonials-text ul {
    list-style-type: none;
    padding-left: 0;
}

.testimonials-text ul li::before {
    content: "- ";
    color: #333;
    font-weight: bold;
    margin-right: 5px;
}

.testimonials-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.testimonial-image-mobile {
    display: none!important;
}



.plus-icon {
    border: white solid 2px;
    background: rgba(0, 0, 0, 0);
    color: white;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 10px;
}

.btn-read-more i {
    margin-left: 10px;
    font-size: 14px;
}

.testimonial-card {
    display: flex;
    align-items: start;
    flex-direction: column;
    background-color: var(--primary-color);
    color: white;
    padding: 0 40px 40px;
    position: relative;
    overflow: hidden;
    height: 300px !important;
}

.testimonial-image {
    width: 220px!important;
    height: 220px!important;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 18px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0;
}

.testimonial-university {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 0px;
}

.testimonial-nav button {
    background: none;
    border: 1px solid var(--dark-gray-shade);
    font-size: 20px;
    color: var(--dark-gray-shade);
    padding: 4px 10px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

.testimonial-nav .active {
    background-color: var(--primary-color);
    height: 3px;
    width: 30px;
    display: inline-block;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonials-section {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card img {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

.testimonial-slide {
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 280px;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.testimonial-nav {
    position: relative;
    left: 0;
    top: -50px;
}


/* MISSION VISION */

.mission-row {
    font-size: 14px;
}

.icon-box {
    width: 130px;
    height: 130px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    padding: 15px;
}


.icon-box img {
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.icon-box img {
    transform: scale(0.65);
}

.objectifs {
    background-color: var(--dark-gray-shade);
}

/* SECTGEURS */

.secteur:hover {
    background-color: var(--dark-gray-shade);
}

.secteur-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-gray-shade);
}

.red-box img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.position-relative>.d-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.position-relative>.d-grid>div {
    min-height: 0;
}

.bg-primary-color {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: #dee2e6 !important;
}

.bg-dark-gray {
    background-color: var(--dark-gray-shade);
}

.bg-light-gray {
    background-color: var(--lighter-gray-shade);
}

.bg-lightest-gray {
    background-color: var(--lightest-gray-shade);
}

.bg-dark-white {
    background-color: var(--secondary-white);
}

/* NEWS */
.event-card {
    background: white;
    overflow: visible;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 180px;
}

.event-img {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.event-content {
    position: absolute;
    width: 90%;
    left: 5%;
    margin-top: -30px;
    z-index: 2;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.event-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e63946;
    color: white;
    font-weight: bold;
    padding: 10px;
    font-size: 14px;
    line-height: 1.2;
    z-index: 3;
}

.event-content h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.read-more {
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more span {
    font-size: 18px;
}

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

.page-container {
    display: none;
}

.page-container.active {
    display: block;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    border-radius: 0 !important;
    margin-right: 10px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 0 !important;

}

.pagination .disabled .page-link {
    pointer-events: none;
    color: #6c757d;
}

/* NEWS DETAILS */
.post-image {
    width: 100%;
    height: auto;
}

.event-title {
    color: var(--dark-gray-shade);
}

.event-paragraph {
    color: var(--dark-gray-shade);
    text-align: justify;
    margin-bottom: 50px;
}

.tag-muted {
    color: var(--light-gray-shade);
}

/* Recent Posts Styling */
.recent-posts {
    background-color: var(--lightest-gray-shade);
    padding: 15px;
}

.recent-posts h5 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.recent-posts h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.recent-posts img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Tags Section Styling */
.tags {
    background-color: var(--lightest-gray-shade);
    padding: 15px;
}

.tags h5 {
    position: relative;
    display: table;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.tags h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tags span {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--dark-gray-shade);
    border: 1px solid var(--dark-gray-shade);
    margin: 5px 5px 5px 0;
    display: inline-block;
}

/* TESTIMONIALS */
/* .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
}

.testimonial-card {
    width: 48%;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 14px;
    margin-top: 5px;
    color: #555;
}

.quote {
    font-size: 40px;
    color: #dc3545;
    font-weight: bold;
} */

/* programmes et activites */

.context-section {
    padding: 50px 0;
}


.context-image img {
    width: 100%;
    height: auto;
}

/* DOMAINS */
.domains-section {
    background-color: #eaeaea;
    padding: 50px 0;
    text-align: center;
}

.domain-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.domain-icon {
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.domain-icon img {
    width: 100px;
    height: auto;
}

.domain-title {
    font-weight: bold;
    margin-top: 10px;
    color: white;
    font-size: 22px;
}

.btn-custom {
    border: 1px solid var(--dark-gray-shade);
    padding: 25px 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    color: var(--dark-gray-shade);
    font-size: 12px;
    font-weight: bold;
    width: 100%;
}

.btn-custom:hover {
    background-color: black;
    color: white;
}

/* TESTIMONIALS 2 PROGRAMS */
.testimonial-formation-section {
    padding-bottom: 60px;
    text-align: center;
    color: var(--dark-gray-shade);
}

.testimonial-formation-card {
    text-align: center;
    max-width: 350px;
    margin: auto;
}

.testimonial-formation-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-right: 10px solid var(--primary-color);
}

.testimonial-formation-text {
    font-size: 16px;
    color: var(--dark-gray-shade);
    margin: 15px 0;
}

.testimonial-formation-name {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

.testimonial-formation-university {
    font-size: 14px;
    color: #777;
}

.divider {
    width: 50px;
    border: 1px solid var(--dark-gray-shade);
    margin: 1rem auto;
}

/* ACTUALITE */
.actualite-section {
    color: var(--dark-gray-shade);
    width: 80%;
    margin: auto;
}

.img-actualite {
    width: 100%;
    object-fit: cover;
}

.share-actualite {
    color: var(--dark-gray-shade);
}


/* TESTIMONIALS */
.testimonial-only-container {
    margin: 80px;
    background: white;
}

.container-testimonial {
    width: 80%;
}

.testimonial-only-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-only-card {
    padding: 1.5rem;
    border: 1px solid #ddd;
    position: relative;
}

.testimonial-only-quote-icon {
    top: 0;
    right: 0;
}

.quote-box {
    width: 80px;
    height: 80px;
    background: var(--dark-white-shade);
    display: flex;
    align-items: center;
    justify-content: center;
}


.testimonial-only-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-only-image-wrapper {
    position: relative;
    border-right: 2px solid var(--orange);
    padding-right: 1rem;
    flex-shrink: 0;
}

.testimonial-only-user-image {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 0;
    border-right: 10px solid var(--primary-color);
}

.testimonial-only-user-info {
    align-self: flex-end;
}

.testimonial-only-user-name {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-only-user-uni {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-only-comment {
    width: 100%;
}

.testimonial-only-comment p {
    margin: 0;
    line-height: 1.6;
    color: #444;
}


@media (max-width: 768px) {
    .testimonial-only-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT */


.contact-section {
    padding-top: 4rem;
}

.contact-container {
    /* max-width: 1200px;
    margin: 0 auto; */
    padding: 0 1rem;
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-square {
    width: 60px;
    height: 60px;
    background: var(--lighter-gray-shade);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-square i {
    color: var(--dark-gray-shade);
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.contact-right {
    border: 2px solid var(--border-color);
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--light-gray-shade);
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--lighter-gray-shade);
    background: var(--lighter-gray-shade);
    border-radius: 0;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}



.map-container {
    position: relative;
    background: #fff;
}

.map-container iframe {
    filter: grayscale(100%) invert(100%) contrast(90%) hue-rotate(180deg);
}

.gm-style .gm-style-iw,
.gm-style .gm-bundled-control,
.gm-style .gmnoprint:not([role='button']) {
    display: none !important;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* CANDIDATURE */
.candidature-section {
    padding: 4rem 0;
    background: white;
}

.candidature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.candidature-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spontaneous-form {
    max-width: 700px;
    /* ~col-7 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-single,
.form-row-double {
    width: 100%;
}

/* .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--gray-bg);
    border-radius: 0;
} */

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.file-upload {
    position: relative;
    height: 150px;
}

.file-container {
    width: 100%;
    height: 100%;
    background: var(--lighter-gray-shade);
    border: 1px solid var(--lighter-gray-shade);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    padding: 1rem;
}

.file-container i {
    color: var(--dark-gray-shade);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-container span {
    font-size: 0.9rem;
    color: #666;
}



@media (max-width: 768px) {
    .form-row-double {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .file-upload {
        height: 120px;
    }
}

/* CAREER */
.innovation-section {
    padding: 50px 0;
}

/* Title */
.innovation-title {
    font-size: 28px;
    font-weight: bold;
    color: #FF3B2F;
    /* Red */
    margin-bottom: 20px;
}

/* Description */
.innovation-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Image Container */
.image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Button */
.btn-orange {
    background-color: #FF3B2F;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #D62F26;
}

.arrow-icon {
    font-size: 18px;
}


/* JOB SECTION */


.job-section {
    padding: 50px 0;
    background-color: var(--lightest-gray-shade);
}

.section-title {
    font-size: 30px;
    color: var(--dark-gray-shade);
}

.job-title {
    font-size: 24px !important;
    color: var(--dark-gray-shade);
}

.section-description {
    margin-bottom: 20px;
    color: var(--dark-gray-shade);
}

/* Job List Styles */
.job-list {
    display: flex;
    flex-direction: column;
}

.job-btn {
    border: none;
    text-align: left;
    padding: 9px 0;
    color: #363636;
    font-size: 15px;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: 0.3s;
    background-color: transparent;
    margin-bottom: 10px;
}

.job-btn:hover,
.job-btn.active {
    background-color: white;
}

/* Job Details */
.job-details {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.job-details div img {
    width: 40px;
    margin-right: 10px;
}

.job-details h3 {
    font-size: 22px;
    color: var(--dark-gray-shade);
}
.job-details h2 {
    font-weight: 400;
    color: #3c3b3c;
    margin-bottom: 16px;
    font-size: 27px;
}

.job-details p {
    color: var(--dark-gray-shade);
    font-size: 14px;
    margin-bottom: 11px;
}

.job-description {
    margin: 20px 0;
}


.place-card.place-card-large {
    display: none !important;
}
.p-mission{
    float: left;
    line-height: 21px;
    margin-top: 5px;
}