:root {
    /* Colors */
    --hijrah-primary: #00c853;
    --hijrah-secondary: #f7f7f7;
    --hijrah-accent: #8d6e63;
    --hijrah-success: #00c853;
    --hijrah-warning: #ffc107;
    --hijrah-danger: #dc3545;
    --hijrah-info: #17a2b8;
    --hijrah-light: #f8f5e6;
    --hijrah-dark: #2c3e50;
    --hijrah-body-bg: #ffffff;
    --hijrah-body-text: #333333;
    --hijrah-muted: #6c757d;
    --hijrah-sand: #e1d5a6;
    --hijrah-sand-dark: #b39f74;

    /* Spacing */
    --hijrah-space-1: 0.25rem;
    --hijrah-space-2: 0.5rem;
    --hijrah-space-3: 1rem;
    --hijrah-space-4: 1.5rem;
    --hijrah-space-5: 3rem;
    --hijrah-space-6: 4.5rem;
    --hijrah-space-7: 6rem;
    --hijrah-space-8: 9rem;

    /* Typography */
    --hijrah-font-family-base: "Roboto", sans-serif;
    --hijrah-font-family-heading: "Playfair Display", serif;
    --hijrah-font-size-base: 1rem;
    --hijrah-line-height-base: 1.6;
    --hijrah-font-weight-light: 300;
    --hijrah-font-weight-normal: 400;
    --hijrah-font-weight-medium: 500;
    --hijrah-font-weight-bold: 700;

    /* Other */
    --hijrah-border-radius: 0.375rem;
    --hijrah-border-radius-lg: 0.5rem;
    --hijrah-border-radius-xl: 1rem;
    --hijrah-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --hijrah-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

}

.bg-theme {
    background: #28a745 !important;
}

.text-theme {
    color: var(--theme-color) !important;
}

.hero-swiper {
    width: 100%;
    height: auto;
}

.hero-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    /* fits full X-axis */
    height: auto;
    /* keeps aspect ratio */
    object-fit: contain;
    /* no crop */
}

.hijrah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.hijrah-header {
    text-align: center;
    margin-bottom: 40px;
}

.hijrah-header h1 {
    font-size: 2.8rem;
    color: var(--title-color);
    /* forest green */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.hijrah-header h1:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow-color);
    /* warm accent */
    border-radius: 2px;
}

.hijrah-header p {
    font-size: 1.2rem;
    color: var(--body-color);
    /* muted green-gray */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hijrah-styles-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
}

.hijrah-style-section {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
}

.hijrah-style-title {
    font-size: 1.8rem;
    color: var(--title-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow-color);
    display: inline-block;
}

/* Info Style 1: Image Left, Content Right */
.hijrah-info-style1 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hijrah-info-image-style1 {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hijrah-info-image-style1 img {
    width: 100%;
    height: auto;
    display: block;
}

.hijrah-info-content-style1 {
    flex: 1;
}

.hijrah-info-title-style1 {
    font-size: 2rem;
    color: var(--title-color);
    /* forest green */
    margin-bottom: 15px;
}

.hijrah-info-subtitle-style1 {
    font-size: 1.2rem;
    color: var(--theme-color);
    /* main green accent */
    margin-bottom: 20px;
    font-weight: 500;
}

.hijrah-info-desc-style1 {
    color: var(--body-color);
    /* muted green-gray */
    line-height: 1.7;
    margin-bottom: 25px;
}

.hijrah-info-points-style1 {
    list-style-type: none;
}

.hijrah-info-points-style1 li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-color);
    /* soft green-gray */
    color: var(--body-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hijrah-info-points-style1 li:last-child {
    border-bottom: none;
}

@media (max-width: 968px) {
    .hijrah-info-style1,
    .hijrah-info-style2 {
        flex-direction: column;
    }

    .hijrah-info-points-style2 {
        grid-template-columns: 1fr;
    }

    .hijrah-info-points-style3 {
        flex-direction: column;
    }

    .hijrah-header h1 {
        font-size: 2.2rem;
    }
}

/* Ensure hero container never overflows */
.th-hero-wrapper,
.hero-swiper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

/* Swiper wrapper and slides */
.hero-swiper .swiper-wrapper {
    width: 100% !important;
}

.hero-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

/* Make images responsive */
.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* or contain if you donâ€™t want cropping */
    display: block;
}

/* Option 1: Single Side Timeline */
.hijrah-timeline-single {
    position: relative;
    margin-left: 40px;
    /* padding-left: 60px; */
    /* space for line + icon */
}

