/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color:rgb(92, 90, 90);
    
}

 h2, h3, h4, h5, h6 {
    color: #333;
    margin: 0;
}

/* Navbar */
.navbar {
    background-color: white;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: #ff4321;
}

.navbar-nav .nav-link {
    color: #333;
    margin: 0 15px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ff4321;
}

.btn-primary {
    background-color: #ff4321;
    border-color: #ff4321;
}

.btn-primary:hover {
    background-color: #d9361a;
    border-color: #d9361a;
}

/* Hero Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    
}
main {
    background: linear-gradient(to bottom, white 40%, rgb(245, 243, 243) 50%);
    min-height: 100vh;
    padding-top: 50px;
}
.pattern-square {
    background-color:white;
    height: 50px;
    margin-bottom: 30px;
}

h1 span {
    color: #ff4321;
}

.lead {
    font-size: 18px;
    color: #555;
    
}



.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

/* Feature Section */
.feature-testimonial-section {
    display: flex;
    flex-wrap: wrap;
    
    margin-top: 0;
}

.feature-item {
    background-color: #fff;
    padding: 0;
    margin: 0;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 20px;
    color: #ff4321;
    margin-bottom: 5px;
}

.feature-item h5 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #777;
}

/* Newsletter Section */
.bg-light-subtle {
    background-color: #f8f9fa;
    padding: 0 0;
}

.fs-1 {
    font-size: 32px;
    color: #333;
}

.invalid-feedback {
    display: none;
}

input:invalid + .invalid-feedback {
    display: block;
}

input:focus:invalid {
    border-color: #dc3545;
}

.btn-dark {
    background-color: #333;
    border-color: #333;
}

.btn-dark:hover {
    background-color: #555;
    border-color: #555;
}

/* Footer */
.footer-links a {
    color: #333;
    margin-right: 15px;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff4321;
}

.footer-info {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    text-align: center;
}

/* Scroll to Top Button */
.btn-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff4321;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-scroll-top:hover {
    background-color: #d9361a;
}

.btn-scroll-top svg {
    width: 24px;
    height: 24px;
}

main {
    background-color: #cbced1;
    padding: 20px;
}
.dropdown-menu .container {
    width: auto; 
    padding: 10px; 
}

.dropdown-menu .row {
    margin: 0; 
}
.dropdown-menu  {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
    padding: 20px;
    column-count: 3;
      
      
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f0f0f0; 
}

.dropdown-item i {
    font-size: 24px;
    color: #ff4321; /* La couleur de vos icônes */
}

