body {
    font-family: var(--font-main)
}

.hero-section {
    background-color: var(--color-off-white) !important;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.h1-title {
    font-weight: var(--fw-semibold);
    font-size: var(--font-size-hero-section-title);
    line-height: 1.2;
    margin-bottom: 25px
}

.trust-badge {
    background: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    width: fit-content;
    font-size: var(--font-size-section-label);
    font-weight: var(--fw-semibold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    margin-bottom: 20px
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
    padding: 60px 0
}

.marquee {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-white);
    padding: 30px 0;
    position: relative
}

.marquee-content {
    display: flex;
    width: max-content;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

.marquee-left .marquee-content {
    animation-name: scroll-left
}

.marquee-right .marquee-content {
    animation-name: scroll-right
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.marquee-content img {
    height: 200px;
    object-fit: cover;
    margin: 0 30px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15)
}

.section-subtitle {
    font-size: var(--font-size-section-desc);
    max-width: 700px;
    margin-bottom: 3rem
}

h3 {
    font-size: var(--font-size-section-title);
    font-weight: var(--fw-semibold);
    color: var(--color-text-heading);
    margin-bottom: 1rem
}

h4 {
    font-size: var(--font-size-section-desc);
    font-weight: 600;
    color: var(--color-text-heading)
}

h5 {
    font-size: var(--font-size-section-desc);
    font-weight: 600;
    color: var(--color-text-heading)
}

@media (max-width:991px) {
    .desktop-padding {
        padding-top: 60px !important;
        padding-bottom: 60px !important
    }
}

.desktop-padding {
    padding-top: 100px;
    padding-bottom: 100px
}

.tab-padding {
    padding-top: 60px;
    padding-bottom: 60px
}

.transformation-card {
    padding: 3rem 2rem;
    border-radius: 30px;
    height: 100%;
    position: relative
}

.problem-card {
    background-color: var(--color-danger-light);
    border: 1px solid var(--color-danger);
    opacity: .9
}

.solution-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    box-shadow: 0 15px 45px rgba(var(--color-primary-rgb), .08)
}

.transformation-item {
    background: var(--color-white);
    padding: .9rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .01);
    transition: transform .2s ease
}

.transformation-item:hover {
    transform: translateX(5px)
}

.transformation-item span {
    font-size: .95rem;
    font-weight: 600;
    color: var(--color-text)
}

.item-icon {
    font-size: var(--font-size-section-desc);
    flex-shrink: 0
}

.feature-category-title {
    font-size: .75rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    letter-spacing: .05em;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--color-bg-light);
    display: block;
    text-transform: uppercase
}

.feature-item-card-new {
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left
}

.feature-item-card-new:hover {
    background: var(--color-white);
    border-color: var(--color-border-card);
    box-shadow: 0 12px 20px -8px rgba(0, 0, 0, .08);
    transform: translateY(-4px)
}

.feature-item-icon-new {
    font-size: var(--font-size-section-title);
    color: var(--color-primary);
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-top: 2px
}

.feature-item-content-new h4 {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    margin-bottom: .25rem;
    color: var(--color-text)
}

.feature-item-content-new p {
    font-size: .875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.5
}

.onboarding-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
    height: 100%;
    text-align: left;
    border: 1px solid var(--color-bg-light);
    transition: transform .3s ease
}

.onboarding-card:hover {
    transform: translateY(-5px)
}

.step-number {
    font-size: 3rem;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 2rem
}

.comparison-table-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-border-card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .05)
}

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

.comparison-table thead th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    font-weight: 600;
    border: none;
    font-size: var(--font-size-section-desc);
    text-align: left
}

.comparison-table tbody tr td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-bg-light);
    vertical-align: middle;
    color: var(--color-text-body)
}

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

.comp-feature {
    font-weight: 600 !important;
    color: var(--color-text) !important
}

.check-circle {
    width: 30px;
    height: 30px;
    background: var(--color-success-light);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 1.1rem
}