.hijrah-timeline-single-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gray-color);
    z-index: 0;
}

.hijrah-timeline-single-item:last-child::before {
    display: none;
}

.hijrah-timeline-single-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
    display: flex;
    align-items: center;
    /* vertical align icon + card */
}

/* Icon circle */
.hijrah-timeline-single-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--theme-color);
    border: 3px solid var(--smoke-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    /* font-size: 1.2rem; */
    z-index: 1;
}

/* Card */
.hijrah-timeline-single-content {
    background: var(--smoke-color2);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(8, 28, 21, 0.08);
    flex: 1;
}

.hijrah-timeline-single-title {
    color: var(--title-color);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.hijrah-timeline-single-content p {
    color: var(--body-color);
    font-family: var(--body-font);
    margin: 0;
}

.hijrah-timeline-alternating::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--hijrah-secondary);
    transform: translateX(-50%);
}

.hijrah-timeline-alternating-item {
    position: relative;
    margin-bottom: var(--hijrah-space-5);
    width: 50%;
    padding: var(--hijrah-space-3);
    box-sizing: border-box;
}

.hijrah-timeline-alternating-item:nth-child(odd) {
    left: 0;
    padding-right: var(--hijrah-space-5);
    text-align: right;
}

.hijrah-timeline-alternating-item:nth-child(even) {
    left: 50%;
    padding-left: var(--hijrah-space-5);
}

.hijrah-timeline-alternating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--hijrah-primary);
    border: 4px solid var(--hijrah-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    top: var(--hijrah-space-3);
}

.hijrah-timeline-alternating-item:nth-child(odd)
    .hijrah-timeline-alternating-icon {
    right: -25px;
}

.hijrah-timeline-alternating-item:nth-child(even)
    .hijrah-timeline-alternating-icon {
    left: -25px;
}

.hijrah-timeline-alternating-content {
    background: var(--hijrah-light);
    padding: var(--hijrah-space-3);
    border-radius: var(--hijrah-border-radius);
    box-shadow: var(--hijrah-box-shadow);
}

.hijrah-timeline-alternating-title {
    color: var(--hijrah-primary);
    margin-bottom: var(--hijrah-space-2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hijrah-timeline-alternating::before {
        left: 30px;
    }

    .hijrah-timeline-alternating-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .hijrah-timeline-alternating-item:nth-child(odd),
    .hijrah-timeline-alternating-item:nth-child(even) {
        left: 0;
        padding-right: 0;
        text-align: left;
    }

    .hijrah-timeline-alternating-item:nth-child(odd)
        .hijrah-timeline-alternating-icon,
    .hijrah-timeline-alternating-item:nth-child(even)
        .hijrah-timeline-alternating-icon {
        left: 5px;
        right: auto;
    }
}

/* Additional styles for these options */
.hijrah-option-section {
    /* padding: var(--section-space) 0; */
    /* border-bottom: 1px solid var(--th-border-color); */
}

.hijrah-section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--theme-color);
    position: relative;
}

.hijrah-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--hijrah-primary),
        var(--hijrah-secondary)
    );
    border-radius: 2px;
}

.hijrah-section-subtitle {
    text-align: center;
    margin-bottom: var(--section-title-space);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--body-color);
    font-family: var(--body-font);
}

/* Info box styles */
.hijrah-info-box {
    background: var(--white-color);
    border-radius: var(--hijrah-border-radius-lg);
    box-shadow: var(--hijrah-box-shadow);
    padding: var(--hijrah-space-4);
    /* height: 100%; */
    transition: all 0.3s ease;
}

/* .hijrah-info-box:hover {
                transform: translateY(-5px);
                box-shadow: var(--hijrah-box-shadow-lg);
            } */

.hijrah-info-item {
    display: flex;
    align-items: center;
    padding: var(--hijrah-space-3);
    margin-bottom: var(--hijrah-space-3);
    border-radius: var(--hijrah-border-radius);
    background: #f8f8ff;
    transition: all 0.3s ease;
}

.hijrah-info-box .row {
    display: flex;
    align-items: center;
    /* vertically center both col-6 */
}

.hijrah-info-box .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertically center inner content */
}

.hijrah-info-item:hover {
    background: #efefff;
    transform: translateX(5px);
}

.hijrah-info-item:last-child {
    margin-bottom: 0;
}

.hijrah-info-icon {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-right: var(--hijrah-space-3);
    min-width: 30px;
}

