* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
:root {
    --istiqbal-primary: #f2a31b;
    --istiqbal-dark: #1c1c1c;
    --istiqbal-light: #ffffff;
    --istiqbal-primary-dark: #d18b15;
    --transition: all 0.3s ease;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--istiqbal-dark);
}

.tasbeeh-site-header-main-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 18px 0;
    position: relative;
    z-index: 999;
}

.tasbeeh-site-header-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tasbeeh-site-header-logo-area img {
    height: 42px;
    width: auto;
}

.tasbeeh-site-header-menu-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tasbeeh-site-header-menu-list {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.tasbeeh-site-header-menu-list li a {
    position: relative;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.tasbeeh-site-header-menu-list li a:hover {
    color: #d39c2f;
}

.tasbeeh-site-header-menu-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #d39c2f;
    transition: width 0.4s ease;
}

.tasbeeh-site-header-menu-list li a:hover::after {
    width: 100%;
}

.tasbeeh-site-header-menu-list li.active a {
    color: #d39c2f;
}

.tasbeeh-site-header-menu-list li.active a::after {
    width: 100%;
}

.tasbeeh-site-header-button-area {
    display: flex;
    align-items: center;
}

.tasbeeh-site-header-start-btn {
    position: relative;
    overflow: hidden;
    background: #d39c2f;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.tasbeeh-site-header-start-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #b88725;
    transition: all 0.4s ease;
    z-index: 0;
}

.tasbeeh-site-header-start-btn span {
    position: relative;
    z-index: 2;
}

.tasbeeh-site-header-start-btn:hover::before {
    left: 0;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .tasbeeh-site-header-button-area {
        display: none;
    }

    .tasbeeh-site-header-menu-area {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .tasbeeh-site-header-menu-area.active {
        display: flex;
    }

    .tasbeeh-site-header-menu-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-site-header-logo-area img {
        height: 36px;
    }

    .tasbeeh-site-header-main-wrapper {
        padding: 14px 0;
    }
}

.tasbeeh-hero-main-section-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.1));
    padding: 90px 0;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-content-area {
    flex: 1;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-badge {
    display: inline-block;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-heading {
    font-family: "Rubik", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--istiqbal-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-heading span {
    color: var(--istiqbal-primary);
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
    margin-bottom: 30px;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-buttons-area {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.tasbeeh-hero-main-section-primary-btn {
    position: relative;
    overflow: hidden;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.tasbeeh-hero-main-section-primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--istiqbal-primary-dark);
    transition: 0.4s ease;
}

.tasbeeh-hero-main-section-primary-btn span {
    position: relative;
    z-index: 2;
}

.tasbeeh-hero-main-section-primary-btn:hover::before {
    left: 0;
}
.tasbeeh-hero-main-section-secondary-btn {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--istiqbal-primary);
    color: var(--istiqbal-primary);
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.tasbeeh-hero-main-section-secondary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--istiqbal-primary);
    transition: 0.4s ease;
    z-index: 0;
}

.tasbeeh-hero-main-section-secondary-btn span {
    position: relative;
    z-index: 2;
}

.tasbeeh-hero-main-section-secondary-btn:hover::before {
    left: 0;
}

.tasbeeh-hero-main-section-secondary-btn:hover {
    color: #fff;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.tasbeeh-hero-main-section-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(242, 163, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--istiqbal-primary);
    font-size: 18px;
}

.tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-visual-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tasbeeh-hero-main-section-counter-mockup {
    background: linear-gradient(145deg, #ffffff, #fdf7ec);
    width: 350px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: tasbeehFloat 4s ease-in-out infinite;
}

.tasbeeh-hero-main-section-visual-area {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tasbeeh-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 163, 27, 0.35), rgba(242, 163, 27, 0.05));
    filter: blur(30px);
    z-index: 1;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-one {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
}

.shape-two {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 8%;
    animation-delay: 2s;
}

.shape-three {
    width: 140px;
    height: 140px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes tasbeehFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tasbeeh-hero-main-section-counter-top {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--istiqbal-primary);
    font-weight: 600;
}

.tasbeeh-hero-main-section-counter-circle {
    width: 160px;
    height: 160px;
    margin: 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tasbeeh-hero-main-section-counter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tasbeeh-hero-main-section-counter-buttons button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--istiqbal-primary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.tasbeeh-hero-main-section-counter-buttons button:hover {
    background: var(--istiqbal-primary-dark);
    transform: translateY(-3px);
}

.tasbeeh-hero-main-section-counter-footer {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.tasbeeh-hero-main-section-counter-footer i {
    color: var(--istiqbal-primary);
    margin-right: 6px;
}

.tasbeeh-main-counter-section-wrapper {
    padding: 100px 0;
    background: #fffaf2;
}

.tasbeeh-main-counter-section-heading-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-section-badge {
    display: inline-block;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tasbeeh-main-counter-section-heading {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-main-counter-section-heading span {
    color: var(--istiqbal-primary);
}

.tasbeeh-main-counter-section-description {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

.tasbeeh-main-counter-card {
    background: linear-gradient(145deg, #ffffff, #fdf7ec);
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.tasbeeh-main-counter-title {
    color: var(--istiqbal-primary);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.tasbeeh-main-counter-circle {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 25px auto;
    border-radius: 50%;
    background: conic-gradient(var(--istiqbal-primary) 0deg, #e5e5e5 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.tasbeeh-main-counter-circle::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    z-index: 1;
}
.progress-text {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

.tasbeeh-main-counter-circle span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.tasbeeh-main-counter-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.tasbeeh-main-counter-buttons button {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--istiqbal-primary);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.tasbeeh-main-counter-buttons button:hover {
    background: var(--istiqbal-primary-dark);
    transform: translateY(-4px);
}

.tasbeeh-main-counter-presets {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.tasbeeh-main-counter-presets button {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--istiqbal-primary);
    background: transparent;
    color: var(--istiqbal-primary);
    font-weight: 600;
    transition: 0.3s ease;
}

.tasbeeh-main-counter-presets button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}

.tasbeeh-main-counter-multi {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tasbeeh-main-counter-multi button {
    padding: 6px 14px;
    border-radius: 6px;
    background: #f7f7f7;
    border: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.tasbeeh-main-counter-multi button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}

.tasbeeh-main-counter-status {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.tasbeeh-main-counter-status i {
    color: var(--istiqbal-primary);
    margin-right: 6px;
}

@media screen and (max-width: 576px) {
    .tasbeeh-main-counter-circle {
        width: 160px;
        height: 160px;
        font-size: 36px;
    }
}
.tasbeeh-main-counter-section-wrapper {
    padding: 100px 0;
    background: #fffaf2;
}

.tasbeeh-main-counter-section-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-main-counter-section-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-main-counter-section-heading p {
    color: #666;
    font-size: 15px;
    max-width: 520px;
    margin: 10px auto 0;
}

.tasbeeh-section-badge {
    display: inline-block;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tasbeeh-counter-info-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tasbeeh-counter-info-row div {
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    color: #555;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.tasbeeh-counter-info-row i {
    color: var(--istiqbal-primary);
    margin-right: 6px;
}
.tasbeeh-main-counter-card {
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff, #fdf7ec);
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}
.tasbeeh-main-counter-title {
    color: var(--istiqbal-primary);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tasbeeh-main-counter-circle {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 20px auto;
    border-radius: 50%;
    background: conic-gradient(var(--istiqbal-primary) 0deg, #e5e5e5 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.tasbeeh-main-counter-circle::after {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    z-index: 1;
}

.tasbeeh-main-counter-circle span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}
.tasbeeh-main-counter-progress {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.tasbeeh-main-counter-progress .progress-bar {
    height: 100%;
    width: 0%;
    background: var(--istiqbal-primary);
    transition: 0.3s ease;
}

.progress-text {
    font-size: 13px;
    color: #777;
    margin: 5px 0 15px;
}
.tasbeeh-main-counter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tasbeeh-main-counter-buttons button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.tasbeeh-main-counter-buttons button:hover {
    transform: translateY(-4px) scale(1.05);
}
.tasbeeh-main-counter-presets {
    margin: 15px 0;
}

.tasbeeh-main-counter-presets .preset-title {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.tasbeeh-main-counter-presets button {
    margin: 4px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--istiqbal-primary);
    background: transparent;
    color: var(--istiqbal-primary);
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tasbeeh-main-counter-presets button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}
.tasbeeh-main-counter-custom-goal {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.tasbeeh-main-counter-custom-goal input {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.tasbeeh-main-counter-custom-goal input::placeholder {
    color: #999;
}

.tasbeeh-main-counter-custom-goal input:focus {
    border-color: var(--istiqbal-primary);
    box-shadow: 0 0 0 2px rgba(242, 163, 27, 0.15);
}

.tasbeeh-main-counter-custom-goal button {
    height: 38px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.tasbeeh-main-counter-custom-goal button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s ease;
}

.tasbeeh-main-counter-custom-goal button:hover::before {
    left: 0;
}

.tasbeeh-main-counter-custom-goal button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(242, 163, 27, 0.35);
}

@media screen and (max-width: 480px) {
    .tasbeeh-main-counter-custom-goal {
        flex-direction: row;
    }
}
.tasbeeh-main-counter-multi {
    margin: 15px 0;
}

.tasbeeh-main-counter-multi .multi-title {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.tasbeeh-main-counter-multi button {
    margin: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--istiqbal-primary);
    background: transparent;
    color: var(--istiqbal-primary);
    font-size: 12px;
    transition: 0.3s ease;
}

.tasbeeh-main-counter-multi button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}
.tasbeeh-main-counter-toggles {
    margin: 10px 0;
}

.tasbeeh-main-counter-toggles button {
    border: none;
    background: #f3f3f3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--istiqbal-primary);
    font-size: 16px;
}
.tasbeeh-main-counter-timer {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}
.tasbeeh-session-summary {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}
.tasbeeh-main-counter-status {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
.tasbeeh-quote {
    margin-top: 50px;
    font-size: 15px;
    font-style: italic;
    color: #777;
}

.tasbeeh-quote span {
    display: block;
    font-size: 13px;
    color: #999;
}
@media screen and (max-width: 576px) {
    .tasbeeh-main-counter-card {
        padding: 25px 20px;
        margin-top: 80px;
    }

    .tasbeeh-main-counter-circle {
        width: 160px;
        height: 160px;
    }

    .tasbeeh-main-counter-circle::after {
        width: 120px;
        height: 120px;
    }
}
@media screen and (max-width: 900px) {
    .tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-container {
        flex-direction: column;
        text-align: center;
    }

    .tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-features-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-hero-main-section-wrapper {
        padding: 60px 0;
    }

    .tasbeeh-hero-main-section-wrapper .tasbeeh-hero-main-section-heading {
        font-size: 32px;
    }

    .tasbeeh-hero-main-section-counter-mockup {
        width: 100%;
    }
}
.tasbeeh-site-header-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .tasbeeh-site-header-menu-area {
        display: none;
    }
    .tasbeeh-site-header-button-area {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
}
@media screen and (max-width: 768px) {
    .tasbeeh-site-header-main-wrapper .tasbeeh-site-header-main-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .tasbeeh-site-header-menu-area.active .tasbeeh-site-header-menu-list {
        justify-content: center;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .tasbeeh-site-header-menu-area {
        order: 3;
    }

    .tasbeeh-site-header-menu-area .tasbeeh-site-header-menu-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

.tasbeeh-benefits-section {
    padding: 100px 0;
    background: #fffaf2;
}

.tasbeeh-benefits-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-section-badge {
    display: inline-block;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tasbeeh-benefits-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-benefits-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-benefits-heading p {
    color: #666;
    font-size: 15px;
    margin-top: 10px;
}

.tasbeeh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tasbeeh-benefit-card {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tasbeeh-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 163, 27, 0.15), rgba(242, 163, 27, 0.05));
    transition: 0.4s ease;
}

.tasbeeh-benefit-card:hover::before {
    left: 0;
}

.tasbeeh-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Icon */
.tasbeeh-benefit-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(242, 163, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--istiqbal-primary);
    font-size: 20px;
    margin: 0 auto 15px;
}
.tasbeeh-benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--istiqbal-dark);
    margin-bottom: 6px;
}

.tasbeeh-benefit-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.tasbeeh-how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
}

.tasbeeh-how-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-how-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-how-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-how-heading p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

.tasbeeh-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tasbeeh-step-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tasbeeh-step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 163, 27, 0.15), rgba(242, 163, 27, 0.05));
    transition: 0.4s ease;
}

.tasbeeh-step-card:hover::before {
    left: 0;
}

.tasbeeh-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.tasbeeh-step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.tasbeeh-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(242, 163, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--istiqbal-primary);
    font-size: 22px;
    margin: 0 auto 18px;
}

.tasbeeh-step-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--istiqbal-dark);
    margin-bottom: 8px;
}

.tasbeeh-step-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.tasbeeh-popular-section {
    padding: 100px 0;
    background: #fffaf2;
}

.tasbeeh-popular-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-popular-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-popular-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-popular-heading p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

.tasbeeh-popular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}
.tasbeeh-popular-card {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tasbeeh-popular-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 163, 27, 0.15), rgba(242, 163, 27, 0.05));
    transition: 0.4s ease;
}

.tasbeeh-popular-card:hover::before {
    left: 0;
}

.tasbeeh-popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.tasbeeh-popular-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(242, 163, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--istiqbal-primary);
    font-size: 20px;
    margin: 0 auto 14px;
}
.tasbeeh-popular-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--istiqbal-dark);
    margin-bottom: 6px;
}
.tasbeeh-popular-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.6;
}

@media screen and (max-width: 1200px) {
    .tasbeeh-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tasbeeh-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-popular-grid {
        grid-template-columns: 1fr;
    }

    .tasbeeh-popular-heading h2 {
        font-size: 28px;
    }
}
.tasbeeh-zigzag-section {
    margin: 100px 0;
    background: #ffffff;
}

.zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 90px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-content {
    flex: 1;
}

.zigzag-badge {
    display: inline-block;
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.zigzag-content h2 {
    font-family: "Rubik", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.zigzag-content h2 span {
    color: var(--istiqbal-primary);
}

.zigzag-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 15px 0 25px;
    max-width: 480px;
}
.zigzag-btn {
    position: relative;
    overflow: hidden;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.zigzag-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--istiqbal-primary-dark);
    transition: 0.4s ease;
}

.zigzag-btn span {
    position: relative;
    z-index: 2;
}

.zigzag-btn:hover::before {
    left: 0;
}
.zigzag-image {
    flex: 1;
    text-align: center;
}

.zigzag-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 992px) {
    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .zigzag-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .zigzag-image {
        margin-top: 25px;
    }
}