.cross-circle {
    width: 30px;
    height: 30px;
    background: var(--color-danger-light);
    color: var(--color-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 1.1rem
}

.results-section {
    background-color: var(--color-success-light);
    border-radius: 2rem;
    padding: 4rem 2rem
}

.result-card {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: transform .3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.result-card:hover {
    transform: translateY(-5px)
}

.result-icon {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.result-number {
    font-size: var(--font-size-hero-section-title);
    font-weight: var(--fw-semibold);
    color: var(--color-text);
    margin-bottom: .5rem;
    line-height: 1.2;
    display: block
}

.result-text {
    color: var(--color-text-muted);
    font-size: .95rem;
    font-weight: 600;
    display: block
}

.results-content-label {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .85rem;
    margin-bottom: 1rem;
    display: block
}

.results-content-title {
    font-size: var(--font-size-hero-section-title);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.footer-banner-section {
    margin-top: 0 !important
}

.slick-dots li button:before {
    color: var(--color-text)
}

.faq-support-card {
    background: var(--color-white);
    border-radius: 20px;
    border: 1px solid var(--color-border-subtle);
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .03)
}

.hero-stats-new {
    background: 0 0;
    padding-top: 3rem;
    margin-top: 3rem
}

.stat-hero-item {
    text-align: center;
    transition: transform .3s ease;
    background: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
    border: 1px solid var(--color-border-subtle);
    height: 100%
}

.stat-hero-item i {
    font-size: var(--font-size-section-title);
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    display: block
}

.stat-hero-item h3 {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--color-text);
    letter-spacing: -.5px
}

.stat-hero-item p {
    font-size: .95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    font-weight: 600
}

@media (max-width:768px) {
    .stat-hero-item h3 {
        font-size: 1.8rem
    }

    .stat-hero-item i {
        margin-bottom: .8rem
    }
}

.transformation-item {
    border: 1px solid var(--color-border)
}

.bg-success {
    background-color: rgb(160 202 0 / 12%) !important
}

.faq-contact-section {
    background: #f7f5f2 !important
}

#results {
    background-color: #f7fbf8 !important
}

/* --- Darul Uloom Solution Styles --- */
.sticky-features-category {
    background-color: #fff;
    z-index: 998;
}

@media (min-width: 992px) {
    .sticky-features-category {
        position: sticky;
        top: 215px;
    }
}

.feature-category-title {
    display: block;
    color: var(--color-text-heading);
    border-bottom: 2px solid #a3c434;
    padding-bottom: 10px;
    margin-top: 0;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 10px;
}

.highlight {
    color: var(--color-primary);
}

/* Responsive Reordering */
@media (max-width: 991px) {
    #features-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    #features-row>div {
        order: var(--mobile-order, 0);
    }
}

/* Workflow & Card styling from Maktab solution */
.workflow-section {
    padding: 120px 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.workflow-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-light, rgba(163, 196, 52, 0.12)) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.workflow-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary-light, rgba(163, 196, 52, 0.12)) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.workflow-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.workflow-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--color-primary-light, rgba(163, 196, 52, 0.12));
    border: 1px solid rgba(163, 196, 52, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary-dark, #8ba92b);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.workflow-section .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary, #a3c434);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nav-step-container {
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.nav-step-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.nav-step-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-border-light, #eeeeee) 5%,
            var(--color-border-light, #eeeeee) 95%,
            transparent 100%);
    z-index: 0;
}

.nav-step-fill {
    position: absolute;
    top: 24px;
    left: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary, #a3c434), var(--color-primary-dark, #8ba92b));
    z-index: 1;
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0%;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(163, 196, 52, 0.3);
}

.nav-step-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-primary, #a3c434);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(163, 196, 52, 0.5), 0 0 40px rgba(163, 196, 52, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}

