

    .seo-services-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .seo-services-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .seo-services-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Wrapper */
    .seo-services-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Image Side */
    .seo-services-image {
        flex: 1;
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .seo-services-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.5s;
        border-radius: 24px;
        border: 3px solid #d4a017;
    }

    .seo-services-image:hover img {
        transform: scale(1.03);
    }

    .seo-services-badge {
        position: absolute;
        bottom: 25px;
        left: 25px;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 50px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .seo-services-badge span {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

    .seo-services-badge span::before {
        content: '✦ ';
        color: #d4a017;
    }

    /* Content Side */
    .seo-services-content {
        flex: 1.2;
        padding: 10px 0;
    }

    .seo-services-content .section-head {
        margin-bottom: 18px;
    }

    .seo-services-content .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .seo-services-content .section-head h1 {
            font-size: clamp(1rem, 4vw, 2rem);
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .seo-services-content .section-head h1 span {
        color: #d4a017;
    }

    .seo-services-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 12px;
    }

    .seo-services-desc.last-desc {
        margin-bottom: 0;
    }

    /* Buttons */
    .seo-services-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .seo-services-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .seo-services-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .seo-services-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #d4a017;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .seo-services-btn-secondary:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .seo-services-wrapper {
            gap: 40px;
        }

        .seo-services-content .section-head h2 {
            font-size: 28px;
        }

    }

    @media (max-width: 991px) {
        .seo-services-section {
            padding: 60px 0;
        }

        .seo-services-wrapper {
            flex-direction: column;
            gap: 35px;
        }

        .seo-services-image {
            width: 100%;
        }

        .seo-services-image img {
            width: 100%;
        }

        .seo-services-content {
            padding: 0;
            width: 100%;
        }

        .seo-services-content .section-head h2 {
            font-size: 26px;
        }

        .seo-services-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .seo-services-content .section-head h2 {
            font-size: 22px;
        }

       

        .seo-services-desc {
            font-size: 14px;
        }

        .seo-services-badge {
            bottom: 18px;
            left: 18px;
            padding: 10px 18px;
        }

        .seo-services-badge span {
            font-size: 12px;
        }

        .seo-services-buttons {
            flex-direction: column;
            width: 100%;
        }

        .seo-services-btn-primary,
        .seo-services-btn-secondary {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .seo-services-section {
            padding: 40px 0;
        }

        .seo-services-content .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .seo-services-content .section-head h2 {
            font-size: 20px;
        }

        .seo-services-image img {
            border-radius: 16px;
        }

        .seo-services-image {
            border-radius: 16px;
        }

        .seo-services-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .seo-services-badge {
            bottom: 12px;
            left: 12px;
            padding: 8px 14px;
        }

        .seo-services-badge span {
            font-size: 11px;
        }

        .seo-services-btn-primary,
        .seo-services-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
        }
    }

    @media (max-width: 380px) {
        .seo-services-content .section-head h2 {
            font-size: 18px;
        }

       

        .seo-services-desc {
            font-size: 12px;
        }

        .seo-services-badge {
            bottom: 10px;
            left: 10px;
            padding: 6px 12px;
        }

        .seo-services-badge span {
            font-size: 10px;
        }
    }



    .seo-matters-section {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .seo-matters-section::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .seo-matters-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.02), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Section Head */
    .seo-matters-section .section-head {
        text-align: center;
        margin-bottom: 22px;
    }

    .seo-matters-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .seo-matters-section .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .seo-matters-section .section-head h2 span {
        color: #d4a017;
    }

    /* Description */
    .seo-matters-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 850px;
        margin: 0 auto 12px;
    }

    .seo-matters-desc.last-desc {
        margin-top: 25px;
        margin-bottom: 0;
    }

    /* Grid */
    .seo-matters-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 25px;
        max-width: 800px;
        margin: 20px auto 0;
        padding: 20px 25px;
        background: #111111;
        border-radius: 16px;
        border: 1px solid #222;
    }

    .seo-matters-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #d9d9d9;
        font-size: 14px;
        line-height: 1.5;
        padding: 6px 0;
        transition: 0.3s;
        border-bottom: 1px solid #222;
    }

    .seo-matters-item:nth-child(7),
    .seo-matters-item:nth-child(8) {
        border-bottom: none;
    }

    .seo-matters-item:hover {
        color: #d4a017;
        transform: translateX(5px);
    }

    .seo-matters-icon {
        color: #d4a017;
        font-size: 16px;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .seo-matters-section .section-head h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 991px) {
        .seo-matters-section {
            padding: 60px 0;
        }

        .seo-matters-section .section-head h2 {
            font-size: 28px;
        }

        .seo-matters-desc {
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .seo-matters-section .section-head h2 {
            font-size: 24px;
        }

        .seo-matters-grid {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 16px 18px;
            border-radius: 14px;
        }

        .seo-matters-item {
            font-size: 13px;
            padding: 5px 0;
            border-bottom: 1px solid #222;
        }

        .seo-matters-item:last-child {
            border-bottom: none;
        }
    }

    @media (max-width: 480px) {
        .seo-matters-section {
            padding: 40px 0;
        }

        .seo-matters-section .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .seo-matters-section .section-head h2 {
            font-size: 22px;
        }

        .seo-matters-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .seo-matters-grid {
            padding: 14px 14px;
            border-radius: 12px;
            gap: 6px;
        }

        .seo-matters-item {
            font-size: 12px;
            padding: 4px 0;
        }

        .seo-matters-icon {
            font-size: 14px;
            width: 20px;
        }
    }

    @media (max-width: 380px) {
        .seo-matters-section .section-head h2 {
            font-size: 20px;
        }

        .seo-matters-desc {
            font-size: 12px;
        }

        .seo-matters-item {
            font-size: 11px;
        }
    }



    .design-1 {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .design-1::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .design-1 .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .design-1 .section-head h2 span {
        color: #d4a017;
    }

    .design-1 .local-seo-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 750px;
        margin: 0 auto 12px;
    }

    .design-1 .local-seo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 750px;
        margin: 20px auto 0;
    }

    .design-1 .local-seo-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .design-1 .local-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .design-1 .local-seo-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .design-1 .local-seo-card:hover .local-seo-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .design-1 .local-seo-card span {
        color: #444;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .design-1 { padding: 60px 0; }
        .design-1 .section-head h2 { font-size: 28px; }
        .design-1 .local-seo-desc { font-size: 14px; }
        .design-1 .local-seo-grid { grid-template-columns: 1fr; gap: 12px; max-width: 450px; }
        .design-1 .local-seo-card { padding: 12px 16px; }
        .design-1 .local-seo-card span { font-size: 13px; }
    }

    @media (max-width: 480px) {
        .design-1 { padding: 40px 0; }
        .design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .design-1 .section-head h2 { font-size: 22px; }
        .design-1 .local-seo-desc { font-size: 13px; }
        .design-1 .local-seo-card { padding: 10px 14px; border-radius: 10px; }
        .design-1 .local-seo-card span { font-size: 12px; }
        .design-1 .local-seo-icon { width: 34px; height: 34px; font-size: 14px; }
    }



    .onpage-seo-section.design-1 {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .onpage-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .onpage-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .onpage-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .onpage-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .onpage-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .onpage-seo-section.design-1 .onpage-seo-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 750px;
        margin: 0 auto 12px;
    }

    .onpage-seo-section.design-1 .onpage-seo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 850px;
        margin: 20px auto 0;
    }

    .onpage-seo-section.design-1 .onpage-seo-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #111111;
        border: 1px solid #222;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .onpage-seo-section.design-1 .onpage-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
        background: #1a1a1a;
    }

    .onpage-seo-section.design-1 .onpage-seo-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
        border: 1px solid rgba(212, 175, 55, 0.05);
    }

    .onpage-seo-section.design-1 .onpage-seo-card:hover .onpage-seo-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
        border-color: #d4a017;
    }

    .onpage-seo-section.design-1 .onpage-seo-card span {
        color: #d9d9d9;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 500;
    }

    .onpage-seo-section.design-1 .onpage-seo-card:hover span {
        color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .onpage-seo-section.design-1 .section-head h2 { font-size: 30px; }
        .onpage-seo-section.design-1 .onpage-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    @media (max-width: 991px) {
        .onpage-seo-section.design-1 { padding: 60px 0; }
        .onpage-seo-section.design-1 .section-head h2 { font-size: 28px; }
        .onpage-seo-section.design-1 .onpage-seo-desc { font-size: 14px; }
    }

    @media (max-width: 768px) {
        .onpage-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .onpage-seo-section.design-1 .onpage-seo-desc { font-size: 14px; }
        .onpage-seo-section.design-1 .onpage-seo-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 450px; }
        .onpage-seo-section.design-1 .onpage-seo-card { padding: 12px 16px; }
        .onpage-seo-section.design-1 .onpage-seo-card span { font-size: 12px; }
    }

    @media (max-width: 480px) {
        .onpage-seo-section.design-1 { padding: 40px 0; }
        .onpage-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .onpage-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .onpage-seo-section.design-1 .onpage-seo-desc { font-size: 13px; line-height: 1.7; }
        .onpage-seo-section.design-1 .onpage-seo-grid { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
        .onpage-seo-section.design-1 .onpage-seo-card { padding: 10px 14px; border-radius: 10px; }
        .onpage-seo-section.design-1 .onpage-seo-card span { font-size: 12px; }
        .onpage-seo-section.design-1 .onpage-seo-icon { width: 34px; height: 34px; font-size: 14px; }
    }

    @media (max-width: 380px) {
        .onpage-seo-section.design-1 .section-head h2 { font-size: 20px; }
        .onpage-seo-section.design-1 .onpage-seo-desc { font-size: 12px; }
        .onpage-seo-section.design-1 .onpage-seo-card span { font-size: 11px; }
    }



    .grow-seo-cta-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .grow-seo-cta-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .grow-seo-cta-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    /* Wrapper */
    .grow-seo-cta-wrapper {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Content Side */
    .grow-seo-cta-content {
        flex: 1.2;
        padding: 10px 0;
    }

    .grow-seo-cta-content .section-head {
        margin-bottom: 18px;
    }

    .grow-seo-cta-content .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .grow-seo-cta-content .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .grow-seo-cta-content .section-head h2 span {
        color: #d4a017;
    }

    .grow-seo-cta-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 12px;
    }

    .grow-seo-cta-desc.last-desc {
        margin-bottom: 0;
    }

    /* Buttons */
    .grow-seo-cta-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .grow-seo-cta-btn-primary {
        display: inline-block;
        background: #d4a017;
        color: #000;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .grow-seo-cta-btn-primary:hover {
        background: #000;
        color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .grow-seo-cta-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #d4a017;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #d4a017;
    }

    .grow-seo-cta-btn-secondary:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

    /* Stats Side */
    .grow-seo-cta-stats {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .grow-seo-cta-stat {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 22px 15px;
        text-align: center;
        transition: 0.3s;
    }

    .grow-seo-cta-stat:hover {
        border-color: #d4a017;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .grow-seo-cta-stat-number {
        font-size: 28px;
        font-weight: 800;
        color: #d4a017;
        display: block;
        line-height: 1.2;
    }

    .grow-seo-cta-stat-label {
        font-size: 12px;
        color: #666;
        font-weight: 500;
        display: block;
        margin-top: 3px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .grow-seo-cta-wrapper {
            gap: 35px;
        }

        .grow-seo-cta-content .section-head h2 {
            font-size: 30px;
        }

        .grow-seo-cta-stats {
            gap: 12px;
        }

        .grow-seo-cta-stat {
            padding: 18px 12px;
        }

        .grow-seo-cta-stat-number {
            font-size: 24px;
        }
    }

    @media (max-width: 991px) {
        .grow-seo-cta-section {
            padding: 60px 0;
        }

        .grow-seo-cta-wrapper {
            flex-direction: column;
            gap: 35px;
        }

        .grow-seo-cta-content {
            padding: 0;
            width: 100%;
        }

        .grow-seo-cta-content .section-head h2 {
            font-size: 28px;
        }

        .grow-seo-cta-stats {
            width: 100%;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
    }

    @media (max-width: 768px) {
        .grow-seo-cta-content .section-head h2 {
            font-size: 24px;
        }

        .grow-seo-cta-desc {
            font-size: 14px;
        }

        .grow-seo-cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .grow-seo-cta-btn-primary,
        .grow-seo-cta-btn-secondary {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }

        .grow-seo-cta-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .grow-seo-cta-stat {
            padding: 16px 12px;
            border-radius: 12px;
        }

        .grow-seo-cta-stat-number {
            font-size: 22px;
        }

        .grow-seo-cta-stat-label {
            font-size: 11px;
        }
    }

    @media (max-width: 480px) {
        .grow-seo-cta-section {
            padding: 40px 0;
        }

        .grow-seo-cta-content .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .grow-seo-cta-content .section-head h2 {
            font-size: 22px;
        }

        .grow-seo-cta-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .grow-seo-cta-btn-primary,
        .grow-seo-cta-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
        }

        .grow-seo-cta-stats {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .grow-seo-cta-stat {
            padding: 14px 10px;
            border-radius: 10px;
        }

        .grow-seo-cta-stat-number {
            font-size: 20px;
        }

        .grow-seo-cta-stat-label {
            font-size: 10px;
        }
    }

    @media (max-width: 380px) {
        .grow-seo-cta-content .section-head h2 {
            font-size: 20px;
        }

        .grow-seo-cta-desc {
            font-size: 12px;
        }

        .grow-seo-cta-stat-number {
            font-size: 18px;
        }

        .grow-seo-cta-stat {
            padding: 10px 8px;
        }
    }



    .technical-seo-section.design-1 {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .technical-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .technical-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .technical-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .technical-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .technical-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .technical-seo-section.design-1 .technical-seo-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 750px;
        margin: 0 auto 12px;
    }

    .technical-seo-section.design-1 .technical-seo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 850px;
        margin: 20px auto 0;
    }

    .technical-seo-section.design-1 .technical-seo-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .technical-seo-section.design-1 .technical-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .technical-seo-section.design-1 .technical-seo-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .technical-seo-section.design-1 .technical-seo-card:hover .technical-seo-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .technical-seo-section.design-1 .technical-seo-card span {
        color: #444;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 500;
    }

    @media (max-width: 1024px) {
        .technical-seo-section.design-1 .section-head h2 { font-size: 30px; }
        .technical-seo-section.design-1 .technical-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    @media (max-width: 991px) {
        .technical-seo-section.design-1 { padding: 60px 0; }
        .technical-seo-section.design-1 .section-head h2 { font-size: 28px; }
        .technical-seo-section.design-1 .technical-seo-desc { font-size: 14px; }
    }

    @media (max-width: 768px) {
        .technical-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .technical-seo-section.design-1 .technical-seo-desc { font-size: 14px; }
        .technical-seo-section.design-1 .technical-seo-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 450px; }
        .technical-seo-section.design-1 .technical-seo-card { padding: 12px 16px; }
        .technical-seo-section.design-1 .technical-seo-card span { font-size: 12px; }
    }

    @media (max-width: 480px) {
        .technical-seo-section.design-1 { padding: 40px 0; }
        .technical-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .technical-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .technical-seo-section.design-1 .technical-seo-desc { font-size: 13px; line-height: 1.7; }
        .technical-seo-section.design-1 .technical-seo-grid { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
        .technical-seo-section.design-1 .technical-seo-card { padding: 10px 14px; border-radius: 10px; }
        .technical-seo-section.design-1 .technical-seo-card span { font-size: 12px; }
        .technical-seo-section.design-1 .technical-seo-icon { width: 34px; height: 34px; font-size: 14px; }
    }

    @media (max-width: 380px) {
        .technical-seo-section.design-1 .section-head h2 { font-size: 20px; }
        .technical-seo-section.design-1 .technical-seo-desc { font-size: 12px; }
        .technical-seo-section.design-1 .technical-seo-card span { font-size: 11px; }
    }



    .content-seo-section.design-1 {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .content-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .content-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .content-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .content-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .content-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .content-seo-section.design-1 .content-seo-desc {
        color: #bdbdbd;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 750px;
        margin: 0 auto 12px;
    }

    .content-seo-section.design-1 .content-seo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 750px;
        margin: 20px auto 0;
    }

    .content-seo-section.design-1 .content-seo-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #111111;
        border: 1px solid #222;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .content-seo-section.design-1 .content-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
        background: #1a1a1a;
    }

    .content-seo-section.design-1 .content-seo-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
        border: 1px solid rgba(212, 175, 55, 0.05);
    }

    .content-seo-section.design-1 .content-seo-card:hover .content-seo-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
        border-color: #d4a017;
    }

    .content-seo-section.design-1 .content-seo-card span {
        color: #d9d9d9;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 500;
    }

    .content-seo-section.design-1 .content-seo-card:hover span {
        color: #ffffff;
    }

    @media (max-width: 1024px) {
        .content-seo-section.design-1 .section-head h2 { font-size: 30px; }
    }

    @media (max-width: 991px) {
        .content-seo-section.design-1 { padding: 60px 0; }
        .content-seo-section.design-1 .section-head h2 { font-size: 28px; }
        .content-seo-section.design-1 .content-seo-desc { font-size: 14px; }
    }

    @media (max-width: 768px) {
        .content-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .content-seo-section.design-1 .content-seo-desc { font-size: 14px; }
        .content-seo-section.design-1 .content-seo-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 450px; }
        .content-seo-section.design-1 .content-seo-card { padding: 12px 16px; }
        .content-seo-section.design-1 .content-seo-card span { font-size: 12px; }
    }

    @media (max-width: 480px) {
        .content-seo-section.design-1 { padding: 40px 0; }
        .content-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .content-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .content-seo-section.design-1 .content-seo-desc { font-size: 13px; line-height: 1.7; }
        .content-seo-section.design-1 .content-seo-grid { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
        .content-seo-section.design-1 .content-seo-card { padding: 10px 14px; border-radius: 10px; }
        .content-seo-section.design-1 .content-seo-card span { font-size: 12px; }
        .content-seo-section.design-1 .content-seo-icon { width: 34px; height: 34px; font-size: 14px; }
    }

    @media (max-width: 380px) {
        .content-seo-section.design-1 .section-head h2 { font-size: 20px; }
        .content-seo-section.design-1 .content-seo-desc { font-size: 12px; }
        .content-seo-section.design-1 .content-seo-card span { font-size: 11px; }
    }



    .audit-seo-section.design-1 {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .audit-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .audit-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 18px;
    }

    .audit-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .audit-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .audit-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .audit-seo-section.design-1 .audit-seo-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 750px;
        margin: 0 auto 12px;
    }

    .audit-seo-section.design-1 .audit-seo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 750px;
        margin: 20px auto 0;
    }

    .audit-seo-section.design-1 .audit-seo-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .audit-seo-section.design-1 .audit-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .audit-seo-section.design-1 .audit-seo-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .audit-seo-section.design-1 .audit-seo-card:hover .audit-seo-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .audit-seo-section.design-1 .audit-seo-card span {
        color: #444;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
    }

    @media (max-width: 1024px) {
        .audit-seo-section.design-1 .section-head h2 { font-size: 30px; }
    }

    @media (max-width: 991px) {
        .audit-seo-section.design-1 { padding: 60px 0; }
        .audit-seo-section.design-1 .section-head h2 { font-size: 28px; }
        .audit-seo-section.design-1 .audit-seo-desc { font-size: 14px; }
    }

    @media (max-width: 768px) {
        .audit-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .audit-seo-section.design-1 .audit-seo-desc { font-size: 14px; }
        .audit-seo-section.design-1 .audit-seo-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 450px; }
        .audit-seo-section.design-1 .audit-seo-card { padding: 12px 16px; }
        .audit-seo-section.design-1 .audit-seo-card span { font-size: 13px; }
    }

    @media (max-width: 480px) {
        .audit-seo-section.design-1 { padding: 40px 0; }
        .audit-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .audit-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .audit-seo-section.design-1 .audit-seo-desc { font-size: 13px; line-height: 1.7; }
        .audit-seo-section.design-1 .audit-seo-grid { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
        .audit-seo-section.design-1 .audit-seo-card { padding: 10px 14px; border-radius: 10px; }
        .audit-seo-section.design-1 .audit-seo-card span { font-size: 12px; }
        .audit-seo-section.design-1 .audit-seo-icon { width: 34px; height: 34px; font-size: 14px; }
    }

    @media (max-width: 380px) {
        .audit-seo-section.design-1 .section-head h2 { font-size: 20px; }
        .audit-seo-section.design-1 .audit-seo-desc { font-size: 12px; }
        .audit-seo-section.design-1 .audit-seo-card span { font-size: 11px; }
    }



    .performance-seo-section.design-1 {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .performance-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -40%;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .performance-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .performance-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .performance-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .performance-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .performance-seo-section.design-1 .performance-seo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 0 auto;
    }

    .performance-seo-section.design-1 .performance-seo-card {
        background: #111111;
        border: 1px solid #222;
        border-radius: 16px;
        padding: 20px 20px 25px;
        text-align: center;
        transition: 0.4s;
        cursor: default;
        overflow: hidden;
    }

    .performance-seo-section.design-1 .performance-seo-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
    }

    .performance-seo-section.design-1 .before-card {
        border-top: 3px solid #ff6b6b;
    }

    .performance-seo-section.design-1 .before-card:hover {
        border-color: #ff6b6b;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.05);
    }

    .performance-seo-section.design-1 .after-card {
        border-top: 3px solid #d4a017;
    }

    .performance-seo-section.design-1 .after-card:hover {
        border-color: #d4a017;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
    }

    .performance-seo-section.design-1 .performance-seo-label {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .performance-seo-section.design-1 .performance-seo-image {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #222;
    }

    .performance-seo-section.design-1 .performance-seo-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: 0.5s;
    }

    .performance-seo-section.design-1 .performance-seo-card:hover .performance-seo-image img {
        transform: scale(1.03);
    }

    .performance-seo-section.design-1 .performance-seo-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 750px;
        margin: 35px auto 0;
        padding-top: 30px;
        border-top: 1px solid #222;
    }

    .performance-seo-section.design-1 .performance-stat-item {
        text-align: center;
        padding: 10px;
    }

    .performance-seo-section.design-1 .performance-stat-number {
        font-size: 28px;
        font-weight: 800;
        color: #d4a017;
        display: block;
        line-height: 1.2;
    }

    .performance-seo-section.design-1 .performance-stat-label {
        font-size: 13px;
        color: #bdbdbd;
        font-weight: 500;
        display: block;
        margin-top: 4px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .performance-seo-section.design-1 .section-head h2 { font-size: 30px; }
        .performance-seo-section.design-1 .performance-seo-image img { height: 240px; }
    }

    @media (max-width: 991px) {
        .performance-seo-section.design-1 { padding: 60px 0; }
        .performance-seo-section.design-1 .section-head h2 { font-size: 28px; }
        .performance-seo-section.design-1 .performance-seo-image img { height: 200px; }
    }

    @media (max-width: 768px) {
        .performance-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .performance-seo-section.design-1 .performance-seo-grid { grid-template-columns: 1fr; gap: 20px; }
        .performance-seo-section.design-1 .performance-seo-card { padding: 16px 16px 20px; }
        .performance-seo-section.design-1 .performance-seo-image img { height: 180px; }
        .performance-seo-section.design-1 .performance-seo-stats { grid-template-columns: 1fr 1fr; gap: 15px; }
        .performance-seo-section.design-1 .performance-stat-number { font-size: 24px; }
    }

    @media (max-width: 480px) {
        .performance-seo-section.design-1 { padding: 40px 0; }
        .performance-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .performance-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .performance-seo-section.design-1 .performance-seo-grid { gap: 16px; max-width: 100%; }
        .performance-seo-section.design-1 .performance-seo-card { padding: 14px 12px 16px; border-radius: 12px; }
        .performance-seo-section.design-1 .performance-seo-label { font-size: 16px; margin-bottom: 10px; }
        .performance-seo-section.design-1 .performance-seo-image img { height: 150px; border-radius: 8px; }
        .performance-seo-section.design-1 .performance-seo-stats { grid-template-columns: 1fr; gap: 10px; border-top: none; padding-top: 0; margin-top: 20px; }
        .performance-seo-section.design-1 .performance-stat-number { font-size: 22px; }
        .performance-seo-section.design-1 .performance-stat-label { font-size: 12px; }
    }

    @media (max-width: 380px) {
        .performance-seo-section.design-1 .section-head h2 { font-size: 20px; }
        .performance-seo-section.design-1 .performance-seo-image img { height: 120px; }
    }



    .industries-serve-section.design-1 {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .industries-serve-section.design-1::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .industries-serve-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 15px;
    }

    .industries-serve-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .industries-serve-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .industries-serve-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .industries-serve-section.design-1 .industries-serve-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
        max-width: 700px;
        margin: 0 auto 20px;
        text-align: center;
    }

    .industries-serve-section.design-1 .industries-serve-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 900px;
        margin: 0 auto;
    }

    .industries-serve-section.design-1 .industries-serve-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: 0.3s;
        cursor: default;
    }

    .industries-serve-section.design-1 .industries-serve-card:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.06);
    }

    .industries-serve-section.design-1 .industries-serve-icon {
        width: 38px;
        height: 38px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #d4a017;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .industries-serve-section.design-1 .industries-serve-card:hover .industries-serve-icon {
        background: #d4a017;
        color: #000;
        transform: scale(1.1);
    }

    .industries-serve-section.design-1 .industries-serve-card span {
        color: #444;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .industries-serve-section.design-1 .section-head h2 { font-size: 30px; }
        .industries-serve-section.design-1 .industries-serve-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    @media (max-width: 991px) {
        .industries-serve-section.design-1 { padding: 60px 0; }
        .industries-serve-section.design-1 .section-head h2 { font-size: 28px; }
        .industries-serve-section.design-1 .industries-serve-desc { font-size: 14px; }
    }

    @media (max-width: 768px) {
        .industries-serve-section.design-1 .section-head h2 { font-size: 24px; }
        .industries-serve-section.design-1 .industries-serve-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 450px; }
        .industries-serve-section.design-1 .industries-serve-card { padding: 12px 16px; }
        .industries-serve-section.design-1 .industries-serve-card span { font-size: 13px; }
        .industries-serve-section.design-1 .industries-serve-desc { font-size: 14px; }
    }

    @media (max-width: 480px) {
        .industries-serve-section.design-1 { padding: 40px 0; }
        .industries-serve-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .industries-serve-section.design-1 .section-head h2 { font-size: 22px; }
        .industries-serve-section.design-1 .industries-serve-desc { font-size: 13px; }
        .industries-serve-section.design-1 .industries-serve-grid { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
        .industries-serve-section.design-1 .industries-serve-card { padding: 10px 14px; border-radius: 10px; }
        .industries-serve-section.design-1 .industries-serve-card span { font-size: 12px; }
        .industries-serve-section.design-1 .industries-serve-icon { width: 34px; height: 34px; font-size: 14px; }
    }

    @media (max-width: 380px) {
        .industries-serve-section.design-1 .section-head h2 { font-size: 20px; }
        .industries-serve-section.design-1 .industries-serve-desc { font-size: 12px; }
        .industries-serve-section.design-1 .industries-serve-card span { font-size: 11px; }
    }



    .why-choose-seo-section.design-1 {
        background: #000000;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .why-choose-seo-section.design-1::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .why-choose-seo-section.design-1 .section-head {
        text-align: center;
        margin-bottom: 25px;
    }

    .why-choose-seo-section.design-1 .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.12);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .why-choose-seo-section.design-1 .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.2;
        margin: 0;
    }

    .why-choose-seo-section.design-1 .section-head h2 span {
        color: #d4a017;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 950px;
        margin: 0 auto;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-card {
        background: #111111;
        border: 1px solid #222;
        border-radius: 14px;
        padding: 25px 20px;
        text-align: center;
        transition: 0.3s;
        cursor: default;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-card:hover {
        border-color: #d4a017;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
        background: #1a1a1a;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-icon {
        font-size: 32px;
        color: #d4a017;
        display: block;
        margin-bottom: 10px;
        transition: 0.3s;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-card:hover .why-choose-seo-icon {
        transform: scale(1.1);
    }

    .why-choose-seo-section.design-1 .why-choose-seo-card h4 {
        font-size: 17px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .why-choose-seo-section.design-1 .why-choose-seo-card p {
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.6;
        text-align: justify;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .why-choose-seo-section.design-1 .section-head h2 { font-size: 30px; }
        .why-choose-seo-section.design-1 .why-choose-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    }

    @media (max-width: 991px) {
        .why-choose-seo-section.design-1 { padding: 60px 0; }
        .why-choose-seo-section.design-1 .section-head h2 { font-size: 28px; }
    }

    @media (max-width: 768px) {
        .why-choose-seo-section.design-1 .section-head h2 { font-size: 24px; }
        .why-choose-seo-section.design-1 .why-choose-seo-grid { grid-template-columns: 1fr; gap: 15px; max-width: 450px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card { padding: 20px 16px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card h4 { font-size: 16px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card p { font-size: 13px; }
    }

    @media (max-width: 480px) {
        .why-choose-seo-section.design-1 { padding: 40px 0; }
        .why-choose-seo-section.design-1 .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .why-choose-seo-section.design-1 .section-head h2 { font-size: 22px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card { padding: 16px 14px; border-radius: 12px; }
        .why-choose-seo-section.design-1 .why-choose-seo-icon { font-size: 28px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card h4 { font-size: 15px; }
        .why-choose-seo-section.design-1 .why-choose-seo-card p { font-size: 12px; }
    }



    .seo-packages-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .seo-packages-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .seo-packages-section .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .seo-packages-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .seo-packages-section .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .seo-packages-section .section-head h2 span {
        color: #d4a017;
    }

    .seo-packages-subtitle {
        color: #666;
        font-size: 16px;
        margin-top: 8px;
        font-weight: 500;
    }

    .seo-packages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
        margin: 0 auto;
    }

    .seo-package-card {
        background: #111111;
        border: 1px solid #222;
        border-radius: 20px;
        padding: 30px 25px 25px;
        text-align: center;
        transition: 0.4s;
        position: relative;
        box-shadow: 0 2px 15px rgba(0,0,0,0.02);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .seo-package-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
        border-color: #d4a017;
        background: #1a1a1a;
    }

    .seo-package-card.featured {
        border: 2px solid #d4a017;
        background: #1a1a1a;
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.06);
    }

    .seo-package-card.featured::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #d4a017, #ffd700);
        border-radius: 20px 20px 0 0;
    }

    .seo-package-card.enterprise {
        background: #1a1a1a;
        border-style: dashed;
        border-color: #333;
    }

    .seo-package-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.06);
        color: #bdbdbd;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .seo-package-badge.best-value {
        background: #d4a017;
        color: #000;
    }

    .seo-package-card.enterprise .seo-package-badge {
        background: #333;
        color: #fff;
    }

    .seo-package-icon {
        font-size: 36px;
        display: block;
        margin-bottom: 8px;
    }

    .seo-package-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .seo-package-card p {
        color: #bdbdbd;
        font-size: 13px;
        line-height: 1.4;
        margin: 0 0 12px;
    }


    .seo-packages-modern {
        background: #ffffff;
        padding: 40px 0;
    }

    .seo-packages-modern .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .seo-packages-modern .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .seo-packages-modern .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .seo-packages-modern .section-head h2 span {
        color: #d4a017;
    }

    .seo-packages-modern .subtitle {
        color: #666;
        font-size: 16px;
        margin-top: 6px;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .pricing-card {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 20px;
        padding: 30px 25px;
        transition: 0.4s;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08);
        border-color: #d4a017;
    }

    .pricing-card.featured {
        border: 2px solid #d4a017;
        background: #fefcf7;
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }

    .pricing-badge {
        display: inline-block;
        background: #e9ecef;
        color: #666;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 14px;
        border-radius: 20px;
        text-transform: uppercase;
    }

    .pricing-badge.popular {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #d4a017;
        color: #000;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 20px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .pricing-header h3 {
        font-size: 22px;
        font-weight: 700;
        color: #222;
        margin: 8px 0 12px;
    }

    .pricing-price {
        margin-bottom: 6px;
    }

    .pricing-price .currency {
        font-size: 20px;
        font-weight: 700;
        color: #d4a017;
        vertical-align: top;
    }

    .pricing-price .amount {
        font-size: 40px;
        font-weight: 800;
        color: #d4a017;
    }

    .pricing-price .period {
        font-size: 14px;
        color: #777;
    }

    .pricing-desc {
        color: #555;
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        flex: 1;
    }

    .pricing-features li {
        padding: 6px 0;
        font-size: 13px;
        color: #444;
        border-bottom: 1px solid #f0f0f0;
        text-align: justify;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features .feature-title {
        font-weight: 700;
        color: #d4a017;
        border-bottom: none !important;
        font-size: 14px;
        padding: 8px 0 4px;
    }

    .pricing-btn {
        display: inline-block;
        background: #e9ecef;
        color: #333;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: 0.3s;
        text-align: center;
        border: 2px solid transparent;
    }

    .pricing-btn:hover {
        background: #d4a017;
        color: #000;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    }

    .pricing-btn.primary {
        background: #d4a017;
        color: #000;
        border-color: #d4a017;
    }

    .pricing-btn.primary:hover {
        background: #000;
        color: #d4a017;
        border-color: #000;
    }

    .invest-section {
        max-width: 900px;
        margin: 50px auto 0;
        padding-top: 40px;
        border-top: 1px solid #eee;
        text-align: center;
    }

    .invest-section h3 {
        font-size: 28px;
        font-weight: 700;
        color: #222;
        margin-bottom: 20px;
    }

    .invest-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .invest-item {
        background: #ffc10778;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 14px 12px;
        transition: 0.3s;
        font-weight: 500;
        color: #444;
        font-size: 14px;
    }

    .invest-item:hover {
        border-color: #d4a017;
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.04);
    }

    .invest-footer {
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .invest-footer p {
        color: #555;
        font-size: 15px;
        margin: 0;
    }

    .invest-footer .tagline {
        font-size: 18px;
        font-weight: 700;
        color: #d4a017;
        margin-top: 4px !important;
    }

    @media (max-width: 1024px) {
        .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
        .pricing-card.featured { transform: scale(1); }
        .pricing-card.featured:hover { transform: translateY(-5px); }
        .invest-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
        .seo-packages-modern { padding: 60px 0; }
        .seo-packages-modern .section-head h2 { font-size: 28px; }
        .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
        .pricing-card.featured { transform: scale(1); }
        .pricing-card.featured:hover { transform: translateY(-5px); }
        .pricing-price .amount { font-size: 34px; }
        .invest-grid { grid-template-columns: 1fr 1fr; }
        .invest-section h3 { font-size: 24px; }
    }

    @media (max-width: 480px) {
        .seo-packages-modern { padding: 40px 0; }
        .seo-packages-modern .section-head .sm-title { font-size: 11px; padding: 4px 14px; }
        .seo-packages-modern .section-head h2 { font-size: 22px; }
        .pricing-card { padding: 22px 16px; }
        .pricing-header h3 { font-size: 20px; }
        .pricing-price .amount { font-size: 30px; }
        .invest-grid { grid-template-columns: 1fr; }
        .invest-item { font-size: 13px; }
        .invest-footer .tagline { font-size: 16px; }
        .pricing-badge.popular { font-size: 10px; padding: 3px 14px; top: -10px; }
    }
.fq-section {
--fq-accent: #D4AF37;      /* Rich Gold */
    --fq-accent2: #FFD700;     /* Bright Gold */
    --fq-dark: #0d1117;
    --fq-card: #141b22;

    --fq-border: rgba(212, 175, 55, 0.25);

    --fq-text: #c9d1d9;
    --fq-muted: #8b949e;
    --fq-white: #ffffff;
  --fq-radius: 14px;
  --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
  background:#000;
  padding: 72px 0 80px;
  overflow: hidden
}


.fq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .18
}

.fq-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--fq-accent);
  top: -120px;
  left: -100px
}

.fq-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--fq-accent2);
  bottom: -80px;
  right: -80px
}

.fq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.fq-header {
  text-align: center;
  margin-bottom: 48px
}

.fq-badge {
  display: inline-block;
  background: rgb(145 217 4 / .12);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px
}

.fq-title {
  color: var(--fq-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.fq-title span {
  color: var(--fq-accent)
}

.fq-sub {
  color: var(--fq-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65
}

.fq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fq-item {
  background: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius);
  overflow: hidden;
  transition: border-color var(--fq-trans), box-shadow var(--fq-trans)
}

.fq-item:hover {
  border-color: #D4AF37;   
}

.fq-item.fq-open {
  border-color: var(--fq-accent);
  box-shadow: 0 0 0 1px rgb(145 217 4 / .25), 0 8px 32px rgb(0 0 0 / .35)
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none
}

.fq-btn:focus-visible {
  outline: 2px solid var(--fq-accent);
  outline-offset: -2px
}

.fq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(145 217 4 / .1);
  border: 1px solid var(--fq-border);
  color: var(--fq-accent);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  transition: background var(--fq-trans), border-color var(--fq-trans)
}

.fq-open .fq-num {
  background: var(--fq-accent);
  border-color: var(--fq-accent);
  color: var(--fq-dark)
}

h2.fq-q-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--fq-white);
  transition: color var(--fq-trans)
}