@media screen and (max-width: 576px) {
    .zigzag-content h2 {
        font-size: 26px;
    }
    .tasbeeh-footer-links h4 {
        text-align: left;
    }
}
.tasbeeh-stats-section {
    margin: 100px 0;
    background: #ffffff;
}

.tasbeeh-stats-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-stats-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-stats-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-stats-heading p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

.tasbeeh-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.tasbeeh-stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--istiqbal-primary);
    margin-bottom: 6px;
}

.tasbeeh-stat-item p {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}
.tasbeeh-stat-item {
    position: relative;
}

.tasbeeh-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .tasbeeh-stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .tasbeeh-stat-item:not(:last-child)::after {
        display: none;
    }

    .tasbeeh-stats-heading h2 {
        font-size: 28px;
    }

    .tasbeeh-stat-item h3 {
        font-size: 34px;
    }
}

@media screen and (max-width: 992px) {
    .tasbeeh-how-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-how-heading h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    .tasbeeh-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-benefits-grid {
        grid-template-columns: 1fr;
    }

    .tasbeeh-benefits-heading h2 {
        font-size: 28px;
    }
}
.tasbeeh-faq-section {
    padding: 100px 0;
    background: #fffaf2;
}
.tasbeeh-faq-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-faq-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--istiqbal-dark);
}

