#deepkw-course-lp {
    font-family: "Segoe UI", "Cairo", Tahoma, Geneva, Verdana, sans-serif;
    direction: ltr;
    background: #fff;
    color: #222;
    overflow-x: hidden;
}

/* ---- HERO SECTION ---- */
#deepkw-course-lp .dklp-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0 0 0;
    min-height: 500px;
}

#deepkw-course-lp .dklp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#deepkw-course-lp .dklp-hero-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.55;
}

#deepkw-course-lp .dklp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

#deepkw-course-lp .dklp-hero-content {
    flex: 1;
    color: #fff;
    text-align: left;
}

#deepkw-course-lp .dklp-hero-content h1 {
    font-size: 44px !important;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

#deepkw-course-lp .dklp-hero-content .dklp-hero-desc {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.7;
    margin-bottom: 24px;
}

#deepkw-course-lp .dklp-hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

#deepkw-course-lp .dklp-hero-checklist li {
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-direction: row-reverse;
        justify-content: flex-end; */
}

#deepkw-course-lp .dklp-hero-checklist li .dklp-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5857f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: #fff;
}

#deepkw-course-lp .dklp-cta-btn {
    display: inline-block;
    background: #f5857f;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(230, 57, 70, 0.45);
}
/* #deepkw-course-lp .dklp-cta-btn.btn-1 {
    background: #e63946 !important;
} */

#deepkw-course-lp .dklp-cta-btn:hover {
    background: #f5857f;
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none;
}

/* ---- VIDEO SECTION ---- */
#deepkw-course-lp .dklp-video-section {
    padding: 20px;
    text-align: center;
}

#deepkw-course-lp .dklp-section-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

#deepkw-course-lp .dklp-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #e63946;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

#deepkw-course-lp .dklp-video-wrapper {
    max-width: 780px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    background: #000;
    position: relative;
}

@media (min-width: 780px) {
    #deepkw-course-lp .dklp-video-wrapper {
        height: 438px;
    }
}

#deepkw-course-lp .dklp-video-wrapper iframe,
#deepkw-course-lp .dklp-video-wrapper video {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

#deepkw-course-lp .dklp-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition:
        transform 0.2s,
        background-color 0.2s;
}

#deepkw-course-lp .dklp-video-play-btn:hover {
    background: #c1121f;
    transform: translate(-50%, -50%) scale(1.1);
}

#deepkw-course-lp .dklp-video-play-btn i {
    color: #fff;
    font-size: 26px;
    margin-left: 6px; /* Offset to center play icon triangle */
}

/* ---- TWO-COL SECTIONS ---- */
#deepkw-course-lp .dklp-two-col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

#deepkw-course-lp .dklp-two-col.dklp-reverse {
    direction: ltr;
}

#deepkw-course-lp .dklp-two-col.dklp-reverse > * {
    direction: ltr;
}

/* ---- WHY SECTION ---- */
#deepkw-course-lp .dklp-why-section {
    background: #fff;
}

#deepkw-course-lp .dklp-box-title {
    font-size: 26px !important;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
    text-align: left;
}

#deepkw-course-lp .dklp-content-text,
#deepkw-course-lp .dklp-content-text p,
#deepkw-course-lp .dklp-content-text span,
#deepkw-course-lp .dklp-content-text li {
    font-size: 17px !important;
    color: #444 !important;
    line-height: 1.8;
    text-align: left;
}

/* ---- LEARN / CONTENT GRID ---- */
#deepkw-course-lp .dklp-learn-section {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

#deepkw-course-lp .dklp-checklist-styled {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-checklist-styled li {
    font-size: 17px !important;
    color: #333 !important;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#deepkw-course-lp .dklp-checklist-styled li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-checklist-styled li .dklp-li-icon {
    color: #e63946;
    font-size: 14px;
    flex-shrink: 0;
}

/* ---- COURSE CONTENT BOX ---- */
#deepkw-course-lp .dklp-course-content-box {
    background: #fff5f5ba;
    border-radius: 12px;
    border: 1px solid #fde0e0;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-height: 100%;
}