.fq-open h2.fq-q-text {
  color: var(--fq-accent)
}

.fq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#000;
  border: 1px solid var(--fq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fq-trans), transform var(--fq-trans)
}

.fq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--fq-accent);
  transition: transform var(--fq-trans)
}

.fq-open .fq-icon {
  background: var(--fq-accent)
}

.fq-open .fq-icon svg {
  stroke: var(--fq-dark);
  transform: rotate(45deg)
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--fq-trans)
}

.fq-answer-inner {
  padding: 0 22px 20px 70px;
  text-align: justify;
  color: var(--fq-text);
  font-size: .94rem;
  line-height: 1.72
}

.fq-more-wrap {
  text-align: center;
  margin-top: 40px
}

.fq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fq-accent);
  color: var(--fq-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--fq-trans), transform var(--fq-trans), box-shadow var(--fq-trans);
  box-shadow: 0 4px 20px rgb(145 217 4 / .25)
}

.fq-more-btn:hover {
  background: var(--fq-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(145 217 4 / .35)
}

.fq-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--fq-dark);
  flex-shrink: 0;
  transition: transform var(--fq-trans)
}

.fq-more-btn:hover svg {
  transform: translateX(3px)
}

.fq-answer {
  cursor: pointer
}

@media (max-width:600px) {
  .fq-section {
    padding: 52px 0 60px
  }
  .fq-answer-inner {
    padding-left: 22px
  }
  .fq-btn {
    padding: 16px 16px;
    gap: 12px
  }
}

    .benefits-smm-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .benefits-smm-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .benefits-smm-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .benefits-smm-section .section-head {
        text-align: center;
        margin-bottom: 15px;
    }

    .benefits-smm-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .benefits-smm-section .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .benefits-smm-section .section-head h2 span {
        color: #d4a017;
    }

    .benefits-smm-desc {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        max-width: 700px;
        margin: 0 auto 25px;
        text-align: center;
        font-weight: 500;
    }

    .benefits-smm-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 25px;
        max-width: 750px;
        margin: 0 auto;
        padding: 20px 25px;
        background: #ffc10778;
        border-radius: 16px;
        border: 1px solid #eee;
        transition: 0.3s;
    }

    .benefits-smm-grid:hover {
        border-color: #d4a017;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.04);
    }

    .benefits-smm-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #444;
        font-size: 14px;
        line-height: 1.5;
        padding: 6px 0;
        transition: 0.3s;
        border-bottom: 1px solid #eee;
    }

    .benefits-smm-item:nth-child(7),
    .benefits-smm-item:nth-child(8) {
        border-bottom: none;
    }

    .benefits-smm-item:hover {
        color: #d4a017;
        transform: translateX(4px);
    }

    .benefits-smm-icon {
        color: #d4a017;
        font-size: 16px;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .benefits-smm-section .section-head h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 991px) {
        .benefits-smm-section {
            padding: 60px 0;
        }

        .benefits-smm-section .section-head h2 {
            font-size: 28px;
        }

        .benefits-smm-desc {
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {
        .benefits-smm-section .section-head h2 {
            font-size: 24px;
        }

        .benefits-smm-desc {
            font-size: 14px;
        }

        .benefits-smm-grid {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 14px 16px;
            border-radius: 12px;
        }

        .benefits-smm-item {
            font-size: 13px;
            padding: 4px 0;
        }

        .benefits-smm-item:nth-child(7) {
            border-bottom: 1px solid #eee;
        }

        .benefits-smm-item:nth-child(8) {
            border-bottom: none;
        }
    }

    @media (max-width: 480px) {
        .benefits-smm-section {
            padding: 40px 0;
        }

        .benefits-smm-section .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .benefits-smm-section .section-head h2 {
            font-size: 22px;
        }

        .benefits-smm-desc {
            font-size: 13px;
        }

        .benefits-smm-grid {
            padding: 12px 14px;
            border-radius: 10px;
        }

        .benefits-smm-item {
            font-size: 12px;
            padding: 3px 0;
        }

        .benefits-smm-icon {
            font-size: 14px;
            width: 20px;
        }
    }

    @media (max-width: 380px) {
        .benefits-smm-section .section-head h2 {
            font-size: 20px;
        }

        .benefits-smm-desc {
            font-size: 12px;
        }

        .benefits-smm-item {
            font-size: 11px;
        }
    }


    .smm-services-section.bg-white {
        background: #ffffff;
        padding: 40px 0;
    }

    .smm-services-section .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .smm-services-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .smm-services-section .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .smm-services-section .section-head h2 span {
        color: #d4a017;
    }

    .smm-service-block {
        background: black;
        border: 1px solid #eee;
        border-radius: 16px;
        padding: 28px 25px;
        margin-bottom: 25px;
        transition: 0.3s;
    }

    .smm-service-block:hover {
        border-color: #d4a017;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
    }

    .smm-service-block h3 {
        font-size: 22px;
        font-weight: 700;
        color: white;
        margin-bottom: 4px;
    }

    .smm-subtitle {
        font-size: 15px;
        font-weight: 600;
        color: #d4a017;
        margin-bottom: 8px;
    }

    .smm-desc {
        color: #bdbdbd;
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 12px;
    }

    .smm-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 6px 20px;
        padding-top: 12px;
        border-top: 1px solid #eee;
    }

    .smm-list span {
        color: #bdbdbd;
        font-size: 14px;
        line-height: 1.6;
        padding: 4px 0;
        transition: 0.3s;
    }

    .smm-list span:hover {
        color: #d4a017;
        transform: translateX(4px);
    }

    @media (max-width: 768px) {
        .smm-services-section.bg-white { padding: 40px 0; }
        .smm-services-section .section-head h2 { font-size: 26px; }
        .smm-service-block { padding: 20px 16px; }
        .smm-service-block h3 { font-size: 19px; }
        .smm-list { grid-template-columns: 1fr; gap: 4px; }
        .smm-list span { font-size: 13px; }
        .smm-desc { font-size: 13px; }
    }

    @media (max-width: 480px) {
        .smm-services-section .section-head h2 { font-size: 22px; }
        .smm-service-block { padding: 16px 12px; border-radius: 12px; }
        .smm-service-block h3 { font-size: 17px; }
        .smm-subtitle { font-size: 13px; }
        .smm-desc { font-size: 12px; }
        .smm-list span { font-size: 12px; }
    }

    .benefits-ppc-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .benefits-ppc-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .benefits-ppc-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .benefits-ppc-section .section-head {
        text-align: center;
        margin-bottom: 15px;
    }

    .benefits-ppc-section .section-head .sm-title {
        display: inline-block;
        background: rgba(212, 175, 55, 0.1);
        color: #d4a017;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .benefits-ppc-section .section-head h2 {
        font-size: 36px;
        font-weight: 800;
        color: #222;
        line-height: 1.2;
        margin: 0;
    }

    .benefits-ppc-section .section-head h2 span {
        color: #d4a017;
    }

    .benefits-ppc-desc {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        max-width: 700px;
        margin: 0 auto 25px;
        text-align: center;
        font-weight: 500;
    }

    .benefits-ppc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 25px;
        max-width: 750px;
        margin: 0 auto;
        padding: 20px 25px;
        background: #ffc10778;
        border-radius: 16px;
        border: 1px solid #eee;
        transition: 0.3s;
    }

    .benefits-ppc-grid:hover {
        border-color: #d4a017;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.04);
    }

    .benefits-ppc-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #444;
        font-size: 14px;
        line-height: 1.5;
        padding: 6px 0;
        transition: 0.3s;
        border-bottom: 1px solid #eee;
    }

    .benefits-ppc-item:nth-child(7),
    .benefits-ppc-item:nth-child(8) {
        border-bottom: none;
    }

    .benefits-ppc-item:hover {
        color: #d4a017;
        transform: translateX(4px);
    }

    .benefits-ppc-icon {
        color: #d4a017;
        font-size: 16px;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .benefits-ppc-section .section-head h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 991px) {
        .benefits-ppc-section {
            padding: 60px 0;
        }

        .benefits-ppc-section .section-head h2 {
            font-size: 28px;
        }

        .benefits-ppc-desc {
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {
        .benefits-ppc-section .section-head h2 {
            font-size: 24px;
        }

        .benefits-ppc-desc {
            font-size: 14px;
        }

        .benefits-ppc-grid {
            grid-template-columns: 1fr;
            gap: 8px;
            padding: 14px 16px;
            border-radius: 12px;
        }

        .benefits-ppc-item {
            font-size: 13px;
            padding: 4px 0;
        }

        .benefits-ppc-item:nth-child(7) {
            border-bottom: 1px solid #eee;
        }

        .benefits-ppc-item:nth-child(8) {
            border-bottom: none;
        }
    }

    @media (max-width: 480px) {
        .benefits-ppc-section {
            padding: 40px 0;
        }

        .benefits-ppc-section .section-head .sm-title {
            font-size: 11px;
            padding: 4px 14px;
        }

        .benefits-ppc-section .section-head h2 {
            font-size: 22px;
        }

        .benefits-ppc-desc {
            font-size: 13px;
        }

        .benefits-ppc-grid {
            padding: 12px 14px;
            border-radius: 10px;
        }

        .benefits-ppc-item {
            font-size: 12px;
            padding: 3px 0;
        }

        .benefits-ppc-icon {
            font-size: 14px;
            width: 20px;
        }
    }

    @media (max-width: 380px) {
        .benefits-ppc-section .section-head h2 {
            font-size: 20px;
        }

        .benefits-ppc-desc {
            font-size: 12px;
        }

        .benefits-ppc-item {
            font-size: 11px;
        }
    }
