:root {
    --Primary: #CCFF77;
    --Secondary: #8F9580;
    --font-main: "Plus Jakarta Sans", sans-serif;
    --font-main2: "Urbanist", sans-serif;
    --font-main3: "Red Hat Display", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--font-main2);
}

.font-main {
    font-family: var(--font-main);
}

.font-2 {
    font-family: var(--font-main2);
}

.font-3 {
    font-family: var(--font-main3);
}

.main-menu .current-menu>a,
.main-menu .current-menu-item>a {
    color: var(--Primary) !important;
}

.main-menu .current-menu.has-child::after,
.main-menu .current-menu-item.has-child::after {
    color: var(--Primary);
}

.navigation li.has-child::after {
    color: var(--White);
}

#smooth-wrapper {
    background-color: var(--Bg-dark);
}

.bg-linear-color {
    background: linear-gradient(103.12deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.testimonial-item.style-11.v3 {
    background-color: var(--Text-primary);
}

.testimonial-item.style-11.v3 .ratings i {
    color: var(--Primary);
}

/* ─── Header: slim down vertical nav padding on desktop only ─── */
@media (min-width: 992px) {
    .header.style-2 .main-menu .navigation > li {
        padding: 20px 0;
    }
}

/* ─── About section: h1 too large, counter cards overflowing ─── */

/* 1. The h1 inside box-about is a theme "display" size (~4-5rem).
      Scale it to fit the 7/12 column properly on every screen. */
.section-about-2 .box-about .box-left h1 {
    font-size: clamp(1.6rem, 3.2vw, 3rem);
    line-height: 1.25;
}

/* 2. Counter cards — the theme sets aspect-ratio:1/1 which makes each card
      as tall as it is wide. In a 5/12 column with 2 columns that's ~200px wide
      each → 200px tall each → 400px total per row → way too big.
      Override unconditionally with a fixed compact height. */
.section-about-2 .box-about .wrap-content .counter-item {
    aspect-ratio: unset !important;
    height: 140px !important;
    min-height: unset !important;
    padding: 20px 12px !important;
}

/* 3. Counter number font — the theme h1 is ~4rem, too large at this card size */
.section-about-2 .box-about .wrap-content .counter-item .counter {
    font-size: 2.2rem !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

/* 4. Label text below the number */
.section-about-2 .box-about .wrap-content .counter-item .sub-title {
    font-size: 0.8rem !important;
}

/* ─── Mobile-responsive section styles ─── */
.section-foxwapp-mobile {
    background-color: #0f2010;
    padding: 100px 0 80px;
}

.section-foxwapp-mobile .heading-section {
    margin-bottom: 60px;
}

.section-foxwapp-mobile .heading-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 16px;
}

.section-foxwapp-mobile .heading-section p {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* phone mockup grid */
.wrap-device-foxwapp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .wrap-device-foxwapp {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .wrap-device-foxwapp {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* CSS phone frame — no image needed */
.device-foxwapp-item {
    position: relative;
}

.device-foxwapp-item .phone-frame {
    position: relative;
    border-radius: 36px;
    border: 3px solid rgba(255,255,255,0.18);
    background: #000;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.08);
    aspect-ratio: 9/19;
    width: 100%;
}

/* notch */
.device-foxwapp-item .phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: #111;
    border-radius: 10px;
    z-index: 10;
}

.device-foxwapp-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* ─── Feature icons row ─── */
.wrap-foxwapp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 56px;
}

/* vertical dividers between items */
.foxwapp-feature-box:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .wrap-foxwapp-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        row-gap: 40px;
    }
    .foxwapp-feature-box:nth-child(2) {
        border-right: none;
    }
    .foxwapp-feature-box:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 575px) {
    .wrap-foxwapp-features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }
}

.foxwapp-feature-box {
    text-align: center;
    padding: 0 32px;
}

@media (max-width: 1199px) {
    .foxwapp-feature-box {
        padding: 0 16px;
    }
}

.foxwapp-feature-box .icon {
    font-size: 48px;
    color: var(--Primary);
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.foxwapp-feature-box h5 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.foxwapp-feature-box p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}