#deepkw-course-lp .dklp-course-stat-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#deepkw-course-lp .dklp-stat-badge {
    background: #fff5f5;
    border: 1px solid #fcc;
    color: #e63946;
    font-size: 14px !important;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#deepkw-course-lp .dklp-stat-badge i {
    font-size: 13px;
}

/* ---- ACCORDION ---- */
#deepkw-course-lp .dklp-accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

#deepkw-course-lp .dklp-accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#deepkw-course-lp .dklp-accordion-header {
    background: #fff;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px !important;
    font-weight: 600;
    color: #1a1a2e;
    user-select: none;
    text-align: left;
    direction: ltr;
}

#deepkw-course-lp .dklp-accordion-header .dklp-acc-arrow {
    color: #000;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-right: 10px;
}

#deepkw-course-lp .dklp-accordion-header.dklp-active .dklp-acc-arrow {
    transform: rotate(180deg);
}

#deepkw-course-lp .dklp-accordion-body {
    background: #fafafa;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.25s;
}

#deepkw-course-lp .dklp-accordion-body.dklp-open {
    max-height: 600px;
    padding: 16px 20px;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li {
    font-size: 16px !important;
    color: #444 !important;
    padding: 9px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li a {
    color: #1a1a2e !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    direction: ltr;
    text-align: left;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li a:hover {
    color: #e63946 !important;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li a i {
    color: #e63946;
    font-size: 13px;
}

#deepkw-course-lp .dklp-video-duration {
    font-size: 13px !important;
    color: #888 !important;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ---- INSTRUCTOR SECTION ---- */
#deepkw-course-lp .dklp-instructor-section {
    background: #fff;
}

#deepkw-course-lp .dklp-instructor-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    text-align: left;
}

#deepkw-course-lp .dklp-instructor-card .dklp-instructor-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid #e63946;
    display: block;
    margin: 0 auto 16px auto;
}

#deepkw-course-lp .dklp-instructor-name {
    font-size: 20px !important;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 4px;
    text-align: center;
}

#deepkw-course-lp .dklp-instructor-role {
    font-size: 15px !important;
    color: #666 !important;
    text-align: center;
    margin-bottom: 16px;
}

#deepkw-course-lp .dklp-instructor-bio,
#deepkw-course-lp .dklp-instructor-bio p,
#deepkw-course-lp .dklp-instructor-bio span {
    font-size: 16px !important;
    color: #444 !important;
    line-height: 1.8;
}

/* ---- FOR WHOM SECTION ---- */
#deepkw-course-lp .dklp-forwho-section {
    padding: 60px 20px;
}

#deepkw-course-lp .dklp-forwho-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

#deepkw-course-lp .dklp-forwho-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-forwho-list li {
    font-size: 17px !important;
    color: #333 !important;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: left;
}

#deepkw-course-lp .dklp-forwho-list li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-forwho-list li .dklp-fw-icon {
    color: #e63946;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- TESTIMONIALS ---- */
#deepkw-course-lp .dklp-testimonials-section {
    background: #fff;
    padding: 20px;
}

#deepkw-course-lp .dklp-testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

#deepkw-course-lp .dklp-testimonial-card {
    background: #fff5f5;
    border-radius: 14px;
    padding: 28px 24px 56px 24px;
    border: 1px solid #fcc;
    position: relative;
    text-align: left;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.06);
    display: flex;
    flex-direction: column;
}

#deepkw-course-lp .dklp-testimonial-card .dklp-quote-icon {
    font-size: 40px;
    color: #e63946;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}

#deepkw-course-lp .dklp-testimonial-text {
    font-size: 17px !important;
    color: #000 !important;
    line-height: 1.6;
    margin-bottom: 0;
    max-height: 4.8em; /* Exactly 3 lines based on line-height: 1.6 */
    overflow-y: auto;
    padding-right: 4px;
}

#deepkw-course-lp .dklp-testimonial-text::-webkit-scrollbar {
    width: 4px;
}

#deepkw-course-lp .dklp-testimonial-text::-webkit-scrollbar-track {
    background: transparent;
}

