/* Variables */
:root {
    --primary-color: #f77f00;
    --primary-color-light: rgba(247, 127, 0, 0.05);
    --secondary-color: #e76f00;
    --accent-color: #ff9800;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
    --header-height: 8rem;
    --fa-primary-color: var(--accent-color) !important;
    --fa-secondary-color: #333333 !important;
    --fa-primary-opacity: 1 !important;
    --fa-secondary-opacity: 1 !important;
}

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

html {
    font-size: 62.5%; /* 10px pour faciliter les calculs rem */
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3.4rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Cal Sans', sans-serif;
    letter-spacing: 2px;
}

h3 {
    font-size: 2.4rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
}

/* Effet de titre avec rectangle */
.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3.4rem;
    display: inline-block;
    position: relative;
    font-weight: 600;
    color: var(--text-color);
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.section-subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 3.4rem;
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.centered-btn {
    display: block;
    width: max-content;
    margin: 3rem auto 0;
}

.large-btn {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

.sub-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Header */
header {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.header-scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-text {
    position: absolute;
    right: 2rem;
}

.logo img {
    height: 12rem;
    transition: var(--transition);
}

/* Bouton Candidater dans le header */
.header-btn {
    font-size: 1.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: var(--transition);
}

.header-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.header-btn i {
    font-size: 1.6rem;
}

/* Hero section */
.hero {
    background-color: var(--light-gray);
    padding: 2rem 0 6rem;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 4rem;
    min-height: 13rem;
}

.hero-header .logo {
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-header .logo img {
    height: 12rem;
    transition: var(--transition);
}

.hero-header .header-text {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.hero h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

.student-image {
    margin: 4rem auto;
    max-width: 30rem;
}

.student-image img {
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    width: 15rem;
    height: 15rem;
    object-fit: cover;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    flex: 1 1 20rem;
    max-width: 25rem;
}

.info-card i {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.8rem;
}

/* Specializations section */
.specializations {
    background-color: var(--white);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 100%;
}

/* Parcours styles */
.specialization-card-container {
    width: 100%;
    margin: 0;
    height: auto;
    position: relative;
}

.specialization-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.specialization-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specialization-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.specialization-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialization-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex-grow: 1;
    background-color: #fff;
}

.specialization-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 600;
}

.level-info, .duration-info {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.4;
}

.level-info {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.duration-info {
    margin-bottom: 2rem;
    font-style: italic;
}

.specialization-card-content .btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    border: none;
    text-align: center;
    min-width: 140px;
}

.specialization-card-content .btn:hover {
    background-color: var(--secondary-color);
    transform: none;
}

/* Reasons section */
.reasons {
    background-color: var(--light-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.8rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
}

.reason-card p {
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
}

/* Group info section */
.group-info {
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.group-info h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.group-info h2 {
    font-size: 3.6rem;
    margin-bottom: 3rem;
}

.group-features {
    max-width: 90rem;
    margin: 0 auto;
}

.group-features p {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
}

.group-features p:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Internship section */
.internship {
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
}

.internship h2 {
    margin-bottom: 2rem;
}

.internship p {
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

.internship .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.internship .btn:hover {
    background-color: var(--light-gray);
}

/* Admission section */
.admission {
    background-color: var(--white);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    margin: 6rem 0;
    padding: 0 2rem;
}

.steps::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 33.333%;
}

.step i {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.step i::before {
    font-size: 2.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step i::after {
    content: attr(data-step);
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.step:nth-child(1) i::after {
    content: "1";
}

.step:nth-child(2) i::after {
    content: "2";
}

.step:nth-child(3) i::after {
    content: "3";
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    min-height: 4rem;
}

.step p {
    font-size: 1.4rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* Campus section */
.campus {
    background-color: var(--primary-color-light);
    padding: 6rem 0;
}

.campus p {
    max-width: 80rem;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
    color: var(--text-color);
}

.campus-single {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    max-width: 120rem;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    gap: 6rem;
}

.campus-image {
    flex: 1 1 60%;
    min-width: 30rem;
    position: relative;
    height: auto;
    min-height: 50rem;
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.campus-info {
    flex: 1 1 40%;
    padding: 2rem 0;
    text-align: left;
}

.campus-info h3 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: left;
}

.campus-features {
    margin-bottom: 3rem;
}

.campus-feature {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.campus-feature:hover {
    transform: translateY(-3px);
}

.campus-feature i {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-right: 2rem;
    flex-shrink: 0;
    width: 2.4rem;
    display: flex;
    justify-content: center;
}

.campus-feature p {
    margin: 0;
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.4;
}

.campus-description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.campus .section-title,
.campus .section-subtitle-text {
    color: var(--text-color);
}

@media (max-width: 992px) {
    .campus-single {
        flex-direction: column;
        gap: 4rem;
    }

    .campus-image {
        min-height: 40rem;
        width: 100%;
    }

    .campus-info {
        padding: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .campus-image {
        min-height: 30rem;
    }
    
    .campus-feature {
        padding: 1.5rem;
    }
}

/* Alumni section */
.alumni {
    background-color: var(--white);
    text-align: center;
}

.alumni p {
    max-width: 80rem;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.alumni-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.alumni-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    flex: 1 1 30rem;
    max-width: 35rem;
    display: flex;
    flex-direction: column;
}

.alumni-card img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
}

.alumni-info {
    padding: 2rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.alumni-desc {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.alumni-name {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-top: auto;
}

/* Jobs section */
.jobs {
    background-color: var(--light-gray);
    text-align: center;
}

.jobs p {
    max-width: 80rem;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.jobs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.job-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    font-weight: 700;
    text-transform: none;
    box-shadow: var(--box-shadow);
    flex: 1 1 20rem;
    max-width: 25rem;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    color: var(--white);
}

/* CTA section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta p {
    max-width: 80rem;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
}

.cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-gray);
}

/* Contact section */
.contact {
    background-color: var(--white);
    padding: 6rem 0;
}

.contact .section-subtitle {
    max-width: 80rem;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: stretch;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-image {
    flex: 1 1 40%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-form-container {
    flex: 1 1 50%;
    padding: 3.5rem;
}

form {
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.checkbox label {
    font-weight: 400;
    font-size: 1.4rem;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

button[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.privacy-notice {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Thank you page */
.thank-you {
    background-color: var(--light-gray);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .info-cards, .specializations-grid, .reasons-grid, .campus-grid {
        gap: 2rem;
    }
    
    .specialization-card-container {
        width: calc(50% - 2rem);
    }
    
    .specialization-card {
        padding: 2.5rem 1.5rem;
    }
    
    .campus-single {
        flex-direction: column;
    }
    
    .campus-image, .campus-info {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .campus-image {
        max-height: 40rem;
    }
    
    .specializations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 7rem;
    }
    
    html {
        font-size: 54%;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle-text {
        font-size: 2.8rem;
    }
    
    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        width: 100%;
        max-width: 40rem;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .alumni-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .alumni-card {
        width: 100%;
        max-width: 40rem;
    }
    
    .campus-info {
        padding: 3rem 2rem;
    }
    
    .campus-info h3 {
        font-size: 2.2rem;
    }
    
    .campus-feature i {
        font-size: 2rem;
    }
    
    .specialization-card-container {
        width: calc(100% - 2rem);
        max-width: 450px;
        margin: 1rem auto;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 4rem;
    }

    .steps::after {
        display: none;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .step h3 {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 6rem;
    }
    
    html {
        font-size: 52%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle-text {
        font-size: 2.4rem;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 40rem;
    }
    
    .specializations-grid, .reasons-grid, .campus-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        flex: 1 1 100%;
        max-width: 40rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .campus-image {
        max-height: 30rem;
    }
}

/* Partners section */
.partners {
    background-color: var(--white);
    padding: 6rem 0;
    overflow: hidden;
}

.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 5rem;
}

.logos-track {
    display: flex;
    white-space: nowrap;
    animation: logoScroll 40s linear infinite;
    width: fit-content;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.logo-slide {
    flex: 0 0 auto;
    min-width: 20rem;
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 0.25rem;
}

.logo-slide img {
    max-width: 100%;
    max-height: 12rem;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.logo-slide:hover img {
    opacity: 1;
}

/* Pause l'animation au survol du slider */
.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/* Media query pour adapter la vitesse sur mobile */
@media (max-width: 768px) {
    .logos-track {
        animation-duration: 25s;
    }
    
    .logo-slide {
        min-width: 18rem;
        height: 12rem;
    }
    
    .logo-slide img {
        max-height: 10rem;
    }
}

/* Alumni network section */
.alumni-network {
    background-color: #f9f7fa;
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.alumni-network-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.alumni-info-text {
    flex: 0 0 48%;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

.alumni-info-text h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 100%;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0;
    text-align: left;
}

.alumni-info-text p {
    font-size: 1.7rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 85%;
}

.alumni-info-text .btn {
    margin-top: 2rem;
    background-color: var(--primary-color);
    border-radius: 5px;
    font-size: 1.6rem;
    padding: 1.2rem 2.8rem;
    transition: background-color 0.3s;
}

.alumni-info-text .btn:hover {
    background-color: var(--secondary-color);
}

.alumni-slider-container {
    flex: 0 0 48%;
    position: relative;
    height: 60rem;
    overflow: hidden;
}

.alumni-slider-track {
    display: flex;
    flex-direction: column;
    animation: alumniScrollVertical 30s linear infinite;
    position: absolute;
    top: 0;
    width: 100%;
}

@keyframes alumniScrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50%));
    }
}

.alumni-profile {
    width: 100%;
    margin-bottom: 2.5rem;
}

.alumni-card-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.alumni-card-container:hover {
    transform: translateY(-5px);
}

.alumni-card-container img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 2.5rem;
}

.alumni-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alumni-promotion {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    letter-spacing: 0.05rem;
}

.alumni-details h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
    line-height: 1.2;
}

.alumni-position {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.4;
}

.alumni-company {
    margin-top: auto;
    max-width: 100%;
    height: 4rem;
}

.alumni-company img {
    height: 4rem;
    width: auto;
    max-width: 15rem;
    margin: 0;
    border-radius: 0;
    object-fit: contain;
    object-position: left;
}

/* Pause l'animation au survol du slider */
.alumni-slider-container:hover .alumni-slider-track {
    animation-play-state: paused;
}

/* Media queries pour responsive */
@media (max-width: 992px) {
    .alumni-network-content {
        flex-direction: column;
    }
    
    .alumni-info-text, .alumni-slider-container {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .alumni-info-text h2, 
    .alumni-info-text p {
        max-width: 100%;
    }
    
    .alumni-slider-container {
        height: 40rem;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .alumni-network {
        padding: 6rem 0;
    }
    
    .alumni-info-text h2 {
        font-size: 3.6rem;
    }
    
    .alumni-card-container {
        padding: 2rem;
    }
    
    .alumni-card-container img {
        width: 8rem;
        height: 8rem;
        margin-right: 2rem;
    }
}

@media (max-width: 576px) {
    .alumni-network {
        padding: 5rem 0;
    }
    
    .alumni-info-text h2 {
        font-size: 3rem;
    }
    
    .alumni-slider-container {
        height: 35rem;
    }
    
    .alumni-card-container {
        padding: 1.5rem;
    }
    
    .alumni-card-container img {
        width: 7rem;
        height: 7rem;
        margin-right: 1.5rem;
    }
}

/* Hero slider */
.hero-slider {
    background-color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 2rem auto 2rem;
    width: 100%;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-slider {
    max-width: 100%;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(247, 127, 0, 0.4) 50%, rgba(247, 127, 0, 0.0) 100%);
    z-index: 1;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    padding: 5rem;
    color: var(--white);
    width: 50%;
    text-align: left;
}

.hero-slider-content h2 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: left;
}

.hero-slider-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-slider-content h3 {
    text-align: left;
}

.hero-slider .btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    text-transform: uppercase;
    border-radius: 50px;
}

.hero-slider .btn:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .hero-slider {
        border-radius: 15px;
    }
    
    .hero-slider-content {
        width: 60%;
        padding: 4rem;
    }
    
    .hero-slider-content h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-content {
        width: 100%;
        padding: 3.5rem;
        text-align: center;
    }
    
    .hero-slider::before {
        background: linear-gradient(0deg, var(--primary-color) 0%, rgba(247, 127, 0, 0.8) 70%, rgba(247, 127, 0, 0.5) 100%);
    }
    
    .hero-slider-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        border-radius: 10px;
    }
    
    .hero-slider-content {
        padding: 3rem 2rem;
    }
    
    .hero-slider-content h2 {
        font-size: 3rem;
    }
    
    .hero-slider-content p {
        font-size: 1.6rem;
    }
    
    .hero-slider .btn {
        font-size: 1.6rem;
        padding: 1.2rem 2.5rem;
    }
}

/* Icônes Font Awesome */
.far, .fas {
    font-size: 4em; /* 4 fois plus grand que la taille par défaut */
}

/* Pour les icônes, on adapte la couleur avec notre couleur primaire */
:root {
    --fa-primary-color: var(--primary-color);
    --fa-secondary-color: #333333;
}

.floating-candidater-btn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 1.3rem 2.5rem;
    font-size: 1.7rem;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    transition: background 0.2s, box-shadow 0.2s;
}
.floating-candidater-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.arrow-animate {
    display: inline-block;
    animation: arrow-move 1s infinite linear alternate;
    margin-right: 1rem;
}

@keyframes arrow-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}

.highlight_kw {
    background-color: #f77f00;
    color: white;
}

/* Infinite Marquee Styles */
.infinite-marquee {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.infinite-marquee::before,
.infinite-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.infinite-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.marquee-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-separator {
    color: white;
    margin: 0 1.5rem;
    font-weight: 700;
    font-size: 2.2rem;
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause l'animation au survol */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .infinite-marquee {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .marquee-container {
        max-width: 100%;
        margin: 0;
    }
}

/* Marquee Header Styles */
.marquee-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.marquee-title {
    color: #FF6B00;
    font-size: 1.4rem;
    text-align: center;
    margin: 2rem 0;
    font-weight: 500;
    text-transform: none;
}

.marquee-title .specialisation-name {
    font-weight: 600;
}

.marquee-description {
    font-size: 1.4rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.specialisation-description {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    padding: 0 1rem;
}

.specialisation-description-block {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.specialisation-description-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.specialisation-description-content i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0.3rem;
}

.specialisation-description-content p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #495057;
    text-align: left;
}

@media (max-width: 768px) {
    .specialisation-description-block {
        margin: 1.5rem 1rem;
    }
    
    .specialisation-description-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .specialisation-description-content i {
        margin-bottom: 0.5rem;
    }
}

.separator {
    color: white;
    font-size: 1.8rem;
    margin: 1rem 0;
    text-align: left;
}

.specialite-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    text-align: left;
    font-style: normal;
}

.debug-container.error {
    background-color: #fff5f5;
    border: 1px solid #ffcdd2;
}

.error-message {
    color: #d32f2f;
    font-weight: 500;
}

/* Ajout des styles pour la section des points forts */
.strengths-section {
    padding: 4rem 0;
    margin: 3rem 0;
}

.strengths-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    color: #333;
}

.strengths-list {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.strength-list-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 6rem;
}

.strength-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.strength-list-item .strength-icon {
    font-size: 3.5rem;
    margin-right: 2rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-list-item .strength-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #333;
    flex: 1;
    align-self: center;
}

/* Media queries pour le responsive */
@media (max-width: 768px) {
    .strengths-title {
        font-size: 2rem;
        padding: 0 1.5rem;
    }
    
    .strength-list-item {
        margin: 0 1.5rem 2rem 1.5rem;
        padding: 1.8rem;
    }
    
    .strength-list-item .strength-icon {
        font-size: 3rem;
        margin-right: 1.5rem;
        min-width: 4rem;
    }
    
    .strength-list-item .strength-text {
        font-size: 1.5rem;
    }
} 