        :root {
            --primary-orange: #F48D06;
            --light-orange: #fff0e0;
            --bg-white: #FFFFFF;
            --text-black: #000;
            --text-gray: #666;
            --border-light: #E8E8E8;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-black);
            background-color: var(--bg-white);
        }

        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            background-image: url(https://ditinteractive.com/wp-content/uploads/2025/11/3.hero-banner-img-copy.webp);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #fff;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            margin: 0 auto;
        }

        .hero-main {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 50px;
        }

        .hero-text {
            text-align: left;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: #fff;
        }

        .hero-section .subheadline {
            font-size: 1.3rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-content .metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
			     background-color: #eff2f600;
        }

        .metric-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 30px 25px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .metric-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .metric-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
            display: block;
            color: #fff;
        }

        .metric-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1;
            color: #fff;
        }

        .metric-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Client Overview Section */
        .overview-section {
            padding: 80px 0;
            background-color: var(--bg-white);
        }

        .overview-section .container {
            max-width: 1000px;
        }

        body.single-casestudeay section .section-title {
            font-size: 2.2rem;
            color: #000;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 600;
        }
section.dit-latest-blog-section.section-space-t-b.casestudeay-list-wappoer-main .dit-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .overview-card {
            background: white;
            padding: 35px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            border-left: 4px solid var(--primary-orange);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .overview-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .overview-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .overview-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .overview-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 141, 6, 0.15);
        }


        .overview-card h3 {
            color: var(--primary-orange);
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .overview-card p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Challenge Section */
        .challenge-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .challenge-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .challenge-image {
            position: relative;
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards;
        }

        .challenge-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }


        .challenge-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .challenge-text {
            font-size: 1.15rem;
            color: var(--text-gray);
            line-height: 1.8;
            opacity: 0;
            animation: fadeInLeft 0.8s ease forwards;
        }

        .challenge-text:nth-of-type(1) {
            animation-delay: 0.2s;
        }

        .challenge-text:nth-of-type(2) {
            animation-delay: 0.4s;
        }


        .pain-points {
            padding: 40px 0;
            border-radius: 12px;
            opacity: 0;
            animation: fadeInLeft 0.8s ease forwards;
            animation-delay: 0.6s;
        }

        .pain-points h4 {
            color: var(--primary-orange);
            font-size: 1.3rem;
            margin-bottom: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pain-points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            list-style: none;
            padding-left: 0;
        }

        .pain-points li {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            border-top: 3px solid var(--primary-orange);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.5s ease forwards;
        }

        .pain-points li:hover {
            transform: translateY(-5px);
            box-shadow: 0px 0px 28px 4px #dddddd;
        }

        .pain-point-number {
            background: var(--light-orange);
            color: #f48d06;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .pain-point-text {
            font-size: 1rem;
            color: var(--text-black);
            line-height: 1.6;
            margin: 0;
        }

        .pain-points li:nth-child(1) {
            animation-delay: 0.7s;
        }

        .pain-points li:nth-child(2) {
            animation-delay: 0.8s;
        }

        .pain-points li:nth-child(3) {
            animation-delay: 0.9s;
        }

        .pain-points li:nth-child(4) {
            animation-delay: 1s;
        }

        /* Solution Section */
        .solution-section {
            padding: 80px 0;
            background-color: var(--bg-white);
        }

        .solution-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .workflow-steps {
            display: grid;
            gap: 25px;
            margin-top: 40px;
        }

        .workflow-step {
            background: white;
            padding: 30px 30px 30px 80px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            border-left: 4px solid var(--primary-orange);
            display: flex;
            align-items: start;
            gap: 20px;
            position: relative;
        }

        .step-number {
            background: var(--light-orange);
            color: #f48d06;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            flex-shrink: 0;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
        }

        .step-content h4 {
            color: var(--primary-orange);
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .step-content p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.7;
        }

        .workflow-diagram {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            text-align: center;
            border: 1px solid var(--border-light);
        }

        .workflow-diagram h3 {
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .workflow-diagram-placeholder {
            background: var(--bg-white);
            padding: 25px;
            border-radius: 8px;
            border: 2px dashed var(--primary-orange);
            color: var(--text-gray);
        }

        .workflow-diagram-placeholder img {
            width: 100%;
        }

        /* Impact Section */
        .impact-section {
            padding: 100px 0;
            background-color: #f9f9f9;
            position: relative;
        }

        .impact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light), transparent);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .impact-item {
            position: relative;
            padding: 35px 25px;
            text-align: center;
            background: var(--bg-white);
            border-radius: 12px;
            border: 1px solid var(--border-light);
            transition: all 0.4s ease;
            
            transform: translateY(30px);
        }

        .impact-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .impact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(244, 141, 6, 0.12);
            border-color: rgba(244, 141, 6, 0.3);
        }

        .impact-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-orange), rgba(244, 141, 6, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .impact-item:hover .impact-icon-wrapper {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        }

        .impact-icon-minimal {
            font-size: 1.8rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .impact-item:hover .impact-icon-minimal {
            color: white;
        }

        .impact-number {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-family: 'Segoe UI', sans-serif;
            letter-spacing: -1px;
        }

        .impact-label {
            font-size: 1rem;
            color: var(--text-black);
            line-height: 1.5;
            font-weight: 600;
            margin: 0 0 10px 0;
        }

        .impact-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Before After Section */
        .before-after-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .comparison-table {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 40px;
            border: 1px solid var(--border-light);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table thead {
            background: var(--primary-orange);
            color: white;
        }

        .comparison-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-gray);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .badge-before {
            background: #FFE5E5;
            color: #C0392B;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-after {
            background: #D5F4E6;
            color: #27AE60;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Workflow Visual Section */
        .workflow-visual-section {
            padding: 80px 0;
            background-color: var(--bg-white);
        }

        .visual-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

        .flow-diagram {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .flow-item {
            flex: 1;
            max-width: 150px;
            text-align: center;
            padding: 25px 20px;
            background: #fff8f5;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

        .flow-arrow {
            font-size: 2rem;
            color: var(--primary-orange);
        }

        .flow-item h5 {
            color: var(--primary-orange);
            margin-bottom: 10px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .flow-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Key Features Section */
        .features-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light), transparent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
            margin-left: auto;
            margin-right: auto;
        }
.cta-button-wrapper .cta-image-wrapper img.cta-image {
    height: 100%;
    object-fit: cover;
}
        .feature-card {
            background: var(--bg-white);
            padding: 20px;
            border-radius: 12px;
            text-align: left;
            border: none;
            box-shadow: 0 2px 15px rgb(0 0 0 / 8%);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            
            transform: translateY(30px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-orange), var(--light-orange));
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleY(1);
        }

        .feature-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            box-shadow: 0 8px 30px rgba(244, 141, 6, 0.15);
        }

        .feature-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-orange), rgba(244, 141, 6, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon-wrapper {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            color: white;
        }

        .feature-card h4 {
            color: var(--text-black);
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 600;
            line-height: 1.3;
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: #f9f9f9;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light), transparent);
        }

        .cta-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .cta-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
            background: #fff8f5;
            padding: 50px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .cta-text {
            text-align: left;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--text-black);
            line-height: 1.3;
        }

        .cta-section p {
            font-size: 1.05rem;
            margin-bottom: 0;
            color: #666;
            line-height: 1.7;
        }

        .cta-button-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
			height: 100%;
        }

        .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 8px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 141, 6, 0.2);
    width: auto;
    margin-top: 20px;
}
.cta-button-wrapper .cta-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 40px -10px #000000;
	height: 100%;
}
        .cta-button:hover {
            background: #e67e00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(244, 141, 6, 0.3);
        }

        .cta-button i {
            font-size: 1.1rem;
        }

        .cta-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }

        .cta-benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #666;
            width: 100%;
            text-align: left;
        }

        .cta-benefit-item i {
            color: var(--primary-orange);
            font-size: 0.9rem;
        }
        @media (max-width:1023px) {
            
            .challenge-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .features-grid {
    grid-template-columns: repeat(2, 1fr);

}
        }
        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-text {
                text-align: center;
            }

            .hero-content .metrics {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }

            .hero-section h1 {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            .hero-section .subheadline {
                font-size: 1.1rem;
            }


            .metric-item {
                padding: 25px 20px;
            }

            .metric-icon {
                font-size: 2.2rem;
                margin-bottom: 10px;
            }

            .metric-value {
                font-size: 2rem;
            }

            .metric-label {
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 2rem;
            }



            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .impact-item {
                padding: 30px 20px;
            }

            .impact-icon-wrapper {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .impact-icon-minimal {
                font-size: 1.5rem;
            }

            .impact-number {
                font-size: 2.5rem;
            }


            .challenge-image {
                order: 2;
            }

            .challenge-content {
                order: 1;
            }


            .comparison-table {
                overflow-x: auto;
            }

            .cta-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 30px;
            }

            .cta-text {
                text-align: center;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .cta-benefits {
                align-items: center;
            }
        }
@media(max-width:574px){
	.workflow-diagram {
    padding: 10px;
}
	.workflow-diagram-placeholder {
    padding: 7px;
}
	.workflow-diagram-placeholder img {
    width: 100%;
    border-radius: 8px;
}
	.section-title {
    margin-bottom: 30px;
}
	.impact-grid {
    margin-top: 0;
}
	.impact-item:hover {
    transform: translateY(20px);
}
	.flow-item {
    max-width: 100%;
}
	.cta-button {
    padding: 12px 5px;
    font-size: 14px;
}
	.dit-blog-grid {
        grid-template-columns: 1fr;
    }
}
        @media (max-width: 480px) {
            
            .flow-diagram {
                flex-direction: column;
            }

            .flow-arrow {
                transform: rotate(90deg);
            }

            .hero-section {
                padding: 60px 0;
            }

            .hero-section h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero-section .subheadline {
                font-size: 1rem;
            }

            .hero-main {
                gap: 30px;
            }

            .metric-item {
                padding: 20px 15px;
            }

           .hero-content .metrics {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .overview-section,
            .challenge-section,
            .solution-section,
            .impact-section,
            .before-after-section,
            .workflow-visual-section,
            .features-section {
                padding: 50px 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-card {
                padding: 35px;
            }

            .feature-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .feature-icon {
                font-size: 1.8rem;
            }

            .feature-card h4 {
                font-size: 1.3rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .impact-item {
                padding: 25px 20px;
            }

            .impact-icon-wrapper {
                width: 55px;
                height: 55px;
                margin-bottom: 15px;
            }

            .impact-icon-minimal {
                font-size: 1.3rem;
            }

            .impact-number {
                font-size: 2.2rem;
            }

            .impact-label {
                font-size: 0.95rem;
            }

            .impact-description {
                font-size: 0.85rem;
            }

            

            .pain-points-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .pain-points li {
                padding: 20px;
            }

            .challenge-wrapper {
                gap: 30px;
            }


            .challenge-text {
                font-size: 1rem;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-wrapper {
                padding: 30px 20px;
                gap: 30px;
            }

            .cta-section h2 {
                font-size: 1.6rem;
                margin-bottom: 15px;
            }

            .cta-section p {
                font-size: 0.95rem;
            }

           

            .cta-benefit-item {
                font-size: 0.9rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