#deepkw-course-lp .dklp-testimonial-text::-webkit-scrollbar-thumb {
    background: rgba(230, 57, 70, 0.3);
    border-radius: 2px;
}

#deepkw-course-lp .dklp-testimonial-text::-webkit-scrollbar-thumb:hover {
    background: rgba(230, 57, 70, 0.6);
}

#deepkw-course-lp .dklp-testimonial-author {
    font-size: 14px !important;
    color: #e63946 !important;
    font-weight: 600;
    position: absolute;
    bottom: 24px;
    left: 24px;
}

/* ---- PRICING / INVESTMENT SECTION ---- */

#deepkw-course-lp .dklp-pricing-inner {
    max-width: 620px;
    margin: 0 auto;
}

#deepkw-course-lp .dklp-pricing-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid #e63946;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(230, 57, 70, 0.12);
}

#deepkw-course-lp .dklp-pricing-label {
    font-size: 15px !important;
    color: #888 !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#deepkw-course-lp .dklp-price-main {
    font-size: 52px !important;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 6px;
}

#deepkw-course-lp .dklp-price-currency {
    font-size: 22px !important;
    font-weight: 600;
    color: #e63946;
    margin-left: 4px;
}

#deepkw-course-lp .dklp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px 0;
    text-align: left;
}

#deepkw-course-lp .dklp-pricing-features li {
    font-size: 16px !important;
    color: #333 !important;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

#deepkw-course-lp .dklp-pricing-features li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-pricing-features li i {
    color: #e63946;
    font-size: 14px;
    flex-shrink: 0;
}

#deepkw-course-lp .dklp-enroll-btn {
    display: block;
    background: #e63946;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

#deepkw-course-lp .dklp-enroll-btn:hover {
    background: #c1121f;
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none;
}

/* ---- FAQ SECTION ---- */
#deepkw-course-lp .dklp-faq-section {
    background: #fff;
    padding: 20px;
}

#deepkw-course-lp .dklp-faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* ---- BOTTOM CTA BANNER ---- */
#deepkw-course-lp .dklp-bottom-cta {
    background: url("../images/footer-01.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* padding: 80px 20px; */
    text-align: center;
    margin: 5px 5px;
    border-radius: 5px;
}

#deepkw-course-lp .dklp-bottom-cta h2 {
    font-size: 32px !important;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 14px;
    line-height: 1.4;
}

#deepkw-course-lp .dklp-bottom-cta p,
#deepkw-course-lp .dklp-bottom-cta p span {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 28px;
}

#deepkw-course-lp .dklp-bottom-cta .dklp-cta-btn {
    font-size: 19px !important;
}

/* ---- MODAL ---- */
#deepkw-course-lp-modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

#deepkw-course-lp-modal .modal-header {
    background: #1a1a2e;
    color: #fff;
    border-bottom: none;
    direction: ltr;
}

#deepkw-course-lp-modal .modal-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #fff;
}

#deepkw-course-lp-modal .close {
    color: #fff;
    opacity: 1;
}

#deepkw-course-lp-modal .modal-body {
    padding: 0;
    background: #000;
}

#deepkw-course-lp-modal .dklp-modal-video {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
}

#deepkw-course-lp-modal .dklp-modal-video iframe,
#deepkw-course-lp-modal .dklp-modal-video video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    #deepkw-course-lp .dklp-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 40px;
    }

    #deepkw-course-lp .dklp-hero-content {
        text-align: center;
    }

    #deepkw-course-lp .dklp-hero-checklist li {
        justify-content: center;
    }

    #deepkw-course-lp .dklp-hero-content h1 {
        font-size: 32px !important;
    }

    #deepkw-course-lp .dklp-price-main {
        font-size: 40px !important;
    }
}

@media (max-width: 600px) {
    #deepkw-course-lp .dklp-hero-content h1 {
        font-size: 26px !important;
    }

    #deepkw-course-lp .dklp-section-title {
        font-size: 24px !important;
    }

    #deepkw-course-lp .dklp-pricing-card {
        padding: 24px 16px;
    }

    #deepkw-course-lp .dklp-price-main {
        font-size: 36px !important;
    }
}

