
        .service-card-dm {
            background: var(--white);
            border-radius: 20px;
            padding: 35px 28px;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .service-card-dm:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0, 54, 179, 0.12);
            border-color: rgba(0, 54, 179, 0.15);
        }

        .service-icon-dm {
            width: 75px;
            height: 75px;

            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

   

        .service-card-dm:hover .service-icon-dm img {
            filter: brightness(0) invert(1);
        }

        .result-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 16px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
        }

        .result-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }

        .counter-number {
            font-size: 48px;
            font-weight: 750;
            color: white;
            line-height: 1;
        }
      @media (max-width: 768px) {
                 .counter-number {
            font-size: 35px;
            font-weight: 750;
            color: white;
            line-height: 1;
            
        }
        }
        .pricing-dm-card {
            background: white;
            border-radius: 24px;
            padding: 35px 25px;
            transition: 0.3s;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #eef2ff;
        }

        .pricing-dm-card.featured {
            background: linear-gradient(135deg, var(--theme) 0%, #002a8a 100%);
            color: white;
            transform: scale(1.02);
        }

        .pricing-dm-card.featured h3,
        .pricing-dm-card.featured .price,
        .pricing-dm-card.featured p,
        .pricing-dm-card.featured li {
            color: white;
        }

        .pricing-dm-card.featured .theme-btn {
            background: white;
            color: var(--theme);
        }

        @media (max-width: 768px) {
            .pricing-dm-card.featured {
                transform: scale(1);
            }
        }

        .process-step-dm {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 20px;
            transition: 0.3s;
            height: 100%;
        }

        .process-step-dm:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .step-dm-number {
            width: 70px;
            height: 70px;
            background: var(--theme);
            color: white;
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
        }
 /* About Image Box */
.about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    background: #fff;
}

/* Hover Effect */
.about-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

/* Image */
.about-image-box img {
    width: 100%;
    height: 420px;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom Hover */
.about-image-box:hover img {
    transform: scale(1.06);
}

/* Overlay */
.about-image-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0,0,0,0.20),
            rgba(0,0,0,0.03));
    z-index: 1;
    pointer-events: none;
}

/* Optional Border Glow */
.about-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    z-index: 2;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 767px) {

    .about-image-box img {
        min-height: 340px;
    }

}














/* Service Card */
.service-card-modern {
    background: #fff;
    padding: 40px 30px;
  
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* Icon */
.service-icon-modern {
    width: 85px;
    height: 85px;
    border-radius: 24px;
margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    transition: all 0.35s ease;
}

.service-icon-modern img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: all 0.35s ease;
}

.service-card-modern:hover .service-icon-modern {

    transform: rotate(-6deg);
}

.service-card-modern:hover .service-icon-modern img {
    transform: scale(1.08);
}

/* Title */
.service-card-modern h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0b1020;
}

/* Text */
.service-card-modern p {
    color: #303030;
        font-size: 16px;
  
    margin-bottom: 25px;
}

/* List */
.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #222;
    font-size: 15px;
}

.service-list-modern li i {
    color: var(--theme);
}

/* Mobile */
@media (max-width: 767px) {

    .service-card-modern {
        padding: 32px 24px;
    }

    .service-card-modern h4 {
        font-size: 22px;
    }

}



















/* Process Card */
.process-marketing-card {
    position: relative;
    background: #fff;
    padding: 45px 30px;
    border-radius: 28px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.process-marketing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* Number */
.process-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,72,255,0.25);
    transition: all 0.35s ease;
}

.process-marketing-card:hover .process-number {
    transform: rotate(-8deg) scale(1.08);
}

/* Title */
.process-marketing-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1020;
}

/* Text */
.process-marketing-card p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 767px) {

    .process-marketing-card {
        padding: 35px 24px;
    }

    .process-number {
        width: 68px;
        height: 68px;
        font-size: 22px;
    }

    .process-marketing-card h5 {
        font-size: 22px;
    }

}