.tasbeeh-faq-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-faq-heading p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}
.tasbeeh-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.tasbeeh-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.tasbeeh-faq-item:hover {
    transform: translateY(-3px);
}
.tasbeeh-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--istiqbal-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.tasbeeh-faq-question i {
    color: var(--istiqbal-primary);
    transition: 0.3s ease;
}

.tasbeeh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 22px;
}

.tasbeeh-faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding-bottom: 20px;
}

.tasbeeh-faq-item.active .tasbeeh-faq-answer {
    max-height: 200px;
}

.tasbeeh-faq-item.active i {
    transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
    .tasbeeh-faq-section {
        padding: 70px 0;
    }

    .tasbeeh-faq-heading h2 {
        font-size: 28px;
    }

    .tasbeeh-faq-question {
        font-size: 14px;
        padding: 18px;
    }
}

@media screen and (max-width: 480px) {
    .tasbeeh-faq-wrapper {
        padding: 0 10px;
    }

    .tasbeeh-faq-question {
        font-size: 13px;
    }
}

.tasbeeh-contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.tasbeeh-contact-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-contact-heading h2 {
    font-family: "Rubik", sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.tasbeeh-contact-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-contact-heading p {
    color: #666;
    margin-top: 10px;
}
.tasbeeh-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}
.tasbeeh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fffaf2;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
}