.hijrah-info-content {
    flex: 1;
}

.hijrah-info-title {
    font-weight: var(--hijrah-font-weight-bold);
    color: var(--title-color);
    margin-bottom: var(--hijrah-space-1);
}

/* Option-specific styles */
/* CTA Style 1: Simple Centered */
.hijrah-cta-style1 {
    text-align: center;
    padding: 40px;
    background: linear-gradient(
        135deg,
        var(--title-color) 0%,
        var(--theme-color) 100%
    );
    color: var(--white-color);
}

.hijrah-cta-style1 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white-color);
    font-family: var(--title-font);
}

.hijrah-cta-style1 p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
    color: var(--light-color);
    font-family: var(--body-font);
}

.hijrah-btn-style1 {
    display: inline-block;
    background: var(--yellow-color);
    color: var(--black-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: var(--body-font);
}

.hijrah-btn-style1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Option 2: Modern Minimalist (Green Theme) */
.hijrah-modern-card {
    background: var(--white-color);
    border-radius: 12px;
    /* replaced var(--hijrah-radius-lg) */
    padding: 2.5rem;
    /* replaced var(--hijrah-space-lg) */
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    /* replaced var(--hijrah-shadow) */
    border: 1px solid var(--th-border-color);
    text-align: center;
    position: relative;
}

.hijrah-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    /* replaced var(--hijrah-shadow-xl) */
}

.hijrah-modern-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* replaced var(--hijrah-space-md) */
    font-size: 2rem;
    color: var(--theme-color);
    background-color: rgba(46, 125, 50, 0.1);
    /* light green tint from --theme-color */
    position: relative;
    transition: all 0.3s ease;
}

.hijrah-modern-card:hover .hijrah-modern-icon {
    background-color: var(--theme-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.hijrah-modern-title {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.hijrah-modern-text {
    color: var(--body-color);
    margin-bottom: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.hijrah-newsletter-section {
    background: #1b4332;
    color: var(--white-color);
    /* margin: var(--hijrah-space-5) auto; */
    padding: var(--hijrah-space-5) var(--hijrah-space-3);
    box-shadow: var(--hijrah-box-shadow-lg);
}

.hijrah-newsletter-title {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: var(--hijrah-space-2);
}

.hijrah-newsletter-subtitle {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--light-color);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
}

.hijrah-newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    gap: var(--hijrah-space-2);
}

.hijrah-newsletter-input {
    flex: 1;
    min-width: 250px;
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid var(--th-border-color);
    font-family: var(--body-font);
}

.hijrah-newsletter-btn {
    border-radius: 50px;
    padding: 12px 30px;
    background: var(--yellow-color);
    color: var(--black-color);
    font-weight: bold;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.hijrah-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hijrah-newsletter-disclaimer {
    font-size: 0.85rem;
    color: var(--light-color);
    margin-top: var(--hijrah-space-3);
}

.hijrah-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 15px;
}

.hijrah-feature-list {
    list-style-type: none;
    padding: 0;
}

.hijrah-feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--th-border-color);
    color: var(--body-color);
}

.hijrah-feature-list li:last-child {
    border-bottom: none;
}

.hijrah-feature-list i {
    color: var(--yellow-color);
    margin-right: 10px;
}

.hijrah-donation-option {
    border: 2px solid var(--th-border-color);
    border-radius: 8px;
    padding: 30px 15px 15px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    height: 100%;
    background-color: var(--white-color);
}

.hijrah-donation-option:hover {
    border-color: var(--theme-color);
    transform: translateY(-3px);
    background-color: var(--smoke-color2);
}

.hijrah-donation-option.selected {
    border-color: var(--theme-color);
    background-color: rgba(46, 125, 50, 0.08);
    /* theme-color soft overlay */
}

.hijrah-donation-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.hijrah-donation-label {
    font-size: 0.9rem;
    color: var(--black-color2);
}

.hijrah-donation-input {
    border: 2px solid var(--th-border-color);
    border-radius: 8px;
    padding: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--black-color);
    background-color: var(--white-color);
}

