/*
 * 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: transparent;
}

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

.dch-widget-portfolio-soft {
    padding: 0;
    background: transparent;
    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-primary);
    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-accent);
}

/* 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-primary, #133D6B);
}

.dch-widget-event-date-badge small {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dch-accent, #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-accent, #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-primary, #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-primary);
    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-accent, #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-primary, #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: transparent;
}

.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 0;
    margin: -20px 0;
}

.dch-widget-portfolio-track {
    display: flex;
    gap: 0px; 
    padding: 20px 0;
    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;
    position: relative;
    overflow: hidden;
}

.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-primary, #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-primary, #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-primary, #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-primary, #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-accent, #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: var(--font-primary);
    color: var(--dch-primary, #1b286b);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.dch-ceo-title {
    font-family: var(--font-primary);
    color: #6b7280;
    font-size: 15px;
    margin: 0 0 30px 0;
}

.dch-ceo-quote {
    font-family: var(--font-primary);
    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-primary, #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-primary, #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-primary, #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: var(--font-primary);
}

.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-primary, #1b286b); /* Ù„ÙˆÙ† Ø§Ù„Ø£ÙŠÙ‚ÙˆÙ†Ø© */
    fill: var(--dch-primary, #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-primary, #334155);
    --tp-blue: var(--dch-primary, #0088cc);
    --tp-text-gray: #6a7080;
    --tp-circle-size: 60px;
    
    font-family: var(--font-primary);
    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-blue);
    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-blue);
    border-color: var(--tp-blue);
    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-primary, #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-primary, #263997);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dch-primary, #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; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ Hero Banner Widget
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dch-hero-banner {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* â”€â”€ Background Layer â”€â”€ */
.dch-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dch-hero-banner .dch-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* Overlay gradient â€” sits above the image */
.dch-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* â”€â”€ Content Layer â”€â”€ */
.dch-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: flex-start;
}

.dch-hero-text-block {
    max-width: 650px;
}

/* â”€â”€ Breadcrumbs â”€â”€ */
.dch-hero-breadcrumbs {
    font-size: 16px;
    color: #a3b8cc;
    margin-bottom: 20px;
    font-weight: 500;
}

.dch-hero-breadcrumbs span {
    color: #ffffff;
}

/* â”€â”€ Title â”€â”€ */
.dch-hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

/* â”€â”€ Description â”€â”€ */
.dch-hero-desc {
    font-size: 20px;
    color: #a3b8cc;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 500;
    max-width: 95%;
}

/* â”€â”€ Buttons Container â”€â”€ */
.dch-hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* â”€â”€ Shared Button Base â”€â”€ */
.dch-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 35px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

/* â”€â”€ Primary Button (solid white) â”€â”€ */
.dch-hero-btn-primary {
    background-color: #ffffff;
    color: #002244;
    border-color: #ffffff;
}