.contact-info-card i {
    font-size: 22px;
    color: var(--istiqbal-primary);
    margin-bottom: 10px;
}
.tasbeeh-contact-form-area {
    background: #fffaf2;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
#contactForm input,
#contactForm textarea {
    width: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 15px;
    outline: none;
    transition: 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: var(--istiqbal-primary);
    box-shadow: 0 0 0 2px rgba(242, 163, 27, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tasbeeh-contact-btn {
    position: relative;
    overflow: hidden;
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.tasbeeh-contact-btn::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--istiqbal-primary-dark);
    transition: 0.4s;
}

.tasbeeh-contact-btn span {
    position: relative;
    z-index: 2;
}

.tasbeeh-contact-btn:hover::before {
    left: 0;
}
.form-status {
    font-size: 13px;
    margin-top: 10px;
    color: #16a34a;
}

@media screen and (max-width: 992px) {
    .tasbeeh-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .tasbeeh-contact-heading h2 {
        font-size: 28px;
    }

    .tasbeeh-contact-form-area {
        padding: 25px 20px;
    }
}
.tasbeeh-footer {
    background: var(--istiqbal-dark);
    color: #fff;
    padding-top: 80px;
}
.tasbeeh-footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.tasbeeh-footer-about img {
    height: 40px;
    margin-bottom: 15px;
}

.tasbeeh-footer-about p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
}
.tasbeeh-footer-socials {
    margin-top: 18px;
}

.tasbeeh-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--transition);
}

.tasbeeh-footer-socials a:hover {
    background: var(--istiqbal-primary);
}
.tasbeeh-footer-links h4,
.tasbeeh-footer-newsletter h4 {
    font-size: 16px;
    margin-bottom: 18px;
}

.tasbeeh-footer-links ul {
    list-style: none;
}

.tasbeeh-footer-links ul li {
    margin-bottom: 10px;
}

.tasbeeh-footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.tasbeeh-footer-links a:hover {
    color: var(--istiqbal-primary);
    padding-left: 5px;
}
.tasbeeh-footer-newsletter p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 12px;
}

#footerNewsletter {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

#footerNewsletter input {
    border: none;
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}