.hijrah-donation-input:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.hijrah-btn-primary {
    background: linear-gradient(
        135deg,
        var(--theme-color) 0%,
        var(--yellow-color) 100%
    );
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.hijrah-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.hijrah-btn-secondary {
    background: var(--yellow-color);
    color: var(--black-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hijrah-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth !important;
}

.hijrah-timer-container {
    background: var(--hijrah-body-bg);
    padding: var(--hijrah-space-5);
    width: 100%;
    max-width: 900px;
}

.hijrah-timer-header {
    text-align: center;
    margin-bottom: var(--hijrah-space-5);
}

.hijrah-timer-title {
    font-family: var(--hijrah-font-family-heading);
    font-size: 2.5rem;
    font-weight: var(--hijrah-font-weight-bold);
    color: var(--hijrah-primary);
    margin-bottom: var(--hijrah-space-3);
    position: relative;
    display: inline-block;
}

.hijrah-timer-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--hijrah-secondary);
    border-radius: 2px;
}

.hijrah-timer-subtitle {
    font-size: 1.1rem;
    color: var(--hijrah-muted);
    max-width: 600px;
    margin: 0 auto;
}

.hijrah-timer-content {
    display: flex;
    justify-content: center;
    gap: var(--hijrah-space-3);
    margin-bottom: var(--hijrah-space-5);
}

.hijrah-timer-unit {
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.hijrah-timer-value {
    background: var(--theme-color);
    color: var(--hijrah-light);
    font-size: 3.5rem;
    font-weight: var(--hijrah-font-weight-bold);
    padding: var(--hijrah-space-4) var(--hijrah-space-3);
    border-radius: var(--hijrah-border-radius-lg);
    margin-bottom: var(--hijrah-space-3);
    box-shadow: var(--hijrah-box-shadow);
    position: relative;
    overflow: hidden;
    font-family: var(--hijrah-font-family-heading);
}

.hijrah-timer-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgb(4 14 4 / 10%);
}

.hijrah-timer-label {
    font-size: 1.1rem;
    font-weight: var(--hijrah-font-weight-medium);
    color: var(--hijrah-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hijrah-timer-separator {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: var(--hijrah-font-weight-bold);
    color: var(--hijrah-secondary);
    padding: 20px var(--hijrah-space-2);
}

.hijrah-timer-footer {
    text-align: center;
    padding-top: var(--hijrah-space-4);
    border-top: 1px solid var(--hijrah-sand);
}

.hijrah-timer-message {
    font-size: 1.2rem;
    color: var(--hijrah-primary);
    margin-bottom: var(--hijrah-space-4);
}

.hijrah-timer-button {
    background: var(--hijrah-primary);
    color: var(--hijrah-light);
    border: none;
    padding: var(--hijrah-space-3) var(--hijrah-space-5);
    border-radius: 50px;
    font-weight: var(--hijrah-font-weight-medium);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--hijrah-space-2);
}

.hijrah-timer-button:hover {
    background: var(--hijrah-secondary);
    color: var(--hijrah-dark);
    transform: translateY(-3px);
    box-shadow: var(--hijrah-box-shadow);
}

.hijrah-timer-icon {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hijrah-timer-value {
        font-size: 3rem;
        padding: var(--hijrah-space-3) var(--hijrah-space-2);
    }
}

@media (max-width: 768px) {
    .hijrah-timer-container {
        padding: var(--hijrah-space-4);
    }

    .hijrah-timer-title {
        font-size: 2rem;
    }

    .hijrah-timer-content {
        gap: var(--hijrah-space-2);
    }

    .hijrah-timer-value {
        font-size: 2.2rem;
        padding: var(--hijrah-space-3) var(--hijrah-space-2);
    }

    .hijrah-timer-label {
        font-size: 0.9rem;
    }

    .hijrah-timer-separator {
        font-size: 2rem;
        padding: 0 var(--hijrah-space-1);
    }
}

@media (max-width: 576px) {
    .hijrah-timer-container {
        padding: var(--hijrah-space-3) var(--hijrah-space-2);
    }

    .hijrah-timer-title {
        font-size: 1.75rem;
    }

    .hijrah-timer-value {
        font-size: 1.8rem;
        padding: var(--hijrah-space-2) var(--hijrah-space-1);
    }

    .hijrah-timer-label {
        font-size: 0.8rem;
    }

    .hijrah-timer-separator {
        font-size: 1.5rem;
    }

    .hijrah-timer-message {
        font-size: 1rem;
    }
}

.registration-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}

.form-header {
    background: var(--hijrah-primary);
    color: white;
    padding: 25px;
    text-align: center;
}

.form-header h3 {
    font-weight: 600;
    margin: 0;
}

.form-header p {
    opacity: 0.9;
    margin: 10px 0 0;
}

