/* =========================
   RESET GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    background: #f6f8fc;
    color: #1f2937;
    line-height: 1.6;
}

/* =========================
   HEADER (Fiverr style hero)
========================= */
header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

header p {
    max-width: 800px;
    margin: 10px auto;
    opacity: 0.9;
}

/* =========================
   CTA BUTTON (conversion focus)
========================= */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

/* =========================
   NAVBAR
========================= */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.15);
}

/* =========================
   MAIN LAYOUT
========================= */
main {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* =========================
   SECTIONS (cards style Fiverr)
========================= */
section {
    background: white;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* =========================
   TITLES
========================= */
h1, h2 {
    text-align: center;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.6rem;
    color: #0f172a;
}

h3 {
    margin-top: 15px;
    color: #334155;
}

/* =========================
   IMAGES
========================= */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* =========================
   SERVICES LIST (Fiverr cards style)
========================= */
ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

ul li {
    background: #f1f5f9;
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

ul li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

ul li img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #2E86C1;
}

/* =========================
   ABOUT / TEXT
========================= */
p {
    margin: 10px 0;
    text-align: center;
}

/* =========================
   TESTIMONIALS
========================= */
.temoignages {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 16px;
}

.temoignages p {
    font-style: italic;
    margin-top: 10px;
}

/* =========================
   FORM (contact page)
========================= */
form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

form textarea {
    resize: vertical;
    height: 140px;
}

form button {
    width: 100%;
    padding: 12px;
    background: #2E86C1;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #1A5276;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 25px;
    background: #0f172a;
    color: white;
    margin-top: 40px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 20px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }
}
.temoignages {
    background: #0f172a;
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 16px;
    max-width: 900px;
    margin: auto;
}

.carousel {
    position: relative;
    min-height: 150px;
}

.testimonial {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial strong {
    color: #22c55e;
}

/* animation fade */
@keyframes fade {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* dots */
.dots {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #22c55e;
    transform: scale(1.2);
}