#footerNewsletter button {
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
    transition: 0.3s;
}

#footerNewsletter button:hover {
    background: var(--istiqbal-primary-dark);
}

#newsletterStatus {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #9ae6b4;
}
.tasbeeh-footer-bottom {
    text-align: center;
    padding: 20px 10px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tasbeeh-footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

@media screen and (max-width: 992px) {
    .tasbeeh-footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    .tasbeeh-footer-wrapper .tasbeeh-footer-about,
    .tasbeeh-footer-wrapper .tasbeeh-footer-newsletter {
        grid-column: 1 / 3;
    }
    .tasbeeh-footer-links ul li {
        text-align: left;
    }

    .tasbeeh-footer-socials a {
        margin: 5px;
    }

    #footerNewsletter {
        max-width: 320px;
        margin: 0 auto;
    }
}

.tasbeeh-about-hero {
    padding: 110px 0;
    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.1));
    text-align: center;
}

.tasbeeh-about-hero h1 {
    font-size: 44px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}

.tasbeeh-about-hero h1 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-about-hero p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
}
.tasbeeh-about-section {
    padding: 100px 0;
}

.tasbeeh-about-section.light {
    background: #fffaf2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-text h2 {
    font-size: 36px;
    font-family: "Rubik";
}

.about-text span {
    color: var(--istiqbal-primary);
}

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-center {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.tasbeeh-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tasbeeh-creator-section {
    padding: 100px 0;
    background: #fffaf2;
    text-align: center;
}

.creator-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.creator-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.tasbeeh-reminder {
    padding: 90px 0;
    text-align: center;
    font-style: italic;
    color: #555;
}

.tasbeeh-about-cta {
    padding: 100px 0;
    text-align: center;
    background: #fffaf2;
}

.tasbeeh-about-cta h2 span {
    color: var(--istiqbal-primary);
}
@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .tasbeeh-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-values-grid {
        grid-template-columns: 1fr;
    }

    .tasbeeh-about-hero h1 {
        font-size: 30px;
    }
}

.tasbeeh-duas-hero-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.08));
}

.tasbeeh-duas-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.tasbeeh-duas-hero-heading {
    font-family: "Rubik", sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.2;
}

.tasbeeh-duas-hero-heading span {
    color: var(--istiqbal-primary);
}

.tasbeeh-duas-hero-description {
    color: #666;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 30px;
}

.tasbeeh-duas-search-box {
    display: flex;
    max-width: 420px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tasbeeh-duas-search-box input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    outline: none;
}

