/* ==========================================================================
   Services Page - Digital Marketing Style (Refined)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ps-lime: #7ebc12;
    /* Your Project Primary Color */
    --ps-lime-dark: #6ba310;
    --ps-dark: #0a0f1e;
    /* Deep Navy/Black */
    --ps-gray: #f2f4f6;
    --ps-text: #4b5563;
}

body {
    font-family: 'Manrope', sans-serif !important;
    background: #fff;
    color: var(--ps-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--ps-dark);
    line-height: 1.2;
    font-weight: 800;
}

.digi-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. Hero Section (Matched to Reference)
   ========================================================================== */
.digi-hero {
    padding: 60px 0 80px;
    /* Reduced top padding from 120px to 60px */
    background: #ffffff;
    /* Clean White Background */
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Decoration Dots (Top Center) */
.hero-dots {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background-image: radial-gradient(#e5e7eb 2px, transparent 2px);
    background-size: 10px 10px;
}

.digi-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.hero-left {
    padding-right: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ps-dark);
    margin-bottom: 24px;
    font-size: 15px;
}

.hero-tag-icon {
    width: 24px;
    height: 14px;
    background: var(--ps-lime);
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.hero-tag-icon::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--ps-dark);
    border-radius: 50%;
    opacity: 0.8;
}

.digi-hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #111;
}

.digi-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-hero-dark {
    background: #0f1c15;
    /* Very dark green/black almost */
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #0f1c15;
}