#deepkw-course-lp
    .dklp-testimonials-section
    .dklp-testimonials-container
    .container {
    max-width: 60%;
}

@media (max-width: 768px) {
    #deepkw-course-lp
        .dklp-testimonials-section
        .dklp-testimonials-container
        .container {
        max-width: 100%;
    }
}

/* ---- ICON LIST (Why This Course card) ---- */
#deepkw-course-lp .dklp-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-icon-list li {
    background: #fff;
    margin-bottom: 7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

#deepkw-course-lp .dklp-icon-list li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-icon-list .dklp-il-text {
    font-size: 16px !important;
    color: #000 !important;
    flex: 1;
    text-align: left;
}

#deepkw-course-lp .dklp-icon-list .dklp-il-icon {
    width: 44px;
    height: 44px;
    background: #e63946;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
}

/* ---- WHAT WILL YOU LEARN CARD ---- */
#deepkw-course-lp .dklp-learn-card {
    background: #fff5f5ba;
    border-radius: 12px;
    border: 1px solid #fde0e0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.07);
    height: 100%;
}

#deepkw-course-lp .dklp-learn-card-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    height: 100%;
}

#deepkw-course-lp .dklp-learn-head-side-title {
    width: 100%;
    flex: 0 0 100%;
    padding: 24px 20px 0 20px;
    text-align: center !important;
}

#deepkw-course-lp .dklp-box-main-title {
    font-size: 26px !important;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-align: center !important;
    width: 100%;
}

#deepkw-course-lp .dklp-learn-img-side {
    width: 130px;
    min-width: 130px;
    background: #fde8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

#deepkw-course-lp .dklp-brain-img {
    width: 100%;
    max-width: 100px;
    opacity: 0.7;
}

#deepkw-course-lp .dklp-learn-list-side {
    flex: 1;
    padding: 24px 20px;
}

#deepkw-course-lp .dklp-learn-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-learn-checklist li {
    font-size: 15px !important;
    color: #000 !important;
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.5;
}

#deepkw-course-lp .dklp-learn-checklist li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-learn-checklist .dklp-lc-icon {
    color: #e63946;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- INSTRUCTOR BANNER CARD ---- */
#deepkw-course-lp .dklp-instructor-banner {
    background: #fff5f5ba;
    border-radius: 12px;
    border: 1px solid #fde0e0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.07);
    height: 100%;
}

#deepkw-course-lp .dklp-instructor-banner-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
}

#deepkw-course-lp .dklp-ib-text {
    flex: 1;
    padding: 24px 20px;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}

#deepkw-course-lp .dklp-ib-label {
    font-size: 13px !important;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

#deepkw-course-lp .dklp-ib-name {
    font-size: 20px !important;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 4px;
    line-height: 1.4;
}

#deepkw-course-lp .dklp-ib-name .dklp-ib-title {
    /* display: block; */
    font-size: 14px !important;
    font-weight: 600;
    color: #555;
    margin-top: 2px;
}

#deepkw-course-lp .dklp-ib-bio {
    font-size: 14px !important;
    color: #000 !important;
    line-height: 1.75;
    margin: 10px 0 0 0;
}

#deepkw-course-lp .dklp-ib-photo {
    width: 160px;
    min-width: 160px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#deepkw-course-lp .dklp-ib-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    display: block;
    padding: 6px;
    border-radius: 12px;
}

#deepkw-course-lp .dklp-ib-img-1 {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: auto;
}

/* ---- WHO IS THIS COURSE FOR CARD ---- */
#deepkw-course-lp .dklp-forwho-card {
    background: #fff5f5ba;
    border-radius: 12px;
    border: 1px solid #fde0e0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.07);
    height: 100%;
}

#deepkw-course-lp .dklp-learn-head-side-title-1 {
    width: 100%;
    padding: 24px 20px 0 20px;
    text-align: center !important;
}

#deepkw-course-lp .dklp-box-main-title-1 {
    font-size: 26px !important;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-align: center !important;
    width: 100%;
}

#deepkw-course-lp .dklp-forwho-card-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
}

#deepkw-course-lp .dklp-forwho-img-side {
    width: 130px;
    min-width: 130px;
    background: #fde8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