.tasbeeh-duas-search-box button {
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.tasbeeh-duas-search-box button:hover {
    background: var(--istiqbal-primary-dark);
}

.tasbeeh-duas-hero-visual {
    display: flex;
    justify-content: center;
}

.tasbeeh-duas-hero-card {
    background: linear-gradient(145deg, #fff, #fdf7ec);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    animation: floatCard 4s ease-in-out infinite;
}

.tasbeeh-duas-hero-card i {
    font-size: 28px;
    color: var(--istiqbal-primary);
    margin-bottom: 12px;
}

.tasbeeh-duas-hero-card p {
    color: #555;
    line-height: 1.7;
    margin: 12px 0;
}

.tasbeeh-duas-hero-card span {
    font-size: 13px;
    color: #888;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 1200px) {
    .tasbeeh-duas-hero-heading {
        font-size: 40px;
    }

    .tasbeeh-duas-hero-wrapper {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .tasbeeh-duas-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tasbeeh-duas-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tasbeeh-duas-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .tasbeeh-duas-search-box {
        margin: 0 auto;
    }

    .tasbeeh-duas-hero-visual {
        margin-top: 40px;
    }
}
@media screen and (max-width: 768px) {
    .tasbeeh-duas-hero-section {
        padding: 90px 0;
    }

    .tasbeeh-duas-hero-heading {
        font-size: 34px;
        line-height: 1.3;
    }

    .tasbeeh-duas-hero-description {
        font-size: 15px;
        max-width: 480px;
    }

    .tasbeeh-duas-search-box {
        max-width: 100%;
    }

    .tasbeeh-duas-search-box input {
        padding: 13px 16px;
    }
}
@media screen and (max-width: 576px) {
    .tasbeeh-duas-hero-section {
        padding: 70px 0;
    }

    .tasbeeh-duas-hero-heading {
        font-size: 28px;
    }

    .tasbeeh-duas-hero-description {
        font-size: 14px;
    }

    .tasbeeh-duas-hero-card {
        padding: 28px 22px;
        max-width: 280px;
    }
}
@media screen and (max-width: 420px) {
    .tasbeeh-duas-hero-heading {
        font-size: 24px;
    }

    .tasbeeh-duas-search-box {
        border-radius: 14px;
    }

    .tasbeeh-duas-search-box input {
        font-size: 13px;
    }

    .tasbeeh-duas-hero-card {
        padding: 22px;
    }
}

.tasbeeh-dua-categories-section {
    padding: 100px 0;
    background: #fffaf2;
}

.tasbeeh-dua-categories-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dua-category {
    background: #fff;
    border: none;
    padding: 28px 20px;
    border-radius: 18px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #444;
}

.dua-category i {
    font-size: 22px;
    color: var(--istiqbal-primary);
    transition: 0.3s;
}

.dua-category:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.dua-category.active {
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    color: #fff;
}

.dua-category.active i {
    color: #fff;
}

.tasbeeh-featured-duas-section {
    padding: 110px 0;
    background: #ffffff;
}

.tasbeeh-featured-duas-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-dua-card {
    background: linear-gradient(145deg, #fff, #fdf7ec);
    padding: 35px 28px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.35s ease;
    position: relative;
}

.featured-dua-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.12);
}

.featured-dua-card h4 {
    font-family: "Rubik";
    font-size: 18px;
    margin-bottom: 18px;
}

.dua-arabic {
    font-size: 22px;
    line-height: 2;
    direction: rtl;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.dua-translation {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.dua-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dua-actions button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    color: var(--istiqbal-primary);
}

.dua-actions button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .tasbeeh-featured-duas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tasbeeh-featured-duas-section {
        padding: 80px 0;
    }

    .tasbeeh-featured-duas-grid {
        grid-template-columns: 1fr;
    }

    .dua-arabic {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .tasbeeh-dua-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-dua-card {
        padding: 26px 20px;
    }

    .dua-arabic {
        font-size: 18px;
    }
}

.tasbeeh-all-duas-section {
    padding: 110px 0;
    background: #fffaf2;
}

.tasbeeh-duas-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dua-item {
    background: #fff;
    padding: 32px 35px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.dua-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.dua-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dua-header h4 {
    font-family: "Rubik";
    font-size: 18px;
}

.dua-tag {
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

.dua-arabic {
    direction: rtl;
    font-size: 26px;
    font-weight: 600;
    line-height: 2.1;
    margin-bottom: 18px;
    text-align: right;
    color: #222;
}

.dua-translation {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.dua-actions {
    margin-top: 20px;
}

.copy-btn {
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--istiqbal-primary-dark);
}

.tasbeeh-duas-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.dua-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    position: relative;
    min-height: 200px;
}

.dua-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.dua-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dua-top h4 {
    font-family: "Rubik";
    font-size: 16px;
}

.dua-tag {
    background: rgba(242, 163, 27, 0.15);
    color: var(--istiqbal-primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.dua-arabic {
    direction: rtl;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.9;
    margin: 12px 0;
}

.dua-translation {
    font-size: 13px;
    color: #666;
}

.copy-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f3f3;
    color: var(--istiqbal-primary);
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}

@media screen and (max-width: 992px) {
    .dua-arabic {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .tasbeeh-all-duas-section {
        padding: 80px 0;
    }

    .dua-item {
        padding: 26px 22px;
    }

    .dua-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dua-arabic {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .dua-arabic {
        font-size: 18px;
    }

    .dua-translation {
        font-size: 14px;
    }
}

@media screen and (max-width: 992px) {
    .tasbeeh-duas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-duas-grid {
        grid-template-columns: 1fr;
    }

    .dua-arabic {
        font-size: 18px;
    }
}

.tasbeeh-daily-reminder-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(242, 163, 27, 0.08), #fffaf2);
    text-align: center;
}

.tasbeeh-daily-reminder-wrapper {
    max-width: 720px;
    margin: auto;
}

.tasbeeh-daily-reminder-wrapper h2 {
    font-family: "Rubik";
    font-size: 38px;
    font-weight: 700;
    margin: 18px 0;
}

.tasbeeh-daily-reminder-wrapper h2 span {
    color: var(--istiqbal-primary);
}

.reminder-quote {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin: 25px 0 10px;
}

.reminder-source {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    .tasbeeh-daily-reminder-wrapper h2 {
        font-size: 32px;
    }

    .reminder-quote {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-daily-reminder-section {
        padding: 80px 0;
    }

    .tasbeeh-daily-reminder-wrapper h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .reminder-quote {
        font-size: 16px;
    }
}

.tasbeeh-daily-reminder-wrapper .tasbeeh-site-header-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 auto;
}

.tasbeeh-daily-reminder-wrapper .tasbeeh-site-header-start-btn::before {
    width: 100%;
}
.tasbeeh-daily-reminder-wrapper {
    text-align: center;
}

.tasbeeh-why-dua-section {
    padding: 120px 0;
    background: #ffffff;
}

.tasbeeh-why-dua-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-dua-card {
    background: #fffaf2;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.why-dua-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.why-dua-card i {
    font-size: 26px;
    color: var(--istiqbal-primary);
    margin-bottom: 15px;
}

.why-dua-card h4 {
    font-family: "Rubik";
    font-size: 17px;
    margin-bottom: 10px;
}

.why-dua-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 1200px) {
    .tasbeeh-why-dua-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-why-dua-section {
        padding: 80px 0;
    }

    .tasbeeh-why-dua-grid {
        grid-template-columns: 1fr;
    }
}

.tasbeeh-contact-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.08));
}

.tasbeeh-contact-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.tasbeeh-contact-hero-heading {
    font-family: "Rubik";
    font-size: 46px;
    font-weight: 700;
    margin: 15px 0;
}

.tasbeeh-contact-hero-heading span {
    color: var(--istiqbal-primary);
}

.tasbeeh-contact-hero-description {
    color: #666;
    line-height: 1.8;
    max-width: 520px;
}

.contact-hero-card {
    background: linear-gradient(145deg, #fff, #fdf7ec);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    animation: floatContact 4s ease-in-out infinite;
}

.contact-hero-card i {
    font-size: 28px;
    color: var(--istiqbal-primary);
    margin-bottom: 12px;
}

.contact-hero-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.reply-time {
    font-family: "Rubik";
    font-size: 28px;
    color: var(--istiqbal-primary);
    font-weight: 700;
}

.contact-hero-card span {
    font-size: 13px;
    color: #777;
}

@keyframes floatContact {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 992px) {
    .tasbeeh-contact-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tasbeeh-contact-hero-description {
        margin: auto;
    }

    .tasbeeh-contact-hero-visual {
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-contact-hero-section {
        padding: 80px 0;
    }

    .tasbeeh-contact-hero-heading {
        font-size: 30px;
    }

    .contact-hero-card {
        padding: 28px 22px;
    }
}

.tasbeeh-contact-options-section {
    padding: 110px 0;
    background: #fffaf2;
}

.tasbeeh-contact-options-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.contact-option-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.contact-option-card i {
    font-size: 26px;
    color: var(--istiqbal-primary);
    margin-bottom: 15px;
}

.contact-option-card h4 {
    font-family: "Rubik";
    font-size: 17px;
    margin-bottom: 10px;
}

.contact-option-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-option-card a,
.contact-option-card span {
    font-size: 13px;
    color: var(--istiqbal-primary);
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .tasbeeh-contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-contact-options-section {
        padding: 80px 0;
    }

    .tasbeeh-contact-options-grid {
        grid-template-columns: 1fr;
    }
}

.tasbeeh-contact-form-section {
    padding: 120px 0;
    background: #ffffff;
}

.tasbeeh-contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-form-info h2 {
    font-family: "Rubik";
    font-size: 38px;
    margin: 15px 0;
}

.contact-form-info h2 span {
    color: var(--istiqbal-primary);
}

.contact-form-info p {
    color: #666;
    line-height: 1.8;
}

.contact-info-list {
    margin-top: 20px;
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info-list i {
    color: var(--istiqbal-primary);
    margin-right: 8px;
}

.tasbeeh-contact-form {
    background: #fffaf2;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #e4e4e4;
    padding: 14px 14px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    font-size: 13px;
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

.textarea-group label {
    top: 20px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--istiqbal-primary);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 11px;
    color: var(--istiqbal-primary);
}

.contact-submit-btn {
    width: 100%;
    border: none;
    background: linear-gradient(145deg, var(--istiqbal-primary), var(--istiqbal-primary-dark));
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
}

@media screen and (max-width: 992px) {
    .tasbeeh-contact-form-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form-info {
        max-width: 600px;
        margin: auto;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-contact-form-section {
        padding: 80px 0;
    }

    .tasbeeh-contact-form {
        padding: 25px;
    }

    .contact-form-info h2 {
        font-size: 28px;
    }
}

.tasbeeh-blog-hero-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.08));
    text-align: center;
}

.tasbeeh-blog-hero-heading {
    font-family: "Rubik";
    font-size: 44px;
    font-weight: 700;
    margin: 15px 0;
}

.tasbeeh-blog-hero-heading span {
    color: var(--istiqbal-primary);
}

.tasbeeh-blog-hero-description {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.8;
}

/* Search */

.tasbeeh-blog-search {
    max-width: 420px;
    margin: auto;
    display: flex;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tasbeeh-blog-search input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    outline: none;
}

.tasbeeh-blog-search button {
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition);
}

.tasbeeh-blog-search button:hover {
    background: var(--istiqbal-primary-dark);
}

.tasbeeh-featured-blog-section {
    padding: 100px 0;
    background: #ffffff;
}

.tasbeeh-blog-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tasbeeh-blog-heading h2 {
    font-family: "Rubik";
    font-size: 36px;
    font-weight: 700;
}

.tasbeeh-blog-heading h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-featured-blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.featured-blog-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.featured-blog-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.featured-blog-content h3 {
    font-size: 22px;
    margin: 10px 0;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    /* padding: 4px 12px; */
    border-radius: 20px;
    font-size: 12px;
}

.blog-read-btn {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.featured-blog-small {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.small-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.small-blog-card:hover {
    transform: translateY(-6px);
}

.small-blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.small-blog-card h4 {
    font-size: 16px;
    padding: 15px;
}

.small-blog-card a {
    display: block;
    padding: 0 15px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--istiqbal-primary);
    text-decoration: none;
}

.tasbeeh-blog-categories-section {
    padding: 40px 0;
    background: #fffaf2;
}

.tasbeeh-blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tasbeeh-blog-categories button {
    border: 1px solid var(--istiqbal-primary);
    background: transparent;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.tasbeeh-blog-categories button.active,
.tasbeeh-blog-categories button:hover {
    background: var(--istiqbal-primary);
    color: #fff;
}

.tasbeeh-blog-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

.tasbeeh-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tasbeeh-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tasbeeh-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.tasbeeh-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h4 {
    font-size: 18px;
    margin: 10px 0;
}

.blog-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
}

.blog-meta a {
    color: var(--istiqbal-primary);
    text-decoration: none;
    font-weight: 600;
}

.tasbeeh-blog-newsletter-section {
    padding: 110px 0;
    background: #fffaf2;
}

.tasbeeh-blog-newsletter {
    max-width: 620px;
    margin: auto;
    text-align: center;
}

.tasbeeh-blog-newsletter h2 {
    font-family: "Rubik";
    font-size: 36px;
    margin-bottom: 15px;
}

.tasbeeh-blog-newsletter h2 span {
    color: var(--istiqbal-primary);
}

.tasbeeh-blog-newsletter p {
    color: #666;
    margin-bottom: 25px;
}

.tasbeeh-blog-newsletter form {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    max-width: 420px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tasbeeh-blog-newsletter input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    outline: none;
}

.tasbeeh-blog-newsletter button {
    border: none;
    background: var(--istiqbal-primary);
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.tasbeeh-blog-newsletter button:hover {
    background: var(--istiqbal-primary-dark);
}

@media screen and (max-width: 992px) {
    .tasbeeh-featured-blog-grid {
        grid-template-columns: 1fr;
    }

    .tasbeeh-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tasbeeh-blog-hero-heading {
        font-size: 36px;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-blog-grid-section {
        padding-top: 0px;
    }
    .tasbeeh-blog-grid {
        grid-template-columns: 1fr;
    }

    .tasbeeh-blog-hero-heading {
        font-size: 28px;
    }

    .tasbeeh-blog-newsletter h2 {
        font-size: 28px;
    }

    .tasbeeh-blog-search {
        border-radius: 14px;
    }
}

/* SINGLE BLOG */

.tasbeeh-single-blog-hero {
    padding: 120px 0 60px;

    background: linear-gradient(135deg, #ffffff 60%, rgba(242, 163, 27, 0.1));

    text-align: center;
}

.tasbeeh-single-blog-title {
    font-size: 44px;

    font-family: "Rubik";

    margin-top: 15px;
}

.tasbeeh-single-blog-meta {
    margin-top: 10px;

    color: #666;

    display: flex;

    gap: 20px;

    justify-content: center;

    font-size: 14px;
}

.tasbeeh-single-blog-section {
    padding: 100px 0;
}

.tasbeeh-single-blog-wrapper {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 60px;
}

.tasbeeh-blog-main-image {
    width: 100%;

    border-radius: 16px;

    margin-bottom: 25px;
}

.tasbeeh-single-blog-content p {
    line-height: 1.8;

    margin-bottom: 20px;

    color: #555;
}

.tasbeeh-single-blog-content h2 {
    margin: 30px 0 15px;

    font-family: "Rubik";
}

.tasbeeh-single-blog-content ul {
    padding-left: 18px;

    margin-bottom: 20px;
}

.tasbeeh-single-blog-content blockquote {
    background: #fffaf2;

    border-left: 4px solid var(--istiqbal-primary);

    padding: 20px;

    margin: 25px 0;

    font-style: italic;
}

.tasbeeh-blog-sidebar {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.tasbeeh-sidebar-widget {
    background: #fff;

    padding: 25px;

    border-radius: 16px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tasbeeh-sidebar-widget h3 {
    margin-bottom: 15px;

    font-family: "Rubik";
}

.tasbeeh-sidebar-widget ul {
    list-style: none;
}

.tasbeeh-sidebar-widget ul li {
    margin-bottom: 10px;
}

.tasbeeh-sidebar-widget a {
    text-decoration: none;

    color: #444;
}

.tasbeeh-sidebar-widget form {
    display: flex;

    gap: 10px;

    margin-top: 10px;
}

.tasbeeh-sidebar-widget input {
    flex: 1;

    padding: 10px;

    border: 1px solid #ddd;

    border-radius: 6px;
}

.tasbeeh-sidebar-widget button {
    background: var(--istiqbal-primary);

    color: #fff;

    border: none;

    padding: 10px 16px;

    border-radius: 6px;
}

/* RESPONSIVE */

@media screen and  (max-width: 992px) {
    .tasbeeh-single-blog-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .tasbeeh-single-blog-title {
        font-size: 28px;
    }
}
