/*
 * Elementor widget styles — homepage reference sections.
 */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
    --dch-radius-card: 28px;
}

/* ── Section Wrappers ── */
.dch-widget-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.dch-widget-blog-soft {
    padding: 0;
    background: #ffffff;
}

.dch-widget-events-soft {
    padding: 0;
    background: #ffffff;
}

.dch-widget-portfolio-soft {
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

/* ── Blog Grid ── */
.dch-widget-blog-grid {
    display: grid;
    grid-template-columns: repeat(var(--dch-blog-cols, 3), minmax(0, 1fr));
    gap: 24px;
}

.dch-widget-events-grid {
    display: grid;
    grid-template-columns: repeat(var(--dch-ev-cols, 3), minmax(0, 1fr));
    gap: 24px;
}

/* ── Shared Card Base ── */
.dch-widget-blog-card,
.dch-widget-event-card,
.dch-widget-portfolio-card {
    background: #ffffff;
    border-radius: var(--dch-radius-card);
    overflow: hidden;
    box-shadow: var(--dch-shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dch-widget-event-card {
    display: flex;
    flex-direction: column;
}

.dch-widget-blog-card:hover,
.dch-widget-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(38, 57, 151, 0.12);
}

/* ── Card Image ── */
.dch-widget-blog-card__img,
.dch-widget-event-card__img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.dch-widget-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dch-widget-event-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.5s ease;
}

.dch-widget-blog-card:hover .dch-widget-blog-card__img img,
.dch-widget-event-card:hover .dch-widget-event-card__img img {
    transform: scale(1.05);
}

/* ── Card Body ── */
.dch-widget-blog-card__body,
.dch-widget-event-card__body {
    padding: 24px;
}

/* Category Badge — ref: 0.75rem / 700 / uppercase */
.dch-widget-blog-cat {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(38, 57, 151, 0.08);
    color: var(--dch-navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Card Title — ref: 1.25rem / 700 / line-height 1.4 */
.dch-widget-blog-card h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dch-text-main, #1e293b);
}

.dch-widget-blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dch-widget-blog-card h3 a:hover {
    color: var(--dch-red);
}

/* Card Excerpt — ref: 0.9rem / 400 / line-height 1.6 */
.dch-widget-blog-card p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dch-text-muted);
    line-height: 1.6;
}

/* ── Events — Date Badge (rounded-square, top-right) ── */
.dch-widget-event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.dch-widget-event-date-badge strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dch-navy, #133D6B);
}

.dch-widget-event-date-badge small {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dch-red, #D71920);
}

/* ── Events — Category ── */
.dch-widget-event-cat {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dch-red, #D71920);
}

/* ── Events — Card Body ── */
.dch-widget-event-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dch-widget-event-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dch-navy, #0f172a);
    margin-bottom: auto;
}

.dch-widget-event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 0;
    color: var(--dch-text-muted);
    font-size: 0.85rem;
}

.dch-widget-event-meta i {
    color: var(--dch-navy);
    width: 16px;
}

.dch-widget-event-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dch-red, #D71920);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.dch-widget-event-link:hover {
    gap: 10px;
}

/* ── Portfolio Typography ── */
.dch-widget-portfolio-card h3 {
    margin: 0 0 10px;
    color: var(--dch-navy, #1b286b);
    font-size: 24px;
    font-weight: 700;
}

.dch-widget-portfolio-card p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.dch-widget-portfolio-card__link {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: inherit;
    transition: all 0.3s ease;
}

.dch-widget-portfolio-card__link:hover {
    text-decoration: none !important;
}

/* ── Portfolio Carousel ── */
.dch-widget-portfolio-soft {
    padding: 80px 0;
    background-color: #ffffff;
}

.dch-widget-portfolio-soft .dch-widget-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.dch-widget-portfolio-container {
    position: relative;
    padding: 0 60px 40px; /* مساحة جانبية للأسهم */
}

.dch-carousel-container {
    overflow: hidden;
    width: auto;
    padding: 20px;
    margin: -20px;
}

.dch-widget-portfolio-track {
    display: flex;
    gap: 0px; 
    padding: 20px 5px;
    transition: transform 0.5s ease;
}

.dch-widget-portfolio-card {
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 45px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* ظل أخف */
    transition: all 0.3s ease;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.dch-widget-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 40, 107, 0.06); /* ظل هوفر أخف */
}

.dch-widget-portfolio-card__img {
    height: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 30px;
    margin: 0 0 30px;
    box-sizing: border-box;
}