#deepkw-course-lp .dklp-silhouette-svg {
    opacity: 0.65;
}

#deepkw-course-lp .dklp-forwho-list-side {
    flex: 1;
    padding: 24px 20px;
}

#deepkw-course-lp .dklp-forwho-card-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-forwho-card-checklist li {
    font-size: 15px !important;
    color: #333 !important;
    padding: 9px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    line-height: 1.5;
}

#deepkw-course-lp .dklp-forwho-card-checklist li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-forwho-card-checklist .dklp-fwc-text {
    flex: 1;
    padding-right: 12px;
    color: #000;
}

#deepkw-course-lp .dklp-forwho-card-checklist .dklp-fwc-icon {
    /* width: 28px;
    height: 28px;
    background: #e63946;
    border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}
#deepkw-course-lp .dklp-forwho-card-checklist .dklp-fwc-icon .fa {
    color: #e63946;
    margin-right: 6px;
    font-size: 17px;
}

/* ---- INVESTMENT / PRICING CARD ---- */
#deepkw-course-lp .dklp-investment-card {
    background: #fff5f5;
    border-radius: 16px;
    border: 1px solid #fde0e0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.08);
    display: flex;
    flex-direction: column;
    margin: 0 50px;
}

#deepkw-course-lp .dklp-investment-card-body {
    display: flex;
    align-items: stretch;
}

#deepkw-course-lp .dklp-inv-img-side {
    width: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

#deepkw-course-lp .dklp-hand-svg {
    opacity: 0.85;
}

#deepkw-course-lp .dklp-inv-content-side {
    flex: 1;
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#deepkw-course-lp .dklp-inv-price-row {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

#deepkw-course-lp .dklp-inv-price {
    font-size: 40px !important;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    margin: 0 4px;
}

#deepkw-course-lp .dklp-inv-currency {
    font-size: 26px !important;
    font-weight: 700;
    color: #e63946;
    margin: 0 4px;
}

#deepkw-course-lp .dklp-inv-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

#deepkw-course-lp .dklp-inv-checklist li {
    font-size: 15px !important;
    color: #333 !important;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    line-height: 1.4;
}

#deepkw-course-lp .dklp-inv-checklist li:last-child {
    border-bottom: none;
}

#deepkw-course-lp .dklp-inv-text {
    flex: 1;
    padding: 0;
    color: #000;
}

#deepkw-course-lp .dklp-inv-icon {
    color: #e63946;
    font-size: 17px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

#deepkw-course-lp .dklp-investment-card-footer {
    padding: 0 24px 24px 24px;
    display: flex;
    justify-content: center;
}

#deepkw-course-lp .dklp-investment-card-footer .dklp-enroll-btn {
    display: block;
    width: 60%;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    #deepkw-course-lp .dklp-investment-card-body {
        flex-direction: column !important;
    }
    #deepkw-course-lp .dklp-inv-img-side {
        width: 100%;
        min-width: 100%;
        padding: 30px;
    }
    #deepkw-course-lp .dklp-investment-card-footer .dklp-enroll-btn {
        width: 100%;
    }

    /* Stack custom cards vertically on mobile — must override row-reverse !important */
    #deepkw-course-lp .dklp-learn-card-inner,
    #deepkw-course-lp .dklp-instructor-banner-inner,
    #deepkw-course-lp .dklp-forwho-card-inner {
        flex-direction: column !important;
    }

    #deepkw-course-lp .dklp-learn-img-side,
    #deepkw-course-lp .dklp-forwho-img-side {
        width: 100%;
        min-width: 100%;
        padding: 24px;
        height: auto;
    }

    /* Photo side: reset margin-top and use auto height on mobile */
    #deepkw-course-lp .dklp-ib-photo {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: 180px;
        max-height: 260px;
        margin-top: 0 !important;
        align-items: center;
    }

    #deepkw-course-lp .dklp-ib-photo img {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 240px;
        object-fit: contain;
        object-position: bottom center;
    }
}

/* ---- FAQ STYLING EXTENSION ---- */
#deepkw-course-lp .dklp-faq-hdr-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