.form-body {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.section-title {
    color: var(--hijrah-primary);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hijrah-primary);
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    background: var(--hijrah-primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

#newsLetterInput::placeholder {
    color: black;
    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--hijrah-primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.required-field::after {
    content: "*";
    color: #f44336;
    margin-left: 4px;
}

.submit-btn {
    background: var(--hijrah-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--hijrah-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
}

.input-group-text {
    background: var(--hijrah-primary);
    color: white;
    border: none;
    border-radius: 8px 0 0 8px;
}

@media (max-width: 768px) {
    .form-body {
        padding: 20px;
    }

    .form-section {
        margin-bottom: 20px;
    }
}
/* ===== MuseoSansRounded Font Setup ===== */
@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded100.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded300.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded500.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded700.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded700.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "MuseoSansRounded";
    src: url("../fonts/MuseoSansRounded700.otf") format("opentype");
    font-weight: 1000;
    font-style: normal;
}

/* Set as default font */
body {
    font-family: "MuseoSansRounded", "Manrope", "Inter", sans-serif !important;
}

/* ===== Font Usage Rules ===== */

/* Default font for body text */
/* body, p, li, a, button, input, textarea, span {
    font-family: 'Manrope', 'Inter', sans-serif !important;
} */

/* Headings use MuseoSansRounded */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
button,
input,
textarea {
    font-family: "MuseoSansRounded", sans-serif !important;
}

/* Optional: refine look */
h1 {
    font-weight: 900;
} /* Ultra Bold */
h2 {
    font-weight: 700;
} /* Bold */
h3 {
    font-weight: 500;
} /* Medium */
p {
    font-weight: 300;
} /* Light */
.small-text {
    font-weight: 100;
} /* Ultra Light */
.super-thick {
    font-weight: 1000;
} /* Extra Heavy */

/* Make headings slightly bolder visually */
h1,
h2,
h3 {
    text-transform: capitalize;
}

/* Mhow New Slider CSS Start */

.modern-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* border-radius: 0 0 20px 20px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-slider {
    width: 100%;
    height: 600px;
}

.modern-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.modern-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
}

.modern-slide:hover .modern-slide-bg {
    transform: scale(1.05);
}

.modern-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(23, 29, 40, 0.85) 0%,
        rgba(23, 29, 40, 0.6) 50%,
        transparent 100%
    );
    z-index: 1;
}

.modern-slide-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 0 5%;
    color: #fff;
}

.modern-slide-badge {
    display: inline-block;
    background-color: #2db346;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.modern-slide-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.modern-slide-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    color: #f9fcff;
}

.modern-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: #2db346;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
    box-shadow: 0 5px 15px rgba(45, 179, 70, 0.3);
}

.modern-slide-button:hover {
    background-color: #171d28;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(23, 29, 40, 0.4);
}

.modern-slide-button i {
    transition: transform 0.3s ease;
}

.modern-slide-button:hover i {
    transform: translateX(5px);
}