.dch-widget-portfolio-card__img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* ── Navigation Arrows ── */
/* ── Navigation Arrows ── */
.dch-widget-portfolio-container .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20; /* فوق الكروت */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--dch-navy, #1b286b);
    font-size: 1.1rem;
}

.dch-widget-portfolio-container .left-arrow {
    left: 0;
}

.dch-widget-portfolio-container .right-arrow {
    right: 0;
}

.dch-widget-portfolio-container .nav-arrow:hover {
    background: var(--dch-navy, #1b286b);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(27, 40, 107, 0.2);
}

/* ── Pagination Dots ── */
.dch-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dch-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dch-carousel-dots .dot.active {
    background: var(--dch-navy, #1b286b);
    width: 35px;
    border-radius: 10px;
}

/* ── Button ── */
.dch-widget-actions {
    margin-top: 28px;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .dch-widget-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dch-widget-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .dch-widget-blog-grid,
    .dch-widget-events-grid {
        grid-template-columns: 1fr;
    }

    .dch-widget-portfolio-soft .dch-widget-container {
        padding: 0 8px;
    }

    .dch-widget-portfolio-container {
        padding: 0 0 20px;
    }

    .dch-widget-portfolio-card {
        min-width: 100%;
        padding: 20px 16px;
        border-radius: 24px;
    }

    .dch-widget-portfolio-card__img {
        border-radius: 16px;
    }

    .nav-arrow {
        display: none;
    }
}

/* ── CEO Message Section ── */
.dch-ceo-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.dch-ceo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.dch-ceo-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    z-index: 1;
}

.dch-ceo-image-wrapper img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid #ffffff;
    border-radius: 40px 140px 40px 140px;
    position: relative;
    z-index: 1;
    background: #e2e8f0;
}

/* الكحلي */
.dch-ceo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: var(--dch-navy, #1b286b);
    border-radius: 50px 145px 40px 145px;
    z-index: 0;
}

/* الأحمر */
.dch-ceo-image-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: var(--dch-red, #bf2527);
    border-radius: 40px 145px 50px 145px;
    z-index: -1;
}

.dch-ceo-text-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 750px;
    margin-left: -100px;
    position: relative;
    z-index: 3;
}

.dch-ceo-container.layout-separated {
    gap: 40px;
}

.dch-ceo-container.layout-separated .dch-ceo-text-card {
    margin-left: 0;
}

.dch-ceo-name {
    font-family: 'Inter', sans-serif;
    color: var(--dch-navy, #1b286b);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.dch-ceo-title {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-size: 15px;
    margin: 0 0 30px 0;
}

.dch-ceo-quote {
    font-family: 'Inter', sans-serif;
    color: #374151;
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.dch-ceo-signature {
    font-family: 'Dancing Script', cursive;
    color: var(--dch-navy, #1b286b);
    font-size: 28px;
    margin: 0;
}

/* ── CEO Message Link ── */
.dch-ceo-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background-color: var(--dch-navy, #263997);
    transition: all 0.3s ease;
}

.dch-ceo-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ── Elegant Card Layout ── */
.dch-ceo-elegant {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid rgba(38, 57, 151, 0.08);
    border-radius: 24px;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(38, 57, 151, 0.06);
}

.dch-ceo-elegant__quote-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--dch-navy, #263997);
}

.dch-ceo-elegant__avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(38, 57, 151, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dch-ceo-elegant__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dch-ceo-elegant__body {
    flex: 1;
    min-width: 0;
}

.dch-ceo-quote {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin: 0 0 24px;
}

.dch-ceo-elegant__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(38, 57, 151, 0.1);
}

.dch-ceo-name {
    font-size: 18px;
    margin: 0 0 2px;
}

.dch-ceo-title {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 768px) {
    .dch-ceo-elegant {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }

    .dch-ceo-elegant__footer {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .dch-ceo-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .dch-ceo-image-wrapper {
        width: 320px;
        height: 320px;
        margin-bottom: 30px;
    }
    
    .dch-ceo-text-card {
        margin-left: 0;
        margin-top: 0; /* تم إزالة التداخل العمودي لتظهر الصورة كاملة */
        padding: 40px 30px;
        max-width: 100%;
        text-align: center;
    }
}

/* ── Success Stats Section ── */
.dch-stats-section {
    font-family: 'Inter', sans-serif;
}

.dch-stats-grid {
    display: grid;
    grid-template-columns: repeat(var(--dch-stats-cols, 4), 1fr);
    gap: 24px;
}

.dch-stats-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.03);
    width: 100%;
}

.dch-stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 40, 107, 0.08); /* تأثير ارتفاع ناعم */
}

