
:root {
    --primary-color: #000;
    --secondary-color: #d4af37;
    --accent-color: #fff;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    --border-radius: 15px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
    transition: var(--transition);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


body[dir="rtl"] {
    text-align: right;
}

body[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

body[dir="rtl"] .mobile-nav-links a:hover,
body[dir="rtl"] .mobile-nav-links a.active {
    padding-left: 0;
    padding-right: 10px;
}

body[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

body[dir="rtl"] .mobile-nav-links {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

body[dir="rtl"] .mobile-nav-links.active {
    transform: translateX(0);
}

body[dir="rtl"] .story-content {
    direction: rtl;
}

body[dir="rtl"] .team-member .member-info {
    text-align: center;
}

body[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-bg);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav-links.active {
    transform: translateX(0);
}

.mobile-nav-links li {
    list-style: none;
    margin-bottom: 0;
}

.mobile-nav-links a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--secondary-color);
    padding-left: 10px;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}


.language-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 300px;
}


section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}


.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.2) 100%);
    margin-top: var(--header-height);
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6);
}

.about-hero-content {
    max-width: 800px;
    padding: 40px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}


.our-story {
    background: var(--accent-color);
    overflow: hidden;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animated-paragraph {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animated-paragraph:nth-child(2) {
    animation-delay: 0.3s;
}

.animated-paragraph:nth-child(3) {
    animation-delay: 0.6s;
}

.animated-paragraph:nth-child(4) {
    animation-delay: 0.9s;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}


.letter-animation {
    display: inline-block;
    position: relative;
}

.letter-animation span {
    opacity: 0;
    transform: translateY(20px);
    animation: letterReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: inline-block;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease 1.2s forwards;
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


html {
    scroll-behavior: smooth;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .letter-animation span {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .animated-paragraph:nth-child(2) {
        animation-delay: 0.2s;
    }

    .animated-paragraph:nth-child(3) {
        animation-delay: 0.4s;
    }

    .animated-paragraph:nth-child(4) {
        animation-delay: 0.6s;
    }

    .letter-animation span {
        animation-delay: calc(0.01s * var(--i, 0)) !important;
    }
}


.mission-details,
.vision-details {
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    text-align: left;
    
}

.mission-details li i,
.vision-details li i {
    margin-top: 3px;
    
    min-width: 18px;
    
}

.mission-vision {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.mission-card p,
.vision-card p {
    text-align: left;
    
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--accent-color);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card {
    border-top: 5px solid var(--secondary-color);
}

.vision-card {
    border-top: 5px solid #333;
}

.mission-icon,
.vision-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.vision-icon {
    color: #333;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}


.our-values {
    background: var(--accent-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}



.our-team {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    gap: 40px;
    
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--accent-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 20px;
    
    min-width: 280px;
    
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    position: relative;
    height: 600px;
    
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    
    text-align: center;
}

.member-info h4 {
    font-size: 1.6rem;
    
    margin-bottom: 10px;
    
    color: var(--primary-color);
}

.member-info p {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    
}

.member-social a {
    color: var(--secondary-color);
    font-size: 20px;
    
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        
    }
}


@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        
    }
}



.why-choose-us {
    background: var(--accent-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-primary);
    color: var(--primary-color);
}

.reason-card:hover h4,
.reason-card:hover p {
    color: var(--primary-color);
}

.reason-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.reason-card:hover .reason-icon {
    color: var(--primary-color);
}

.reason-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}


.partners {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    background: var(--accent-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}


.about-final-cta {
    background: var(--gradient-dark);
    color: var(--accent-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-final-cta .section-title h2 {
    color: var(--secondary-color);
}

.about-final-cta .section-title p {
    color: #ccc;
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}



.seo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0055A4, #EF4135);
    
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 10px 5px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.seo-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(63, 81, 181, 0.3);
}

.seo-badge i {
    margin-right: 8px;
}


.services-hero {
    opacity: 0;
}

.services-hero.loaded {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.french-specialist {
    background: rgba(0, 85, 164, 0.1);
    border-left: 4px solid #0055A4;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

footer {
    background: var(--gradient-dark);
    color: var(--accent-color);
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-bottom: 15px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-about p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #999;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}


.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}


.back-to-top {
    position: fixed;
    bottom: 130px;
    
    right: 40px;
    background: #3498db;
    
    background: var(--secondary-color, #3498db);
    color: white;
    color: var(--primary-color, white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow-lg, 0 5px 15px rgba(0, 0, 0, 0.2));
    z-index: 999;
    transition: all 0.3s ease;
    transition: var(--transition, all 0.3s ease);
    text-decoration: none;

    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    cursor: pointer;
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2980b9;
    
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    box-shadow: var(--shadow-xl, 0 10px 25px rgba(0, 0, 0, 0.3));
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


@media (max-width: 1200px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {

    .nav-links,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }

    .about-hero {
        min-height: 60vh;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .mission-vision-grid,
    .values-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .partner-logo {
        height: 100px;
        padding: 20px;
    }

    .language-notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .mission-card,
    .vision-card {
        padding: 40px 25px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-number {
        font-size: 2.8rem;
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



.fondateur-projects {
    margin-top: 10px;
}

.fondateur-projects h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
    background: #eef5ff;
}

.project-item strong {
    color: var(--primary-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.project-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}


.social-link.phone {
    background: #28a745;
    color: white;
}

.member-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.member-image {
    position: relative;
}

.social-link.phone:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}





@media (max-width: 768px) {
    .fondateur-projects {
        margin-top: 20px;
    }

    .project-item {
        padding: 12px;
    }
}



.fondateur-section {
    max-width: 1300px;
    margin: 0 auto 60px;
}

.fondateur-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.fondateur-section .section-title h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fondateur-section .section-title p {
    color: #666;
    font-size: 1.1rem;
}

.fondateur-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 500px 1fr;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fondateur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.fondateur-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.fondateur-image img {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    
    transition: transform 0.5s ease;
}

.fondateur-card:hover .fondateur-image img {
    transform: scale(1.05);
}

.fondateur-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.fondateur-badge i {
    font-size: 1rem;
}

.fondateur-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fondateur-header h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.fondateur-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.fondateur-experience {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.experience-badge {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.fondateur-quote {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.fondateur-quote i:first-child {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.fondateur-quote i:last-child {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.fondateur-quote p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

.fondateur-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 24px;
}

.detail-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-item strong {
    color: #333;
    font-size: 0.95rem;
}

.detail-item span {
    color: #666;
    font-size: 0.9rem;
}

.fondateur-expertise h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tags .expertise-tag {
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.expertise-tags .expertise-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.fondateur-social {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.1rem;
}

.social-link.linkedin {
    background: #0077b5;
    color: white;
}

.social-link.linkedin:hover {
    background: #005582;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.social-link.email {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.social-link.email:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
    .fondateur-card {
        grid-template-columns: 300px 1fr;
    }

    .fondateur-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .fondateur-card {
        grid-template-columns: 1fr;
    }

    .fondateur-image {
        height: 400px;
        
    }

    .fondateur-image img {
        object-position: center 25%;
        
    }

    .fondateur-info {
        padding: 25px;
    }

    .fondateur-social {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fondateur-image {
        height: 350px;
        
    }

    .fondateur-image img {
        object-position: center 20%;
        
    }

    .fondateur-experience {
        flex-direction: column;
    }

    .expertise-tags {
        justify-content: center;
    }

    .fondateur-quote {
        padding: 20px 15px;
    }

    .fondateur-quote p {
        padding: 0 10px;
    }
}