/* Pricing Card */
.pricing-marketing-card {
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.pricing-marketing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Active */
.pricing-marketing-card.active {
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
    transform: scale(1.03);
}

.pricing-marketing-card.active h3,
.pricing-marketing-card.active p,
.pricing-marketing-card.active li,
.pricing-marketing-card.active small,
.pricing-marketing-card.active .price {
    color: #fff;
}

/* Tag */
.plan-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0,72,255,0.08);
    color: var(--theme);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-marketing-card.active .plan-tag {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Popular */
.popular-label {
    position: absolute;
    top: 18px;
    right: -38px;
    background: #fff;
    color: var(--theme);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

/* Title */
.pricing-marketing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Price */
.price-wrap {
    margin-bottom: 22px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--theme);
    line-height: 1;
}

.price-wrap small {
    display: block;
    margin-top: 8px;
    color: #666;
}

/* Text */
.pricing-marketing-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Features */
.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #222;
    font-size: 15px;
}

.pricing-feature-list li i {
    color: var(--theme);
}

.pricing-marketing-card.active li i {
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {

    .pricing-marketing-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 32px;
    }

}

















/* Pricing Card */
.pricing-modern-card {
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 28px;
    transition: all 0.35s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.pricing-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Active Card */
.pricing-modern-card.active {
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
    transform: scale(1.03);
}

.pricing-modern-card.active h3,
.pricing-modern-card.active p,
.pricing-modern-card.active li,
.pricing-modern-card.active small,
.pricing-modern-card.active .price {
    color: #fff;
}

/* Badge */
.plan-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0,72,255,0.08);
    color: var(--theme);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-modern-card.active .plan-badge {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

/* Popular Tag */
.popular-tag {
    position: absolute;
    top: 18px;
    right: -35px;
    background: #fff;
    color: var(--theme);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

/* Title */
.pricing-modern-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Price */
.price-box {
    margin-bottom: 22px;
}

.price {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme);
    line-height: 1;
}

.price-box small {
    display: block;
    margin-top: 8px;
    color: #666;
}

/* Text */
.pricing-modern-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* List */
.pricing-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #222;
}

.pricing-list-modern li i {
    color: var(--theme);
}

.pricing-modern-card.active li i {
    color: #fff;
}

/* Button */
.pricing-modern-card .theme-btn {
    border-radius: 14px;
}

/* Mobile */
@media (max-width: 767px) {

    .pricing-modern-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 32px;
    }

}


/* Growth Box */
.marketing-growth-box {
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    padding: 45px 35px;
    border-radius: 32px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0,72,255,0.25);
}

/* Header */
.growth-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.growth-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-icon i {
    font-size: 34px;
    color: #fff;
}

.growth-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.growth-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

/* Stats */
.growth-item {
    margin-bottom: 28px;
}

.growth-item span,
.growth-item strong {
    color: #fff;
}

.progress {
    height: 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
}

.progress-bar {
    background: #fff;
    border-radius: 50px;
}

/* Case Study */
.case-study-modern {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.case-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(0,72,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-icon i {
    font-size: 24px;
    color: var(--theme);
}

.case-study-modern h5 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.case-study-modern p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 767px) {

    .marketing-growth-box {
        padding: 35px 25px;
    }

    .growth-header {
        flex-direction: column;
        text-align: center;
    }

    .growth-header h3 {
        font-size: 26px;
    }

    .case-study-modern {
        padding: 20px;
    }

}

/* FAQ Wrapper */
.faq-modern-marketing .accordion-item {
    border: none;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-modern-marketing .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Button */
.faq-modern-marketing .accordion-button {
    background: #fff;
    padding: 28px 30px;
    font-size: 20px;
    font-weight: 600;
    color: #0b1020;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-modern-marketing .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #0048ff 0%, #002fbb 100%);
    color: #fff;
}

/* Icon */
.faq-modern-marketing .accordion-button::after {
    filter: brightness(0);
}

.faq-modern-marketing .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

/* Body */
.faq-modern-marketing .accordion-body {
    padding: 25px 30px 30px;
}

.faq-modern-marketing .accordion-body p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* Mobile */
@media (max-width: 767px) {

    .faq-modern-marketing .accordion-button {
        font-size: 17px;
        padding: 22px 20px;
    }

    .faq-modern-marketing .accordion-body {
        padding: 20px;
    }

}