.nav-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1;
    max-width: 120px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-step:hover {
    transform: translateY(-4px);
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: var(--color-white, #ffffff);
    border: 2px solid var(--color-border-light, #eeeeee);
    color: var(--color-text-muted, #777777);
    margin-bottom: 14px;
}

.step-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-circle::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
}

.nav-step.completed .step-circle {
    background: var(--color-primary, #a3c434);
    border-color: var(--color-primary, #a3c434);
    color: white;
    box-shadow: 0 4px 20px rgba(163, 196, 52, 0.3);
}

.nav-step.completed .step-circle::before {
    border-color: rgba(163, 196, 52, 0.15);
}

.nav-step.active .step-circle {
    background: var(--color-white, #ffffff);
    border-color: var(--color-primary, #a3c434);
    color: var(--color-primary-dark, #8ba92b);
    box-shadow:
        0 0 0 4px var(--color-primary-light, rgba(163, 196, 52, 0.12)),
        0 8px 30px rgba(163, 196, 52, 0.25);
    transform: scale(1.15);
}

.nav-step.active .step-circle::before {
    border-color: rgba(163, 196, 52, 0.2);
    animation: ringExpand 2s ease-in-out infinite;
}

.nav-step.active .step-circle::after {
    border-color: rgba(163, 196, 52, 0.1);
    opacity: 1;
    animation: ringExpand2 2s ease-in-out infinite 0.3s;
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes ringExpand2 {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.15;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.nav-step.completed .step-number {
    display: none;
}

.step-check {
    display: none;
    width: 20px;
    height: 20px;
}

.nav-step.completed .step-check {
    display: block;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted, #777777);
    text-align: center;
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
    line-height: 1.4;
    max-width: 100px;
}

.nav-step.active .step-label {
    color: var(--color-primary-dark, #8ba92b);
    font-weight: 700;
    transform: translateY(-2px);
}

.nav-step.completed .step-label {
    color: var(--color-primary-dark, #8ba92b);
}

.step-desc {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    font-size: 11px;
    color: var(--color-text-muted, #777777);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    background: var(--color-white, #ffffff);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--color-border-light, #eeeeee);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-step.active .step-desc {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nav-step:hover .step-desc {
    opacity: 0.8;
    transform: translateX(-50%) translateY(0);
}

.step-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--color-primary, #a3c434);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 8px rgba(163, 196, 52, 0.4);
}

.nav-step.active .step-counter {
    opacity: 1;
    transform: scale(1);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-step-container {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .nav-step-track {
        min-width: 900px;
    }
}

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

.workflow-card {
    background: var(--color-white, #ffffff);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--color-border-card, #e9ecef);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    animation: fadeInUp 0.6s ease-out both;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary, #a3c434), var(--color-primary-dark, #8ba92b));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(163, 196, 52, 0.25);
}

.workflow-card:hover::before {
    transform: scaleX(1);
}

.workflow-card.active {
    border-color: var(--color-primary, #a3c434);
    box-shadow: 0 0 0 3px var(--color-primary-light, rgba(163, 196, 52, 0.12)), 0 12px 30px rgba(163, 196, 52, 0.12);
}

.workflow-card.active::before {
    transform: scaleX(1);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary-light, rgba(163, 196, 52, 0.12));
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary-dark, #8ba92b);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.workflow-card:hover .card-number {
    background: var(--color-primary, #a3c434);
    color: white;
}

.workflow-card.active .card-number {
    background: var(--color-primary, #a3c434);
    color: white;
    box-shadow: 0 4px 12px rgba(163, 196, 52, 0.3);
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-darker, #0f172a);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.workflow-card:hover .card-title {
    color: var(--color-primary-dark, #8ba92b);
}

.card-description {
    font-size: 0.875rem;
    color: var(--color-text, #555555);
    line-height: 1.6;
}

.card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    opacity: 0.06;
    transition: all 0.4s ease;
}

.workflow-card:hover .card-icon {
    opacity: 0.12;
    transform: scale(1.1);
}

.section-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--color-primary, #a3c434);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(163, 196, 52, 0.4);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--color-primary-dark, #8ba92b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 196, 52, 0.5);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.workflow-card,
.p-4.bg-white.rounded-4.shadow-sm.border.border-light.h-100 {
    text-align: start;
}

.feature-grid-row.collapsed>div:nth-child(n+21) {
    display: none !important;
}

@media (min-width: 992px) {
    .sticky-features-header {
        position: sticky;
        top: 70px;
        z-index: 999;
        background-color: #fff;
        padding-top: 15px;
        box-shadow: 0 0 0 100vmax #fff;
        clip-path: inset(0 -100vmax);
    }
}