.btn-hero-dark:hover {
    background: var(--ps-lime);
    border-color: var(--ps-lime);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-link {
    color: var(--ps-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.btn-hero-link:hover {
    color: var(--ps-lime);
}

/* Right Collage */
.hero-collage-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Composition */
.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.c-img-box {
    overflow: hidden;
    position: relative;
}

.c-img-1 {
    /* Left large vertical */
    grid-column: 1;
    grid-row: 1 / span 2;
    border-radius: 20px 20px 20px 100px;
    /* Unique shape */
    height: 400px;
    margin-top: 50px;
}

.c-img-2 {
    /* Right top */
    grid-column: 2;
    grid-row: 1;
    border-radius: 100px 20px 20px 20px;
    height: 220px;
}

.c-img-3 {
    /* Right bottom */
    grid-column: 2;
    grid-row: 2;
    border-radius: 20px 20px 100px 20px;
    height: 220px;
    margin-top: -20px;
}

.c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* B&W effect from reference */
    transition: 0.4s ease;
}

.hero-collage-wrapper:hover img {
    filter: grayscale(0%);
}

/* Badge/Stamp */
.hero-badge-stamp {
    position: absolute;
    bottom: 20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: #0f1c15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 4px solid #fff;
    /* Scalloped look simulated */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: rotate 10s linear infinite;
}

.stamp-inner {
    color: var(--ps-lime);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Decoration Stars */
.decor-star {
    position: absolute;
    color: var(--ps-lime);
    animation: twinkle 2s infinite alternate;
}

.star-1 {
    bottom: 40px;
    right: -20px;
    font-size: 30px;
}

.star-2 {
    top: 0;
    left: 40%;
    font-size: 20px;
}

@keyframes twinkle {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ==========================================================================
   2. Marquee Strip (Dark Green Footer style in ref)
   ========================================================================== */
.digi-marquee-strip {
    background: #0f1c15;
    /* Dark Green/Black */
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-part {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.mq-item {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.mq-item i {
    color: var(--ps-lime);
    font-size: 18px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   3. About / Features Split
   ========================================================================== */
.digi-about {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.digi-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 30px;
    filter: grayscale(100%);
    transition: 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-main-img:hover {
    filter: grayscale(0%);
}

.about-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #0f1c15;
    /* Dark Green */
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.progress-bar-wrap {
    margin-top: 40px;
}

.prog-item {
    margin-bottom: 24px;
}

.prog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ps-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prog-track {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: #0f1c15;
    position: relative;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.prog-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--ps-lime);
    border-radius: 50%;
    border: 3px solid #0f1c15;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 48px;
    font-weight: 800;
    color: var(--ps-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: #64748b;
    position: relative;
    padding-left: 24px;
    font-weight: 600;
}

.stat-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--ps-lime);
    border-radius: 50%;
    box-shadow: 4px 0 0 var(--ps-dark);
    /* Dual color effect from ref */
}

/* ==========================================================================
   4. Detailed Services Section
   ========================================================================== */
.detailed-services {
    padding: 100px 0;
    background: #fff;
}

.ds-header {
    text-align: center;
    margin-bottom: 80px;
}

.ds-header span {
    color: var(--ps-lime);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.ds-header h2 {
    font-size: 48px;
    margin-top: 10px;
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ds-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.ds-card:hover {
    background: #fff;
    border-color: var(--ps-lime);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.ds-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ps-dark);
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ds-card:hover .ds-icon {
    background: var(--ps-lime);
    color: #fff;
}

.ds-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.ds-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ds-link {
    color: var(--ps-dark);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.ds-card:hover .ds-link {
    color: var(--ps-lime-dark);
    gap: 12px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

/* ── Tablet (max-width: 991px) ──────────────────────────────────────────── */
@media (max-width: 991px) {

    /* Hero */
    .digi-hero {
        padding: 40px 0 60px;
    }

    .digi-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        padding-right: 0;
        margin-bottom: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .digi-hero h1 {
        font-size: 42px;
    }

    .digi-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .collage-grid {
        margin: 0 auto;
        max-width: 400px;
    }

    .hero-collage-wrapper {
        height: auto;
    }

    .c-img-1 { height: 300px; margin-top: 30px; }
    .c-img-2,
    .c-img-3 { height: 160px; }

    .hero-badge-stamp {
        width: 90px;
        height: 90px;
        left: 0;
        bottom: 10px;
    }

    /* Marquee */
    .digi-marquee-strip {
        padding: 14px 0;
    }

    .mq-item {
        font-size: 14px;
        gap: 10px;
    }

    .marquee-part {
        gap: 30px;
        padding-right: 30px;
    }

    /* About Section */
    .digi-about {
        padding: 60px 0;
    }

    .digi-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-badge {
        right: 0;
        top: 20px;
        width: 80px;
        height: 80px;
        font-size: 11px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .prog-header {
        font-size: 13px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
        padding-top: 40px;
    }

    .stat-val {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Services Grid */
    .agency-style-services {
        padding: 60px 0;
    }

    .agency-style-services .services-intro-row {
        padding: 0 20px;
        gap: 30px;
    }

    .agency-style-services .services-intro-row h2 {
        font-size: 36px;
    }

    .ds-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile (max-width: 768px) ──────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Hero */
    .digi-hero {
        padding: 30px 0 40px;
    }

    .digi-hero-grid {
        gap: 30px;
    }

    .digi-hero h1 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .digi-hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-dark {
        padding: 14px 30px;
        font-size: 14px;
        text-align: center;
    }

    .btn-hero-link {
        font-size: 14px;
    }

    .hero-canvas {
        display: none;
    }

    /* Marquee */
    .digi-marquee-strip {
        padding: 12px 0;
    }

    .mq-item {
        font-size: 13px;
        gap: 8px;
    }

    .mq-item i {
        font-size: 14px;
    }

    .marquee-part {
        gap: 24px;
        padding-right: 24px;
    }

    .marquee-track {
        animation-duration: 20s;
    }

    /* About Section */
    .digi-about {
        padding: 50px 0;
    }

    .digi-container {
        padding: 0 16px;
    }

    .digi-about-grid {
        gap: 30px;
    }

    .about-main-img {
        border-radius: 20px;
    }

    .about-badge {
        width: 70px;
        height: 70px;
        font-size: 10px;
        right: -5px;
        top: 15px;
    }

    .about-content .hero-tag {
        font-size: 13px;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .progress-bar-wrap {
        margin-top: 30px;
    }

    .prog-item {
        margin-bottom: 18px;
    }

    .prog-header {
        font-size: 12px;
        letter-spacing: 0;
        margin-bottom: 8px;
    }

    .prog-track {
        height: 6px;
    }

    .prog-fill::after {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .about-content .btn-hero-dark {
        margin-top: 25px !important;
        padding: 13px 28px;
        font-size: 14px;
    }

    /* Stats Row */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .stat-val {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 13px;
        padding-left: 20px;
    }

    .stat-label::before {
        width: 10px;
        height: 10px;
        top: 4px;
    }

    /* Services Grid */
    .agency-style-services {
        padding: 50px 0;
    }

    .agency-style-services .services-intro-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .agency-style-services .services-intro-row h2 {
        font-size: 28px;
    }

    .agency-style-services .services-intro-row span {
        letter-spacing: 2px;
        font-size: 13px;
    }

    .agency-style-services .services-intro-row p {
        font-size: 15px;
    }

    .agency-style-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .agency-style-card {
        padding: 35px 25px;
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    }

    .agency-style-card i {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .agency-style-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .agency-style-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* ── Small Mobile (max-width: 480px) ────────────────────────────────────── */
@media (max-width: 480px) {

    /* Hero */
    .digi-hero {
        padding: 20px 0 30px;
    }

    .digi-hero h1 {
        font-size: 26px;
    }

    .digi-hero p {
        font-size: 14px;
    }

    .hero-tag {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .btn-hero-dark {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Marquee */
    .mq-item {
        font-size: 11px;
        gap: 6px;
    }

    .mq-item i {
        font-size: 12px;
    }

    .marquee-part {
        gap: 18px;
        padding-right: 18px;
    }

    /* About Section */
    .digi-about {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-content .hero-tag {
        font-size: 12px;
    }

    .progress-bar-wrap {
        margin-top: 24px;
    }

    .prog-item {
        margin-bottom: 16px;
    }

    .prog-header {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .prog-header span:last-child {
        font-weight: 800;
    }

    .prog-track {
        height: 5px;
    }

    .prog-fill::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .about-content .btn-hero-dark {
        margin-top: 20px !important;
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    /* Stats Row */
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
        padding-top: 24px;
    }

    .stat-val {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
        padding-left: 18px;
    }

    .stat-label::before {
        width: 8px;
        height: 8px;
        box-shadow: 3px 0 0 var(--ps-dark);
    }

    /* Services */
    .agency-style-services .services-intro-row h2 {
        font-size: 24px;
    }

    .agency-style-services .services-intro-row span {
        letter-spacing: 1.5px;
        font-size: 12px;
    }

    .agency-style-services .services-intro-row p {
        font-size: 14px;
    }

    .agency-style-card {
        padding: 30px 20px;
    }

    .agency-style-card i {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .agency-style-card h3 {
        font-size: 20px;
    }

    .agency-style-card p {
        font-size: 13px;
    }

    .agency-style-card .read-more {
        font-size: 12px;
        padding: 8px 16px;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   Agency Pattern - Services Strip (REPLICA FROM LOGIN/CART AESTHETIC)
   ========================================================================== */
.agency-style-services {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.agency-style-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(163, 230, 53, 0.05) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(163, 230, 53, 0.05) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.agency-style-services .services-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.agency-style-services .services-intro-row h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Rajdhani', sans-serif !important;
    text-transform: uppercase;
    color: #000;
}

.agency-style-services .services-intro-row span {
    font-weight: 800;
    color: #a3e635;
    /* Vibrant Lime */
    display: block;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.agency-style-services .services-intro-row p {
    text-transform: none;
    border-top: 3px solid #a3e635;
    padding-top: 25px;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

.agency-style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.agency-style-card {
    background: #fff;
    color: #000;
    padding: 60px 40px;
    position: relative;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.agency-style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #a3e635;
    transition: 0.3s;
}

.agency-style-card:hover {
    transform: translateY(-10px);
    border-color: #a3e635;
    box-shadow: 0 25px 50px rgba(163, 230, 53, 0.1);
}

.agency-style-card:hover::before {
    width: 100%;
}

.agency-style-card i {
    font-size: 48px;
    color: #000;
    margin-bottom: 25px;
    transition: 0.3s;
}

.agency-style-card:hover i {
    color: #a3e635;
    transform: scale(1.1);
}

.agency-style-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Rajdhani', sans-serif !important;
    text-transform: uppercase;
    font-weight: 700;
}

.agency-style-card p {
    font-size: 15px;
    opacity: 0.7;
    text-transform: none;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
    font-weight: 500;
}

.agency-style-card .read-more {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a3e635;
    padding: 10px 20px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
    transition: 0.3s;
}

.agency-style-card:hover .read-more {
    background: #000;
    color: #fff;
}

@media (max-width: 1024px) {
    .agency-style-services .services-intro-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .agency-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .agency-style-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   4. Advanced Glossy CTA Section
   ========================================================================== */
.digi-cta-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.digi-cta-card {
    background: #0f1c15;
    /* Dark Green/Black */
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(10, 15, 30, 0.15);
}

/* Glossy Effect Overlay */
.digi-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(126, 188, 18, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Abstract shapes */
.cta-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.cta-shape-1 {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid var(--ps-lime);
}

.cta-shape-2 {
    bottom: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background: var(--ps-lime);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
}

.digi-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.digi-cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.1;
}

.digi-cta-title span {
    color: var(--ps-lime);
    position: relative;
    display: inline-block;
}

/* Underline SVG effect */
.digi-cta-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5C20 8 50 12 98 2' stroke='%237ebc12' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.digi-cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    line-height: 1.6;
}

.digi-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-primary {
    background: var(--ps-lime);
    color: #fff;
    padding: 20px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(126, 188, 18, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(126, 188, 18, 0.6);
    color: #fff;
    background: #8fd615;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .digi-cta-card {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .digi-cta-title {
        font-size: 36px;
    }

    .digi-cta-btns {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}