#deepkw-course-lp .dklp-faq-badge {
    background: transparent;
    color: #e63946 !important;
    font-size: 16px !important;
    font-weight: 700;
    min-width: 35px;
}

#deepkw-course-lp .dklp-faq-question {
    font-size: 16px !important;
    font-weight: 600;
    color: #1a1a2e !important;
}

#deepkw-course-lp .dklp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

/* ============================================================
   ARABIC RTL OVERRIDES
   ============================================================ */
#deepkw-course-lp {
    direction: rtl !important;
    text-align: right !important;
    font-family: "Cairo", "Segoe UI", Tahoma, sans-serif !important;
}

/* Hero Section */
#deepkw-course-lp .dklp-hero-content {
    text-align: right !important;
}

#deepkw-course-lp .dklp-hero-content .dklp-cta-btn {
    margin-right: 100px !important;
    margin-left: 100px !important;
}

#deepkw-course-lp .dklp-hero-checklist {
    margin: 0 0 30px 0;
}

#deepkw-course-lp .dklp-hero-checklist li {
    flex-direction: row !important;
    justify-content: flex-start !important;
}

#deepkw-course-lp .dklp-hero-checklist li .dklp-check-icon {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

/* Section Title & Box Title */
#deepkw-course-lp .dklp-box-title {
    text-align: right !important;
}

#deepkw-course-lp .dklp-box-title.text-center {
    text-align: center !important;
}

#deepkw-course-lp .dklp-content-text,
#deepkw-course-lp .dklp-content-text p,
#deepkw-course-lp .dklp-content-text span,
#deepkw-course-lp .dklp-content-text li {
    text-align: right !important;
}

#deepkw-course-lp .dklp-content-text.text-center,
#deepkw-course-lp .dklp-content-text.text-center span {
    text-align: center !important;
}

/* Card inner containers: preserve LTR layout order (image left, text right) */
#deepkw-course-lp .dklp-instructor-banner-inner,
#deepkw-course-lp .dklp-investment-card-body {
    direction: ltr !important;
}

/* "What You'll Learn" card: Arabic → image LEFT, text RIGHT */
#deepkw-course-lp .dklp-learn-card-inner {
    direction: ltr !important;
    flex-direction: row-reverse !important;
}

/* "Who Is This Course For" card: Arabic → image LEFT, text RIGHT */
#deepkw-course-lp .dklp-forwho-card-inner {
    direction: ltr !important;
    flex-direction: row-reverse !important;
}

/* Align contents inside card list sides to RTL right-align */
#deepkw-course-lp .dklp-learn-list-side,
#deepkw-course-lp .dklp-ib-text,
#deepkw-course-lp .dklp-forwho-list-side,
#deepkw-course-lp .dklp-inv-content-side {
    direction: rtl !important;
    text-align: right !important;
}

#deepkw-course-lp .dklp-ib-name,
#deepkw-course-lp .dklp-ib-bio {
    text-align: right !important;
}

/* Card lists alignment (checkmark icon right, text left) */
#deepkw-course-lp .dklp-learn-checklist li,
#deepkw-course-lp .dklp-forwho-card-checklist li {
    display: flex !important;
    flex-direction: row !important; /* Put icon on the right, text on the left */
    justify-content: flex-start !important;
    text-align: right !important;
    gap: 10px;
}

#deepkw-course-lp .dklp-learn-checklist li .dklp-lc-icon,
#deepkw-course-lp .dklp-forwho-card-checklist li .dklp-fwc-icon {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Investment checklist matching reference image (icons vertical line on far right, right-aligned text) */
#deepkw-course-lp .dklp-inv-price-row {
    flex-direction: row-reverse !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 16px !important;
}

#deepkw-course-lp .dklp-inv-checklist {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    width: 100% !important;
}

#deepkw-course-lp .dklp-inv-checklist li {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: right !important;
    gap: 10px !important;
    width: 100% !important;
    margin-right: 10px !important;
}

#deepkw-course-lp .dklp-inv-checklist li .dklp-inv-text {
    flex: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: right !important;
}