/* حاوية الأيقونة */
.dch-stats-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px; /* زوايا مربعة ناعمة */
    background: rgba(27, 40, 107, 0.06); /* خلفية زرقاء دافئة خفيفة */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dch-stats-icon i,
.dch-stats-icon svg {
    font-size: 22px;
    width: 22px;
    color: var(--dch-navy, #1b286b); /* لون الأيقونة */
    fill: var(--dch-navy, #1b286b);
}

/* الرقم */
.dch-stats-number {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* الوصف */
.dch-stats-text {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* التجاوب مع الموبايل والتابلت */
@media (max-width: 1024px) {
    .dch-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dch-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Content Alignment (Elementor Prefix Classes) - Removed in favor of direct selectors ── */

/* ── Icon Position (Responsive) ── */
.dch-stats-card {
    display: flex;
    flex-direction: column;
}

/* Desktop */
.dch-icon-pos-left .dch-stats-card { flex-direction: row; align-items: center; gap: 20px; }
.dch-icon-pos-left .dch-stats-icon { margin-bottom: 0; }

.dch-icon-pos-right .dch-stats-card { flex-direction: row-reverse; align-items: center; gap: 20px; }
.dch-icon-pos-right .dch-stats-icon { margin-bottom: 0; }

.dch-icon-pos-top .dch-stats-card { flex-direction: column; }

/* Tablet */
@media (max-width: 1024px) {
    .dch-icon-pos-tablet-left .dch-stats-card { flex-direction: row; align-items: center; gap: 20px; }
    .dch-icon-pos-tablet-left .dch-stats-icon { margin-bottom: 0; }

    .dch-icon-pos-tablet-right .dch-stats-card { flex-direction: row-reverse; align-items: center; gap: 20px; }
    .dch-icon-pos-tablet-right .dch-stats-icon { margin-bottom: 0; }

    .dch-icon-pos-tablet-top .dch-stats-card { flex-direction: column; }
}

/* Mobile */
@media (max-width: 767px) {
    /* Default for mobile if not set is horizontal (per user request) */
    .elementor-widget-dch_stats_numbers .dch-stats-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .elementor-widget-dch_stats_numbers .dch-stats-icon {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
    }

    .dch-icon-pos-mobile-left .dch-stats-card { flex-direction: row; align-items: center; gap: 16px; }
    .dch-icon-pos-mobile-left .dch-stats-icon { margin-bottom: 0; }

    .dch-icon-pos-mobile-right .dch-stats-card { flex-direction: row-reverse; align-items: center; gap: 16px; }
    .dch-icon-pos-mobile-right .dch-stats-icon { margin-bottom: 0; }

    .dch-icon-pos-mobile-top .dch-stats-card { flex-direction: column; align-items: flex-start; }
    .dch-icon-pos-mobile-top .dch-stats-icon { margin-bottom: 16px; width: 55px; height: 55px; }
}

/* Alignment within horizontal layout */
.dch-align-center.dch-icon-pos-left .dch-stats-card,
.dch-align-center.dch-icon-pos-right .dch-stats-card,
.dch-align-center.dch-icon-pos-tablet-left .dch-stats-card,
.dch-align-center.dch-icon-pos-tablet-right .dch-stats-card,
.dch-align-center.dch-icon-pos-mobile-left .dch-stats-card,
.dch-align-center.dch-icon-pos-mobile-right .dch-stats-card {
    justify-content: center;
}/* --- Journey Timeline Styles --- */
.tp-journey-container {
    --tp-navy: var(--dch-navy, #334155);\n    --tp-red: var(--dch-red, #dc2626);
    --tp-text-gray: #6a7080;
    --tp-circle-size: 60px;
    
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.tp-journey-wrapper {
    width: 100%;
}

.tp-journey-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.tp-journey-header h2 {
    color: var(--tp-navy);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
}

.tp-journey-underline {
    width: 60px;
    height: 3px;
    background-color: var(--tp-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Timeline Wrapper */
.tp-timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

/* Horizontal Line (Desktop) */
.tp-timeline-line {
    position: absolute;
    top: 50px; /* Offset for circle positioning */
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.tp-milestone-list {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 15px;
}

/* Individual Milestone */
.tp-milestone {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Year Circle */
.tp-milestone-point {
    width: var(--tp-circle-size);
    height: var(--tp-circle-size);
    background-color: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(38, 57, 151, 0.05);
}

.tp-milestone-point .year {
    font-weight: 700;
    font-size: 14px;
    color: var(--tp-navy);
}

/* Milestone Content */
.tp-milestone h4 {
    color: var(--tp-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
}

.tp-milestone p {
    color: var(--tp-text-gray);
    font-size: 13px;
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

/* ACTIVE STATE (2022) - MATCHING IMAGE */
.tp-milestone.active .tp-milestone-point {
    background-color: var(--tp-red);
    border-color: var(--tp-red);
    box-shadow: 0 10px 15px -3px rgba(191, 37, 39, 0.2);
}

.tp-milestone.active .tp-milestone-point .year {
    color: #fff;
}

/* Hover Effects */
.tp-milestone:hover {
    transform: translateY(-5px);
}

.tp-milestone:hover .tp-milestone-point {
    border-color: var(--tp-navy);
    box-shadow: 0 10px 20px rgba(38, 57, 151, 0.1);
}

/* ── Steps Layout ── */
.tp-steps-wrapper {
    position: relative;
    padding: 40px 0;
}

.tp-steps-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--dch-navy, #263997);
    z-index: 0;
}

.tp-steps-list {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.tp-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    margin: 0 auto;
}

.tp-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--dch-navy, #263997);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dch-navy, #263997);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.tp-step-circle svg,
.tp-step-circle i {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.tp-step-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.tp-step-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

/* ------------------------------------------- */
/* RESPONSIVE (Mobile)                         */
/* ------------------------------------------- */
@media (max-width: 991px) {
    .tp-milestone-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    
    .tp-timeline-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .tp-milestone-list {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .tp-milestone {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .tp-milestone-point {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .tp-milestone p {
        margin: 0;
        max-width: none;
    }
    
    .tp-milestone h4 {
        margin-bottom: 4px;
    }
}

@media (max-width: 768px) {
    .tp-steps-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .tp-step-item {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
        gap: 16px;
        align-items: flex-start;
    }

    .tp-step-circle {
        margin-bottom: 0;
    }

    .tp-steps-line {
        top: 0;
        bottom: 0;
        left: 25px;
        right: auto;
        width: 3px;
        height: auto;
    }
}

/* ── Big Typography Widget ── */
.dch-big-text-wrapper {
    text-align: center;
    overflow: hidden;
}

.dch-big-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
    display: inline-block;
}

.dch-big-text.dch-solid-stroke {
    background: none;
    -webkit-text-fill-color: transparent;
}

.dch-big-subtitle {
    margin-top: 16px;
    font-size: 16px;
    opacity: 0.8;
}

.dch-big-text-wrapper[data-animation="fade_on_scroll"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dch-big-text-wrapper[data-animation="fade_on_scroll"].dch-visible {
    opacity: 1;
    transform: translateY(0);
}

@-webkit-keyframes dch-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



@keyframes dch-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes dch-glow-pulse {
    0%,
    100% {
        text-shadow: 0 0 10px var(--dch-glow-color, rgba(38,57,151,0.4));
    }
    50% {
        text-shadow: 0 0 25px var(--dch-glow-color, rgba(38,57,151,0.6)), 0 0 50px var(--dch-glow-color, rgba(38,57,151,0.3));
    }
}

@keyframes dch-glow-pulse {
    0%,
    100% {
        text-shadow: 0 0 10px var(--dch-glow-color, rgba(38,57,151,0.4));
    }
    50% {
        text-shadow: 0 0 25px var(--dch-glow-color, rgba(38,57,151,0.6)), 0 0 50px var(--dch-glow-color, rgba(38,57,151,0.3));
    }
}

@-webkit-keyframes dch-stroke-draw {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 0.3;
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes dch-stroke-draw {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 0.3;
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.dch-anim-gradient-shift .dch-big-text {
    background-size: 200% 200%;
    -webkit-animation: dch-gradient-shift var(--dch-anim-speed, 3s) ease;
    animation: dch-gradient-shift var(--dch-anim-speed, 3s) ease;
    -webkit-animation-iteration-count: var(--dch-anim-iteration, infinite);
    animation-iteration-count: var(--dch-anim-iteration, infinite);
}

.dch-anim-glow-pulse .dch-big-text {
    -webkit-animation: dch-glow-pulse var(--dch-anim-speed, 3s) ease;
    animation: dch-glow-pulse var(--dch-anim-speed, 3s) ease;
    -webkit-animation-iteration-count: var(--dch-anim-iteration, infinite);
    animation-iteration-count: var(--dch-anim-iteration, infinite);
}

.dch-anim-stroke-draw .dch-big-text {
    -webkit-animation: dch-stroke-draw var(--dch-anim-speed, 3s) ease;
    animation: dch-stroke-draw var(--dch-anim-speed, 3s) ease;
    -webkit-animation-iteration-count: var(--dch-anim-iteration, 1);
    animation-iteration-count: var(--dch-anim-iteration, 1);
}

/* 1. Holographic Flow (Aurora) */
.dch-anim-holographic-flow .dch-big-text {
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-size: 300% 300% !important;
    background-image: linear-gradient(
        var(--dch-anim-angle, 45deg),
        var(--dch-gradient-start, #263997),
        var(--dch-gradient-end, #bf2527),
        var(--dch-gradient-start, #263997),
        var(--dch-gradient-end, #bf2527)
    ) !important;
    -webkit-animation: dch-holographic-flow var(--dch-anim-speed, 5s) ease-in-out alternate var(--dch-anim-iteration, infinite);
    animation: dch-holographic-flow var(--dch-anim-speed, 5s) ease-in-out alternate var(--dch-anim-iteration, infinite);
}
@-webkit-keyframes dch-holographic-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 50% 100%; }
}
@keyframes dch-holographic-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 50% 100%; }
}

/* 2. Liquid Smooth Fill */
.dch-anim-liquid-fill .dch-big-text {
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-size: 100% 400% !important;
    background-image: linear-gradient(
        180deg,
        var(--dch-gradient-end, #bf2527) 0%,
        var(--dch-gradient-start, #263997) 33%,
        var(--dch-gradient-end, #bf2527) 66%,
        var(--dch-gradient-start, #263997) 100%
    ) !important;
    -webkit-animation: dch-liquid-fill var(--dch-anim-speed, 4s) ease-in-out alternate var(--dch-anim-iteration, infinite);
    animation: dch-liquid-fill var(--dch-anim-speed, 4s) ease-in-out alternate var(--dch-anim-iteration, infinite);
}
@-webkit-keyframes dch-liquid-fill {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}
@keyframes dch-liquid-fill {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

/* 3. Laser Glow Stroke */
.dch-anim-laser-stroke .dch-big-text {
    background: none !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: var(--dch-stroke-width, 1px) var(--dch-stroke-color, var(--dch-gradient-start, #263997)) !important;
    -webkit-animation: dch-laser-stroke var(--dch-anim-speed, 3s) ease-in-out alternate var(--dch-anim-iteration, infinite);
    animation: dch-laser-stroke var(--dch-anim-speed, 3s) ease-in-out alternate var(--dch-anim-iteration, infinite);
}
@-webkit-keyframes dch-laser-stroke {
    0% { -webkit-text-stroke-color: var(--dch-gradient-start, #263997); filter: drop-shadow(0 0 2px var(--dch-gradient-start, #263997)); }
    100% { -webkit-text-stroke-color: var(--dch-gradient-end, #bf2527); filter: drop-shadow(0 0 10px var(--dch-gradient-end, #bf2527)); }
}
@keyframes dch-laser-stroke {
    0% { -webkit-text-stroke-color: var(--dch-gradient-start, #263997); filter: drop-shadow(0 0 2px var(--dch-gradient-start, #263997)); }
    100% { -webkit-text-stroke-color: var(--dch-gradient-end, #bf2527); filter: drop-shadow(0 0 10px var(--dch-gradient-end, #bf2527)); }
}

/* 4. Glass Shimmer Glare */
.dch-anim-glass-shimmer .dch-big-text {
    position: relative;
    display: inline-block;
    background: none !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke: var(--dch-stroke-width, 1px) var(--dch-stroke-color, var(--dch-gradient-start, rgba(38,57,151,0.3))) !important;
}
.dch-anim-glass-shimmer .dch-big-text::after {
    content: attr(data-text); 
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    background-size: 200% auto;
    background-image: linear-gradient(var(--dch-anim-angle, 60deg), transparent 40%, rgba(255,255,255,0.8) 50%, transparent 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: dch-glass-shimmer var(--dch-anim-speed, 3s) linear var(--dch-anim-iteration, infinite);
    animation: dch-glass-shimmer var(--dch-anim-speed, 3s) linear var(--dch-anim-iteration, infinite);
}
@-webkit-keyframes dch-glass-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes dch-glass-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
