
            /* Navbar styles */
            .navbar-custom {
                background-color: #003247 !important;
                transition: all 0.3s ease;
                padding: 15px 0;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .navbar-custom.scrolled {
                padding: 8px 0;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
            }

            .navbar-brand-custom {
                display: flex;
                align-items: center;
                text-decoration: none;
                color: white !important;
                transition: all 0.3s ease;
            }

            .navbar-brand-custom:hover {
                color: #ffc107 !important;
            }

            .profile-img {
                width: 60px;
                height: 60px;
                margin-right: 15px;
                transition: all 0.3s ease;
                border: 2px solid #ffc107;
                border-radius: 50% !important; /* ← Rend l'image ronde */
                object-fit: cover; /* ← Maintient les proportions */
            }

            .navbar-custom.scrolled .profile-img {
                width: 45px;
                height: 45px;
                margin-right: 10px;
            }

            .brand-info {
                transition: all 0.3s ease;
            }

            .brand-name {
                font-size: 1.4em;
                font-weight: bold;
                color: white;
                line-height: 1.2;
                transition: all 0.3s ease;
            }

            .navbar-custom.scrolled .brand-name {
                font-size: 1.2em;
            }

            .brand-title {
                font-size: 0.9em;
                color: #ffc107;
                line-height: 1.1;
                transition: all 0.3s ease;
            }

            .navbar-custom.scrolled .brand-title {
                font-size: 0.8em;
            }

            .brand-location {
                font-size: 0.75em;
                color: whitesmoke;
                line-height: 1.1;
                transition: all 0.3s ease;
            }

            .navbar-custom.scrolled .brand-location {
                font-size: 0.7em;
            }

            .navbar-nav .nav-link {
                color: rgba(255, 255, 255, 0.8) !important;
                font-weight: 500;
                margin: 0 5px;
                padding: 8px 12px !important;
                border-radius: 20px;
                transition: all 0.3s ease;
                white-space: nowrap;
            }

            .navbar-nav .nav-link:hover {
                color: #ffc107 !important;
                background-color: rgba(255, 193, 7, 0.1);
            }

            .navbar-nav .nav-link.active {
                color: #ffc107 !important;
                background-color: rgba(255, 193, 7, 0.2);
            }

            .navbar-toggler {
                border: none;
                padding: 5px 8px;
            }

            .navbar-toggler:focus {
                box-shadow: none;
            }

            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }

            /* Page styles */
            body {
                font-family: 'Muli', sans-serif;
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                min-height: 100vh;
            }

            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .page-title {
                font-family: 'Saira Extra Condensed', sans-serif;
                font-size: 4rem;
                font-weight: 700;
                color: #003247;
                text-align: center;
                margin-bottom: 60px;
                position: relative;
                text-transform: uppercase;
                letter-spacing: 2px;
            }

            .page-title::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, #ffc107, #003247);
                border-radius: 2px;
            }

            .experience-card {
                background: white;
                border-radius: 20px;
                padding: 40px;
                margin-bottom: 40px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 50, 71, 0.1);
                position: relative;
                overflow: hidden;
            }

            .experience-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(135deg, #ffc107, #003247);
            }

            .experience-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

            .company-name {
                color: #003247;
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 10px;
                font-family: 'Saira Extra Condensed', sans-serif;
            }

            .job-title {
                color: #ffc107;
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 25px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .task-item {
                margin-bottom: 20px;
                padding-left: 10px;
                border-left: 3px solid rgba(255, 193, 7, 0.3);
                transition: all 0.3s ease;
            }

            .task-item:hover {
                border-left-color: #ffc107;
                padding-left: 15px;
            }

            .task-bullet {
                color: #003247;
                font-size: 1.2em;
                margin-right: 10px;
                font-weight: bold;
            }

            .task-title {
                color: #003247;
                font-weight: 700;
                margin-bottom: 5px;
            }

            .task-description {
                color: #495057;
                line-height: 1.6;
                font-size: 1.05rem;
            }

            .date-location {
                text-align: right;
                padding: 20px 0;
            }

            .date-badge {
                background: linear-gradient(135deg, #003247, #004d66);
                color: white;
                padding: 10px 20px;
                border-radius: 25px;
                font-weight: 600;
                font-size: 1.1rem;
                display: inline-block;
                margin-bottom: 10px;
                box-shadow: 0 4px 15px rgba(0, 50, 71, 0.3);
            }

            .location-info {
                color: #6c757d;
                font-size: 0.95rem;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 5px;
            }

            .location-icon {
                color: #dc3545;
            }

            .project-objective {
                background: rgba(255, 193, 7, 0.1);
                border-left: 4px solid #ffc107;
                padding: 20px;
                border-radius: 0 15px 15px 0;
                margin-bottom: 25px;
                font-style: italic;
                color: #495057;
                position: relative;
            }

            .project-objective::before {
                content: '"';
                font-size: 3rem;
                color: #ffc107;
                position: absolute;
                top: -10px;
                left: 10px;
                opacity: 0.5;
            }

            /* Responsive adjustments */
            @media (max-width: 991px) {
                .brand-info {
                    margin-right: 10px;
                }
                
                .brand-name {
                    font-size: 1.2em;
                }
                
                .brand-title {
                    font-size: 0.8em;
                }
                
                .brand-location {
                    font-size: 0.7em;
                }

                .navbar-nav {
                    flex-direction: column !important;
                    margin-top: 10px;
                }

                .navbar-nav .nav-link {
                    margin: 2px 0;
                    text-align: center;
                }

                .page-title {
                    font-size: 3rem;
                }

                .experience-card {
                    padding: 25px;
                }

                .date-location {
                    text-align: left;
                    margin-top: 20px;
                }
            }

            @media (max-width: 576px) {
                .profile-img {
                width: 60px;
                height: 60px;
                margin-right: 15px;
                transition: all 0.3s ease;
                border: 2px solid #ffc107;
                border-radius: 50% !important; /* Ajout du border-radius pour le cercle */
                object-fit: cover; /* Pour que l'image garde ses proportions */
                display: inline-block;
            }

            .navbar-custom.scrolled .profile-img {
                width: 45px;
                height: 45px;
                margin-right: 10px;
            }
                
                .brand-name {
                    font-size: 1.1em;
                }
                
                .brand-title {
                    font-size: 0.75em;
                }
                
                .brand-location {
                    font-size: 0.65em;
                }

                .page-title {
                    font-size: 2.5rem;
                }

                .experience-card {
                    padding: 20px;
                    margin-bottom: 30px;
                }

                .company-name {
                    font-size: 1.6rem;
                }

                .job-title {
                    font-size: 1.1rem;
                }
            }
