.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: 100px 20px;
}

.ppc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 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;
}