#deepkw-course-lp .dklp-inv-checklist li .dklp-inv-icon {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Testimonial alignment */
#deepkw-course-lp .dklp-testimonial-card {
    text-align: right !important;
}

#deepkw-course-lp .dklp-testimonial-author {
    right: auto !important;
    left: 24px !important;
}

/* Accordion Alignment */
#deepkw-course-lp .dklp-accordion-header {
    direction: rtl !important;
    text-align: right !important;
    flex-direction: row !important;
}

#deepkw-course-lp .dklp-accordion-header > span {
    flex: 1;
    text-align: right !important;
}

#deepkw-course-lp .dklp-accordion-header .dklp-acc-arrow {
    margin-right: 0 !important;
    margin-left: 10px !important;
    transform: none;
}

#deepkw-course-lp .dklp-accordion-header.dklp-active .dklp-acc-arrow {
    transform: rotate(180deg);
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li {
    direction: rtl !important;
    flex-direction: row !important;
    justify-content: space-between !important;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li a {
    direction: rtl !important;
    text-align: right !important;
    justify-content: flex-start !important;
    gap: 10px;
}

#deepkw-course-lp .dklp-accordion-body ul.dklp-video-list li a i {
    margin-right: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0;
}

/* FAQ Badges */
#deepkw-course-lp .dklp-faq-hdr-left {
    flex-direction: row !important;
    gap: 16px !important;
    flex: 1 !important;
    justify-content: flex-start !important;
}

#deepkw-course-lp .dklp-faq-badge {
    text-align: right !important;
}

#deepkw-course-lp .dklp-faq-question {
    text-align: right !important;
}

/* Investment Price display alignment in RTL */
#deepkw-course-lp .dklp-inv-price-row {
    flex-direction: row-reverse !important; /* display currency KWD after price cleanly */
    justify-content: center !important;
}

/* Icon list card (Why This Course card list) RTL */
#deepkw-course-lp .dklp-icon-list li {
    flex-direction: row !important;
    justify-content: flex-start !important;
}

#deepkw-course-lp .dklp-icon-list .dklp-il-text {
    text-align: right !important;
}

#deepkw-course-lp .dklp-inv-img-side img {
    width: 175px !important;
    max-width: none;
}

/* ==========================================================
   ARABIC RESPONSIVE OVERRIDES — must come LAST in the file
   so they win the cascade over the RTL !important rules above
   ========================================================== */
@media (max-width: 768px) {
    /* Stack all card inners vertically — overrides row-reverse !important */
    #deepkw-course-lp .dklp-learn-card,
    #deepkw-course-lp .dklp-instructor-banner,
    #deepkw-course-lp .dklp-forwho-card {
        height: auto !important;
    }

    #deepkw-course-lp .dklp-learn-card-inner,
    #deepkw-course-lp .dklp-instructor-banner-inner,
    #deepkw-course-lp .dklp-forwho-card-inner {
        flex-direction: column !important;
        align-items: stretch !important;
        height: auto !important;
    }

    /* Photo side: full-width, auto height, no margin offset */
    #deepkw-course-lp .dklp-ib-photo {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 140px !important;
        max-height: 240px !important;
        margin-top: 10px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #deepkw-course-lp .dklp-learn-card .dklp-ib-photo,
    #deepkw-course-lp .dklp-forwho-card .dklp-ib-photo {
        display: none !important;
    }

    #deepkw-course-lp .dklp-ib-photo img,
    #deepkw-course-lp .dklp-ib-photo .dklp-ib-img-1 {
        width: auto !important;
        max-width: 100% !important;
        max-height: 200px !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* List sides: take full width when stacked */
    #deepkw-course-lp .dklp-learn-list-side,
    #deepkw-course-lp .dklp-forwho-list-side {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    /* Investment card body */
    #deepkw-course-lp .dklp-investment-card-body {
        flex-direction: column !important;
    }

    #deepkw-course-lp .dklp-inv-img-side {
        display: none !important;
    }

    #deepkw-course-lp .dklp-investment-card-footer .dklp-enroll-btn {
        width: 100% !important;
    }

    #deepkw-course-lp .dklp-hero-content .dklp-cta-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