.dch-hero-btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Arrow icon inside primary button */
.dch-hero-btn-arrow {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-left: 0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dch-hero-btn-primary:hover .dch-hero-btn-arrow {
    transform: translateX(-5px);
}

/* â”€â”€ Secondary Button (outline) â”€â”€ */
.dch-hero-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.dch-hero-btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* â”€â”€ Responsive: Tablet â”€â”€ */
@media (max-width: 1024px) {
    .dch-hero-title {
        font-size: 52px;
    }
}

/* â”€â”€ Responsive: Mobile â”€â”€ */
@media (max-width: 768px) {
    .dch-hero-banner {
        height: auto !important;
        padding: 100px 0;
    }

    .dch-hero-content {
        padding: 0 30px;
    }

    .dch-hero-text-block {
        max-width: 100%;
    }

    .dch-hero-title {
        font-size: 42px;
    }

    .dch-hero-desc {
        font-size: 18px;
        max-width: 100%;
    }

    .dch-hero-buttons {
        flex-direction: column;
    }

    .dch-hero-btn {
        text-align: center;
        justify-content: center;
    }

    .dch-hero-btn-arrow {
        margin-right: 8px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ Services Catalog Widget ("Ù…Ø§ Ø§Ù„Ø°ÙŠ Ù†ÙˆÙØ±Ù‡ØŸ")
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dch-services-catalog {
    width: 100%;
    padding: 40px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background-color: #f8fbfd;
}

.dch-sc-content-col {
    flex: 1;
    text-align: center;
}

.dch-sc-title {
    font-size: 44px;
    font-weight: 800;
    color: #002244;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.dch-sc-desc {
    font-size: 18px;
    color: #4a5a6a;
    line-height: 1.8;
    font-weight: 600;
}

.dch-sc-list-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.dch-sc-item {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dch-sc-item:last-child {
    border-bottom: none;
}

.dch-sc-item:hover {
    transform: translateX(-8px);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-bottom-color: transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.dch-sc-item:hover + .dch-sc-item {
    border-top-color: transparent;
}

.dch-sc-number {
    font-size: 30px;
    font-weight: 800;
    color: #00a0e3;
    width: 50px;
    text-align: right;
    transition: color 0.3s ease, transform 0.3s ease;
}

.dch-sc-item:hover .dch-sc-number {
    color: #002244;
    transform: scale(1.05);
}

.dch-sc-item-text {
    font-size: 19px;
    font-weight: 700;
    color: #002244;
    flex-grow: 1;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.dch-sc-item:hover .dch-sc-item-text {
    color: #00a0e3;
}

.dch-sc-arrow {
    color: #00a651;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.dch-sc-item:hover .dch-sc-arrow {
    transform: translateX(-8px);
}

.dch-sc-arrow svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* â”€â”€ Services Catalog: Responsive â”€â”€ */
@media (max-width: 768px) {
    .dch-services-catalog {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    .dch-sc-content-col,
    .dch-sc-list-col {
        width: 100%;
    }
    .dch-sc-item:hover {
        transform: translateY(-3px);
        margin: 0;
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ Target Audience Widget ("Ù†Ø®Ø¯Ù… Ø§Ø­ØªÙŠØ§Ø¬Ø§Øª Ù…Ø®ØªÙ„ÙØ©")
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dch-target-audience {
    width: 100%;
    padding: 60px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background-color: #ffffff;
}

.dch-ta-title-col {
    flex: 1;
    text-align: center;
}

.dch-ta-title {
    font-size: 42px;
    font-weight: 800;
    color: #002244;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.dch-ta-list-col {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.dch-ta-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dch-ta-item:last-child {
    border-bottom: none;
}

.dch-ta-item:hover {
    background-color: #f8fbfd;
    border-radius: 8px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-bottom-color: transparent;
}

.dch-ta-item:hover + .dch-ta-item {
    border-top-color: transparent;
}

.dch-ta-icon {
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #e2e8f0;
    color: #0066cc;
    transition: transform 0.3s ease;
}

.dch-ta-item:hover .dch-ta-icon {
    transform: scale(1.1);
}

.dch-ta-icon svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.5;
}

.dch-ta-icon i {
    font-size: 36px;
}

.dch-ta-content {
    flex: 1;
    padding-right: 30px;
    text-align: right;
}

.dch-ta-item-title {
    font-size: 20px;
    font-weight: 800;
    color: #00509e;
    margin: 0 0 8px 0;
}

.dch-ta-item-desc {
    font-size: 15px;
    font-weight: 600;
    color: #4a5a6a;
    line-height: 1.6;
    margin: 0;
}

/* â”€â”€ Target Audience: Responsive â”€â”€ */
@media (max-width: 768px) {
    .dch-target-audience {
        flex-direction: column;
        padding: 40px 20px;
    }
    .dch-ta-title-col,
    .dch-ta-list-col {
        width: 100%;
    }
    .dch-ta-content {
        padding-right: 20px;
    }
    .dch-ta-icon {
        width: 70px;
    }
}

/* ============================================= */
/* CATALOG CTA BANNER                            */
/* ============================================= */
.dch-catalog-cta {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    direction: rtl;
    font-family: var(--font-primary, 'Cairo', sans-serif);
}

.dch-catalog-cta__visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
}

.dch-catalog-cta__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.dch-catalog-cta__visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dch-catalog-cta__content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    margin-left: 42%;
    text-align: center;
    gap: 15px;
}

.dch-catalog-cta__text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.dch-catalog-cta__title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
    margin: 0;
}

.dch-catalog-cta__subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1200px) {
    .dch-catalog-cta {
        height: auto;
        flex-direction: column;
        padding-bottom: 30px;
    }
    .dch-catalog-cta__visual {
        position: relative;
        width: 100%;
        height: 250px;
    }
    .dch-catalog-cta__content {
        margin-left: 0;
        padding: 30px 20px 0;
    }
    .dch-catalog-cta__title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .dch-catalog-cta__button-group {
        flex-direction: column;
        width: 100%;
    }
    .dch-catalog-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* â”€â”€ Catalog CTA Banner Widget â”€â”€ */
.dch-ccb-banner {
    --ccb-gradient-start: #003b8e;
    --ccb-gradient-end: #009a8d;
    --ccb-overlay-stop: 60%;
    --ccb-direction: to left;
    
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(var(--ccb-direction), var(--ccb-gradient-end) 0%, var(--ccb-gradient-start) var(--ccb-overlay-stop));
    box-sizing: border-box;
}

.dch-ccb-banner * {
    box-sizing: border-box;
}

.dch-ccb-visual {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    width: 45%; 
}

.dch-ccb-banner .dch-ccb-visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 20%;
}

.dch-ccb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 60%, var(--ccb-gradient-start) 100%);
}

.dch-ccb-content {
    flex: 1;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    text-align: center;
    gap: 15px;
    margin-left: 45%; 
}

.dch-ccb-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.dch-ccb-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
    color: #ffffff;
}

.dch-ccb-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.dch-ccb-button-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dch-ccb-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    height: 48px;
    border-radius: 10px;
}

.dch-ccb-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dch-ccb-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.dch-ccb-btn-catalog {
    background-color: #ffffff;
    color: #007c72;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dch-ccb-btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dch-ccb-btn-whatsapp {
    background-color: #009a8d;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.dch-ccb-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 154, 141, 0.4);
}

@media (max-width: 1200px) {
    .dch-ccb-banner {
        height: auto !important;
        flex-direction: column;
        padding-bottom: 40px;
    }
    .dch-ccb-visual {
        position: relative;
        width: 100% !important;
        height: 280px;
    }
    .dch-ccb-content {
        margin-left: 0 !important;
        padding: 30px 20px 0;
    }
    .dch-ccb-title {
        white-space: normal;
        font-size: 1.5rem;
    }
    .dch-ccb-overlay {
        background: linear-gradient(to bottom, transparent 60%, var(--ccb-gradient-start) 100%) !important;
    }
}

@media (max-width: 768px) {
    .dch-ccb-button-group {
        flex-direction: column;
        width: 100%;
    }
    .dch-ccb-btn {
        width: 100%;
        justify-content: center;
    }
}


