/* Brand theme and smooth section separators */

:root {
    --brand-primary: #006F64;
    --brand-secondary: #FCB853;
    --bg: #f7f8fb;
    --text: #0b1220;
    --muted: #475569;
    --divider-soft: rgba(15,23,42,0.06);
    --stripe-1: rgba(255,255,255,0.65);
    --stripe-2: rgba(255,255,255,0.4);
}


/* Page background: elegant full-bleed brand gradient with readability overlay */
html, body {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
        linear-gradient(135deg, var(--brand-primary) 0%, #0a8e80 32%, var(--brand-secondary) 100%);
    color: var(--text);
}


/* Remove harsh borders and unify section backgrounds */
.best-features-area,
.service-area,
.applic-apps,
.our-customer,
.available-app-area,
.slider-area {
    background: transparent;
    border: 0;
    position: relative;
}

/* How-help (section 3) redesign */
.how-help {
    --card-bg: rgba(255,255,255,0.78);
    --card-border: rgba(15,23,42,0.06);
}
.how-help .section-tittle h2 {
    color: var(--text);
}
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    direction: rtl;
    margin-top: 22px;
}
.help-card {
    background: var(--card-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.help-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,23,42,0.14); }
.help-title { margin: 10px 0 8px; color: var(--text); font-weight: 800; font-size: 20px; }
.help-card p { margin: 0; color: var(--muted); }
.help-icon { width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); box-shadow: 0 8px 20px rgba(0,111,100,0.25); }
.help-icon span { font-size: 24px; line-height: 1; }
.help-card.is-primary { background: linear-gradient(180deg, rgba(0,111,100,0.08), rgba(252,184,83,0.08)), var(--card-bg); border-color: rgba(0,111,100,0.18); }

/* Decorative badge, bullet points and CTA */
.help-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(252,184,83,0.18);
    color: #7a4a00;
    font-size: 12px;
    font-weight: 700;
}
.help-card.is-primary .help-badge {
    background: rgba(0,111,100,0.18);
    color: #00443e;
}
.help-points { margin: 12px 0 10px; padding: 0; list-style: none; }
.help-points li { display: flex; align-items: center; gap: 8px; color: var(--text); margin: 6px 0; }
.help-points i { color: var(--brand-primary); font-size: 14px; }
.help-cta { display: inline-block; margin-top: 6px; color: var(--brand-primary); font-weight: 700; }
.help-cta:hover { color: #00574f; }

@media (max-width: 991.98px) { .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .help-grid { grid-template-columns: 1fr; } }

/* Soft separators between blocks (excluding the first hero) */
.best-features-area:before,
.service-area:before,
.applic-apps:before,
.our-customer:before,
.available-app-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--divider-soft), rgba(0,0,0,0));
}

/* Spacing polish */
.section-padding2 { padding-top: 90px; padding-bottom: 90px; }
.section-padd4 { padding-top: 90px; padding-bottom: 90px; }

/* Buttons and accents adopt brand colors */
.btn.radius-btn { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); border: none; color: #fff; border-radius: 14px; }
/* Ensure global .btn hover overlay doesn't turn this button pink */
.btn.radius-btn::before { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); }
.btn.radius-btn:hover { filter: brightness(1.05); }

/* Links */
a { color: var(--brand-primary); }
a:hover { color: #00574f; }



/* New Features section cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.7));
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 22px 18px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}
.feature-card h3 { margin: 10px 0 8px; color: var(--text); font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-icon {
    width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    box-shadow: 0 6px 16px rgba(0, 111, 100, 0.24);
}
.feature-icon span { font-size: 22px; line-height: 1; }

/* Responsive grid */
@media (max-width: 1199.98px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* RTL tweaks */
.features-grid { direction: rtl; }
.feature-card { text-align: right; }

/* Alternating backgrounds for repeating blocks */
/* Features grid (2 columns) */
.best-features-area .row > [class*="col-"]:nth-child(odd) .single-features {
    background: var(--stripe-1);
    border-radius: 16px;
    padding: 18px 18px;
}
.best-features-area .row > [class*="col-"]:nth-child(even) .single-features {
    background: var(--stripe-2);
    border-radius: 16px;
    padding: 18px 18px;
}

/* Services grid (3 columns) */
.service-area .row > [class*="col-"]:nth-child(odd) .services-caption {
    background: var(--stripe-1);
    border-radius: 16px;
    padding: 22px 18px;
}
.service-area .row > [class*="col-"]:nth-child(even) .services-caption {
    background: var(--stripe-2);
    border-radius: 16px;
    padding: 22px 18px;
}

/* Customer testimonials carousel items */
.customar-active .single-customer:nth-child(odd) {
    background: var(--stripe-1);
    border-radius: 16px;
    padding: 22px 18px;
}
.customar-active .single-customer:nth-child(even) {
    background: var(--stripe-2);
    border-radius: 16px;
    padding: 22px 18px;
}

/* App screenshots carousel */
.app-active .single-cases-img:nth-child(odd) { background: var(--stripe-1); border-radius: 16px; padding: 10px; }
.app-active .single-cases-img:nth-child(even) { background: var(--stripe-2); border-radius: 16px; padding: 10px; }

/* Ensure inner images respect rounded corners */
.app-active .single-cases-img img,
.customar-active .what-img img {
    border-radius: 12px;
}

/* New Mood Selection Section Styles */
.mood-screenshots-wrapper {
    position: relative;
    min-height: 450px;
}

.mood-screenshots-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255,255,255,0.6);
    max-width: 60%;
    height: auto;
    position: absolute;
    transition: transform 0.3s ease-in-out;
}

.mood-screenshots-wrapper img:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

.mood-screenshot-1 {
    top: 0;
    right: 0;
    transform: rotate(-5deg);
}

.mood-screenshot-2 {
    bottom: 0;
    left: 0;
    transform: rotate(3deg);
}

/* Responsive adjustments for the new section */
/* New Mood Selection Section Styles */
.mood-screenshots-wrapper {
    position: relative;
    min-height: 450px;
}

.mood-screenshots-wrapper img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255,255,255,0.6);
    max-width: 50%; /* UPDATED */
    height: auto;
    position: absolute;
    transition: transform 0.3s ease-in-out;
}

.mood-screenshots-wrapper img:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10;
}

.mood-screenshot-1 {
    top: 0;
    right: 0;
    transform: rotate(-5deg);
}

.mood-screenshot-2 {
    bottom: 0;
    left: 0;
    transform: rotate(3deg);
}

/* Responsive adjustments for the new section */
@media (max-width: 991.98px) {
    .mood-content {
        margin-bottom: 40px;
    }
    .mood-screenshots-wrapper {
        min-height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .mood-screenshots-wrapper img {
        position: relative;
        max-width: 40%; /* UPDATED */
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .mood-screenshot-1 {
        transform: rotate(-8deg) translateX(10px);
    }
    .mood-screenshot-2 {
        transform: rotate(8deg) translateX(-10px);
    }
}