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

/* Global Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

h1, h2, h3, h4 {
    font-weight: 600;
}

/* Header Section */
.hero-header {
    background: linear-gradient(to right, #290fa2, #81c784);
	background: url('../images/wigotec_background_4.png') center/cover no-repeat, linear-gradient(to right, #007BFF, #81c784);
    color: white;
    text-align: center;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-links .btn-primary {
    background: white;
    color: #290fa2;
    font-weight: bold;
}

.nav-links .btn-outline {
    border: 2px solid white;
    color: white;
}

/* Mobile Menu */
/*
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}
*/

/* Styles pour le menu mobile */
.mobile-nav-links {
    display: none; /* Caché par défaut */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Ajustez en fonction de la hauteur de votre header */
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
	background:#290fa2;
}

.mobile-nav-links a {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-nav-links .btn-primary {
    background: white;
    color: #290fa2;
    font-weight: bold;
}

.mobile-nav-links .btn-outline {
    border: 2px solid white;
    color: white;
}

/* Styles pour le bouton de bascule du menu mobile */
.mobile-menu-toggle {
    display: none; /* Caché par défaut sur les grands écrans */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
	
    .mobile-nav-links.active {
        display: flex; /* Afficher le menu mobile lorsqu'il est actif */
    }
	
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    margin: 5px;
}

.hero-buttons .btn-primary {
    background: white;
    color: #290fa2;
}

.hero-buttons .btn-secondary {
    background: #290fa2;
    color: white;
}

/* Features Section */
.features-section {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card-dark {
    background: #290fa2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card img {
    height: 80px;
    margin-bottom: 15px;
}

.feature-card i {
    font-size: 40px;
    color: #290fa2;
    margin-bottom: 15px;
}

.feature-card-dark i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.feature-card-dark h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
	color: #ffffff;
}

.feature-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.feature-card-dark p {
    color: #ffffff;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
}
.pricing-section2 {
    padding: 50px 20px;
    text-align: center;
    background: #feffe6;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.pricing-card2 {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    color: #290fa2;
    margin: 20px 0;
}

.pricing-card2 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card2 .price {
    font-size: 2rem;
    color: #290fa2;
    margin: 20px 0;
}


.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    margin-bottom: 10px;
}

.featured {
    border: 2px solid #290fa2;
}

/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 10px 20px;
    background: #290fa2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1 1 200px;
    max-width: 300px;
}

.footer-section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #290fa2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f8b400;
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f8b400;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

.footer-bottom p {
    margin: 0;
}

.chariot {
	display:none;
}


	.no-mobile{
		/*display: block;*/
	}
	.only-mobile{
		display: none !important;
	}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
	
	.chariot {
		display:block;
	}
	
	.no-mobile{
		display: none !important;
	}
	.only-mobile{
		display: block !important;
	}
}


.testimonials-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.testimonial-content {
    font-style: italic;
    color: #555;
}

.testimonial-content i {
    color: #290fa2;
    font-size: 24px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 20px;
}

.testimonial-author h4 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.testimonial-author p {
    font-size: 14px;
    color: #777;
}


.price img {
    width: 100%;
    max-width: 100%;
    height: auto; /* Garde les proportions */
}








/* ________________ ______________ ___________________ _________________*/

/* Styles généraux */

.text-muted {
    font-size: 16px;
    color: #6c757d;
}

/* Style de l'accordéon */
.accordion-item {
    border: none;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 5px;
}

.accordion-header {
    border-radius: 5px;
}

.accordion-button {
    background: #007bff;
    color: white;
    font-weight: bold;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background-color: #0056b3;
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 0 0 5px 5px;
    color: #495057;
}

/* Listes */
.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    margin-bottom: 10px;
}
