.breadcrumb {
    padding-left: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumb a {
    position: relative;
    color: var(--cool-gray);
    transition: 0.3s;
}

.breadcrumb a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 5px;
    background-color: var(--majorelle-blue);
    transition: 0.3s;
}

.breadcrumb a.active {
    color: var(--raisin-black-1);
}

.breadcrumb a.active::before {
    width: 100%;
}
/* STATS */

.stats-section {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 100px 20px;
    border-radius: 40px;
    margin: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    transition: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.counter {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffcb05;
}

/* PPC */

.ppc-section {
    padding: 60px 20px;
}

.ppc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.ppc-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    border-top: 6px solid #5b4dff;
}

.ppc-card:nth-child(2) {
    border-color: #ff7a00;
}

.ppc-card:nth-child(3) {
    border-color: #00b894;
}

.ppc-card:nth-child(4) {
    border-color: #e84393;
}

.ppc-card:nth-child(5) {
    border-color: #0984e3;
}

.ppc-card:hover {
    transform: translateY(-10px);
}

.ppc-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.ppc-card h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #111827;
}

.ppc-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* CTA */

.cta-section {
    background: linear-gradient(135deg, #ffcb05, #ff9900);
    border-radius: 40px;
    margin: 80px 20px;
    padding: 100px 20px;
    color: #111827;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}
.cta-section .btn {
    margin: 0 auto;
}
.img-width {height:650px !important;width:780px !important;}

.img-width2 {height:650px !important;width:1100px !important;}
.webdev-hero{
    margin-bottom: 0 !important;
}

.section-div{
    padding-top: 150px;
}
.section.hero{
    padding-top: 0 !important;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-icon ion-icon {
    width: 30px;
    height: 30px;
}

.processus-section { background: var(--bg-secondary, #f9f9f9); }

.processus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.processus-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    position: relative;
    transition: transform 0.3s ease;
}
.processus-card:hover { transform: translateY(-6px); }

.processus-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary, #007bff);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 8px;
}

.processus-icon ion-icon {
    font-size: 32px;
    color: var(--primary, #007bff);
}

.processus-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0 8px;
}

.processus-card p { font-size: 15px; line-height: 1.7; color: #555; }
.faq-list {
    max-width: 780px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

.faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary, #007bff);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p { font-size: 15px; line-height: 1.8; color: #555; }
.faq-answer a { color: var(--primary, #007bff); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .processus-grid { grid-template-columns: 1fr; }
    .compat-block { padding: 28px 20px; }
    .compat-list { gap: 14px; }
    .faq-question { font-size: 15px; padding: 16px 18px; }
}

@media (max-width: 480px) {
    .processus-card { padding: 24px 18px; }
    .compat-heading h3 { font-size: 18px; }
    .compat-text { font-size: 14px; }
}