.modern-navigation {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.modern-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-nav-btn:hover {
    background-color: #2db346;
    transform: scale(1.1);
}

.modern-pagination {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 0 0 2rem 4.5rem;
}

.modern-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-pagination-bullet.active {
    background-color: #2db346;
    transform: scale(1.2);
}

.swiper-slide-active .modern-slide-badge,
.swiper-slide-active .modern-slide-title,
.swiper-slide-active .modern-slide-subtitle,
.swiper-slide-active .modern-slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .modern-slider {
        height: 500px;
    }

    .modern-slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .modern-slider {
        height: 450px;
    }

    .modern-slide-content {
        width: 70%;
    }

    .modern-slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .modern-slide {
        justify-content: center;
    }
    .modern-slider {
        height: 400px;
    }

    .modern-slide-content {
        width: 85%;
        text-align: center;
    }

    .modern-slide-title {
        font-size: 2rem;
    }

    .modern-slide-subtitle {
        font-size: 1rem;
    }

    .modern-slide-overlay {
        background: linear-gradient(
            90deg,
            rgba(23, 29, 40, 0.85) 0%,
            rgba(23, 29, 40, 0.8) 50%,
            rgba(23, 29, 40, 0.7) 100%
        );
    }

    .modern-navigation {
        display: none;
    }

    .modern-pagination {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .modern-slider {
        height: 350px;
    }

    .modern-slide-content {
        width: 90%;
    }

    .modern-slide-title {
        font-size: 1.8rem;
    }

    .modern-slide-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Mhow New Slider CSS End */

/* Mhow New News and Updates Start */

.new-mhow-news-section {
    background: linear-gradient(135deg, #005eb4 0%, #d1213f 100%);
    color: white;
    padding: 7px 0;
    overflow: hidden;
    position: relative;
}

.new-mhow-news-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.new-mhow-news-title {
    flex-shrink: 0;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.new-mhow-news-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.new-mhow-news-title i {
    margin-right: 10px;
    color: #ffffff;
    animation: new-mhow-pulse 2s infinite;
}

.new-mhow-news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.new-mhow-ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: new-mhow-ticker-scroll 30s linear infinite;
}

.new-mhow-ticker-content p {
    display: inline;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.new-mhow-ticker-content span {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.new-mhow-news-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
    flex-shrink: 0;
}

@keyframes new-mhow-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes new-mhow-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.new-mhow-news-ticker:hover .new-mhow-ticker-content {
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .new-mhow-news-title h3 {
        font-size: 1rem;
    }

    .new-mhow-ticker-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .new-mhow-news-container {
        flex-direction: column;
        text-align: center;
    }

    .new-mhow-news-title {
        padding-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .new-mhow-news-divider {
        display: none;
    }

    .new-mhow-news-ticker {
        width: 100%;
    }

    .new-mhow-ticker-content {
        animation-duration: 25s;
    }
}

@media (max-width: 576px) {
    .new-mhow-news-title h3 {
        font-size: 0.9rem;
    }

    .new-mhow-ticker-content p {
        font-size: 0.7rem;
    }

    .new-mhow-ticker-content {
        animation-duration: 20s;
    }
}

/* Mhow New News and Updates End */

/* Mhow New Grid Section Start */

.new-mhow-container {
    padding: 40px 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.new-mhow-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.new-mhow-grid-1 {
    grid-template-columns: 1fr;
}

.new-mhow-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.new-mhow-grid-3 {
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.new-mhow-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.new-mhow-grid-3 .new-mhow-image-container {
    height: 100%;
}

.new-mhow-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-mhow-image-container:hover img {
    transform: scale(1.05);
}

.new-mhow-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.3;
}

.new-mhow-subgrid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.new-mhow-subgrid .new-mhow-image-container {
    height: 100%;
}

@media (max-width: 992px) {
    .new-mhow-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .new-mhow-subgrid {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .new-mhow-image-container {
        min-height: 280px;
    }

    .new-mhow-text-overlay {
        font-size: 0.95rem;
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    .new-mhow-grid-3 {
        grid-template-columns: 1fr;
    }

    .new-mhow-subgrid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .new-mhow-image-container {
        min-height: 250px;
    }

    .new-mhow-text-overlay {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .new-mhow-subgrid {
        grid-template-columns: 1fr;
    }

    .new-mhow-image-container {
        min-height: 220px;
        border-radius: 8px;
    }

    .new-mhow-text-overlay {
        font-size: 0.85rem;
        padding: 6px 12px;
        bottom: 10px;
        left: 10px;
    }
}

/* Mhow New Grid Section End */

/* Mhow Home Table Start */

.new-mhow-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.new-mhow-card {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.new-mhow-card-header {
    background-color: #1a237e;
    color: white;
    padding: 1rem;
    border-bottom: none;
}

.new-mhow-card-body {
    padding: 0;
}

.new-mhow-table {
    margin-bottom: 0;
}

.new-mhow-table thead th {
    background-color: #e8eaf6;
    border-bottom: 1px solid #c5cae9;
    font-weight: 600;
    padding: 0.8rem;
    text-align: center;
}

.new-mhow-table tbody td {
    /* padding: 1rem; */
    vertical-align: middle;
    border: 0 !important;
    text-align: center;
}

.new-mhow-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.new-mhow-table tbody tr:hover {
    background-color: #e8eaf6;
}

.new-mhow-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.new-mhow-footer {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.new-mhow-link {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
}

.new-mhow-link:hover {
    text-decoration: underline;
}

.new-mhow-updated {
    color: #6c757d;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .new-mhow-table {
        border: 0;
    }

    .new-mhow-table thead {
        display: none; /* hide table head */
    }

    .new-mhow-table tbody tr {
        display: block;
        margin-bottom: 1.2rem;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .new-mhow-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #dee2e6;
        font-size: 0.95rem;
        text-align: left;
    }

    .new-mhow-table tbody td:last-child {
        border-bottom: none;
    }

    .new-mhow-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        flex-basis: 45%;
        text-align: left;
    }

    .new-mhow-table tbody td:not(:before) {
        text-align: right;
        flex-basis: 55%;
    }

    /* flag images alignment */
    .new-mhow-table tbody td img {
        margin-left: auto;
    }

    .new-mhow-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* Mhow Home Table End */

/* Section 2: Impact */
.impact-section {
    padding: 5rem 0;
    background: white;
}

.impact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.impact-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
}

/* Section 3: Story */
.story-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Image styling */
.story-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Text box styling */
.story-quote {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #a91f21;
}

.story-quote h5 {
    color: #004a8c;
    font-weight: 700;
}

.story-quote p {
    margin-bottom: 0;
    color: #444;
    line-height: 1.7;
}

/* --- Tablet screens --- */
@media (max-width: 992px) {
    .story-content {
        gap: 2rem;
    }

    .story-quote {
        padding: 1.8rem;
    }

    .story-image {
        border-radius: 8px;
    }
}

/* --- Mobile & Small tablets --- */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    /* flip order for even sections */
    .story-section:nth-child(even) .story-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .story-quote {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .story-image {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }
}

/* --- Small phones --- */
@media (max-width: 576px) {
    .story-section {
        padding: 3rem 0;
    }

    .story-quote {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .story-quote h5 {
        font-size: 1.1rem;
    }

    .story-image {
        max-height: 300px;
    }
}

.new-mhow-container {
    background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.new-mhow-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.new-mhow-donation-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.new-mhow-donation-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.new-mhow-donation-title {
    color: #004080;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.new-mhow-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.new-mhow-tab {
    padding: 0.7rem 1.5rem;
    background-color: white;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.new-mhow-tab:first-child {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.new-mhow-tab:last-child {
    border-radius: 0 6px 6px 0;
}

.new-mhow-tab.active {
    background-color: #005eb4;
    color: white;
    border-color: #005eb4;
}

.new-mhow-amounts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.new-mhow-amount {
    flex: 1;
    margin: 0 0.5rem;
    padding: 1rem 0.5rem;
    background-color: #f4f8fc;
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.new-mhow-amount:hover {
    background-color: #e0f0ff;
}

.new-mhow-amount.selected {
    border-color: #005eb4;
    background-color: #d0e7ff;
    color: #005eb4;
}

.new-mhow-custom-amount {
    margin-bottom: 1.5rem;
}

.new-mhow-custom-label {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #5f6368;
}

.new-mhow-custom-label i {
    margin-right: 0.5rem;
}

.new-mhow-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.new-mhow-currency {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    font-weight: 600;
}

.new-mhow-custom-input {
    flex: 1;
    border: none;
    padding: 0.75rem;
    outline: none;
    font-size: 1rem;
}

.new-mhow-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.5;
}

.new-mhow-donate-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #a91f21;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.new-mhow-donate-btn:hover {
    background-color: #004a8c;
}

.new-mhow-paypal {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5f6368;
    font-size: 0.9rem;
}

.new-mhow-paypal-logo {
    font-weight: 700;
    color: #005eb4;
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

.new-mhow-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #0074d9;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #a91f21;
    color: #1ca8cb;
    background: transparent;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #005eb4;
    color: #fff;
    border-color: #005eb4;
}

.slider-arrow i {
    vertical-align: middle;
}

/* =========================
   WhatsApp Floating Button
========================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: #fff;
}

.whatsapp-float i {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .new-mhow-amounts {
        flex-wrap: wrap;
    }

    .new-mhow-amount {
        flex: 0 0 calc(50% - 1rem);
        margin-bottom: 0.5rem;
    }

    .new-mhow-donation-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .new-mhow-amount {
        flex: 0 0 100%;
    }
}

.mhow-video-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.mhow-video-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.mhow-video-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f0f0f;
}

.mhow-video-section-subtitle {
    color: #606060;
    font-size: 16px;
    margin-top: 5px;
}

.mhow-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.mhow-video-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mhow-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mhow-video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.mhow-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mhow-video-card:hover .mhow-video-thumbnail {
    transform: scale(1.08);
}

.mhow-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mhow-video-card:hover .mhow-video-play-icon {
    opacity: 1;
}

.mhow-video-play-icon::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
}

.mhow-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.mhow-video-info {
    padding: 18px;
}

.mhow-video-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    color: #0f0f0f;
}

.mhow-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #606060;
    font-size: 14px;
    margin-top: 12px;
}

.mhow-video-status {
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 500;
}

.mhow-video-status-live {
    background-color: #ff0000;
    color: white;
}

.mhow-video-status-upcoming {
    background-color: #ffa500;
    color: white;
}

.mhow-video-status-completed {
    background-color: #008000;
    color: white;
}

.mhow-video-order {
    font-weight: 600;
    color: #065fd4;
}

.mhow-video-count {
    background-color: #f1f1f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mhow-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 900px) {
    .mhow-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .mhow-video-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .mhow-video-count {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .mhow-video-grid {
        grid-template-columns: 1fr;
    }

    .mhow-video-container {
        padding: 10px;
    }

    .mhow-video-section-title {
        font-size: 24px;
    }
}

.cravix-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cravix-info-card:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 210%;
    height: 210%;
    background: linear-gradient(135deg, var(--title-color), var(--theme-color));
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.cravix-info-card:hover:before {
    transform: rotate(45deg) translate(20%, 20%);
}

.cravix-info-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cravix-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.cravix-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--yellow-color),
        var(--theme-color)
    );
    color: var(--black-color);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.cravix-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.cravix-info-card:hover .cravix-icon {
    transform: rotateY(180deg);
}

.cravix-info-card:hover .cravix-icon:after {
    transform: scale(1.8);
}

.cravix-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
    font-family: var(--title-font);
}

.cravix-card-content {
    color: var(--light-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-family: var(--body-font);
}

.cravix-contact-link {
    color: var(--black-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: var(--yellow-color);
    font-family: var(--body-font);
}

.cravix-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cravix-contact-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cravix-contact-link:hover i {
    transform: translateX(5px);
}

@keyframes cravixSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cravix-info-card {
    animation: cravixSlideIn 0.8s ease forwards;
    opacity: 0;
}

.cravix-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.cravix-info-card:nth-child(2) {
    animation-delay: 0.3s;
}

.cravix-info-card:nth-child(3) {
    animation-delay: 0.5s;
}

.cravix-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

@media (max-width: 768px) {
    .cravix-info-card {
        margin-bottom: 2rem;
    }

    .cravix-section-title {
        font-size: 2rem;
    }
}

.feature-item {
    position: relative;
    background: #f3f4f6;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.feature-item_icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    display: block;
    margin: auto;
    /* background: #E5E7EB; */
    border-radius: 50px;
    margin-bottom: 24px;
}
.feature-item_text {
    font-weight: 400;
    line-height: 26px;
    margin-bottom: -0.4rem;
}
.feature-item .box-title {
    font-size: 22px;
    margin-bottom: 7px;
}
@media (max-width: 1299px) {
    .feature-item .box-title {
        font-size: 20px;
    }
}
.feature-item img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.feature-item:hover {
    background-color: var(--theme-color);
}
.feature-item:hover .feature-item_icon {
    /* background-color: var(--white-color); */
}
.feature-item:hover .feature-item_icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.feature-item:hover .feature-item_text {
    color: var(--white-color);
}
.feature-item:hover .box-title {
    color: var(--white-color);
}
.feature-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.feature-wrapper .feature-icon i {
    font-size: 46px;
    font-weight: 300;
    line-height: 56px;
}
.feature-wrapper .header-info_link {
    font-family: var(--title-font);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: var(--title-color);
    margin-bottom: -0.5rem;
}
.feature-wrapper .header-info_link:hover {
    color: var(--theme-color);
}
.feature-wrapper .header-info_link a {
    color: inherit;
}
.feature-wrapper .header-info_label {
    font-family: var(--body-font);
    color: var(--body-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}
.feature-circle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    max-width: 289px;
}
.feature-circle-wrap {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    border-bottom: 1px solid #e4e4e4;
    border-top: 1px solid #e4e4e4;
    margin: 40px 0;
    padding: 40px 0;
}
@media (max-width: 767px) {
    .feature-circle-wrap {
        display: block;
    }
}
.feature-circle-wrap.style2 {
    grid-template-columns: auto auto auto;
    border: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 767px) {
    .feature-circle:not(:last-child) {
        margin-bottom: 30px;
    }
}
.feature-circle .box-title {
    line-height: 34px;
    margin-bottom: 0px;
}
.feature-circle_text {
    margin-bottom: 0px;
    font-size: 14px;
}
.feature-circle .progressbar {
    position: relative;
    max-height: 100px;
}
.feature-circle .circle-num {
    font-size: 30px;
    font-weight: 600;
    color: var(--title-color);
    font-family: var(--title-font);
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 5px;
    text-align: center;
}