/* hero.css */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/img/fleet-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
 }
 
 /* features.css */
 .feature-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
 }
 
 .feature-card:hover {
    transform: translateY(-5px);
 }
 
 .feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
 }
 
 /* stats.css */
 .stats-section {
    background: #f8f9fa;
    padding: 80px 0;
 }
 
 .stat-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
 }
 
 .stat-card .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
 }
 
 /* testimonials.css */
 .testimonials {
    padding: 80px 0;
    background: #ffffff;
 }
 
 .testimonial-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background: white;
    height: 100%;
 }
 
 .testimonial-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
 }
 
 /* cta.css */
 .cta-section {
    background: linear-gradient(45deg, #007bff, #0056b3);
    padding: 60px 0;
 }
 
 .cta-section .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    transition: all 0.3s ease;
 }
 
 /* Responsive Styles */
 @media (max-width: 768px) {
    .hero { padding: 100px 0; }
    .hero h1 { font-size: 2rem; }
    .feature-card { margin-bottom: 20px; }
    .stat-card { margin-bottom: 20px; }
    .testimonial-card { margin-bottom: 20px; }
 }

 .feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 }
 
 .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 }
 
 .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
 }
 
 .icon-box i {
    font-size: 30px;
    color: white;
 }
 
 .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
 }
 
 .feature-list {
    list-style: none;
    padding: 0;
 }
 
 .feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
 }
 
 .feature-list li:before {
    content: "✓";
    color: #007bff;
    font-weight: bold;
    margin-right: 10px;
 }
 
 @media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
 }
 .stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
 }
 
 .stats-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
 }
 
 .highlight {
    color: #007bff;
    font-weight: 600;
 }
 .metric-column {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
 }
 
 .metric-column:hover {
    transform: translateY(-5px);
 }
 
 .metric-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .metric-icon i {
    font-size: 30px;
    color: linear-gradient(45deg, #007bff, #00bfff)
 }
 
 .metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
 }
 
 .metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
 }
 
 .metric-detail {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    min-height: 40px;
 }
 
 @media (max-width: 768px) {
    .metric-column {
        margin-bottom: 20px;
    }
 }
 .feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 }
 
 .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
 }
 
 .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Empêche la réduction de l'icône */
    border-radius: 15px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
 }
 
 .icon-box i {
    font-size: 24px;
    color: white;
 }
 
 .feature-card h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #2c3e50;
 }

 .testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
 }
 
 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
 }
 
 .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
 }
 
 .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 }
 
 .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
 }
 
 .quote-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .quote-icon i {
    color: white;
    font-size: 18px;
 }
 
 .testimonial-content {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
 }
 
 .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
 }
 
 .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #007bff;
 }
 
 .author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
 }
 
 .author-info span {
    font-size: 0.9rem;
    color: #6c757d;
 }
 
 .company-logo {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
 }
 
 .company-logo img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
 }
 
 .company-logo img:hover {
    opacity: 1;
 }
 
 @media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 40px;
    }
 }
 .hero {
    background: url('/img/engin.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0;
    position: relative;
    z-index: 99;
 }
 
 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
 }
 
 .hero .container {
    position: relative;
    z-index: 2;
 }
 
 .hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
 }
 
 .hero .lead {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
 }
 
 .btn-primary {
    background: linear-gradient(45deg, #007bff, #00bfff);
    border: none;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
 }
 
 .btn-outline-light {
    border-width: 2px;
    text-shadow: none;
 }
 
 @media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }
 }
