/* ==============================
   Responsive Typography & Layout
   ============================== */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    font-family: var(--figtree);
    font-size: var(--fs-base);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--body-text-color);
    background-color: var(--body-bg)
}

:root {

    --figtree: "Figtree", sans-serif;
    --body-text-color: #151517;
    --primary-color: #D90429;
    --primary-color-hover: #ba0221;
    --body-bg: #FFFAF1;
    --wht-text: #ffffff;
    --section-padding-min: 30px;
    --section-padding-max: 75px;
    --section-padding-preferred: 1.5vw + 46.2px;
}


@media (min-width: 640px) {
    :root {
        --fs-xs: clamp(0.7rem, 0.7rem + 0.146vw, 0.875rem);
        /* ~11.2px â€“ 14px */
        --fs-sm: clamp(0.8rem, 0.8rem + 0.167vw, 1rem);
        /* ~12.8px â€“ 16px */
        --fs-base: clamp(1rem, 1rem + 0.104vw, 1.125rem);
        /* ~14.4px â€“ 18px */
        --fs-md: clamp(1rem, 1rem + 0.3125vw, 1.375rem);
        /* ~16px â€“ 22px */
        --fs-lg: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
        /* ~18px â€“ 28px */
        --fs-xl: clamp(1.25rem, 1rem + 1.0417vw, 2.25rem);
        /* ~20px â€“ 36px */
        --fs-2xl: clamp(1.5rem, 1rem + 1.5625vw, 2.875rem);
        /* ~24px â€“ 46px */
        --fs-3xl: clamp(3rem, 3rem + 1.875vw, 5.25rem);
        /* 84px */
    }
}

@media (max-width: 639px) {
    :root {
        /* Font Sizes - Mobile First (fixed for <640px) */
        --fs-xs: 0.75rem;
        /* 12px */
        --fs-sm: 0.875rem;
        /* 14px */
        --fs-base: 1rem;
        /* 16px */
        --fs-md: 1.125rem;
        /* 18px */
        --fs-lg: 1.25rem;
        /* 20px */
        --fs-xl: 1.5rem;
        /* 24px */
        --fs-2xl: 2rem;
        /* 32px */
        --fs-3xl: 3.5rem;
    }
}


.title1 {
    font-size: var(--fs-2xl);
    /* 32px â€“ 46px */
    font-weight: 800;
    line-height: 120.81%;
    letter-spacing: -0.25px;
    margin-bottom: 0.5em;
}

.title2 {
    font-size: var(--fs-xl);
    /* 24px â€“ 36px */
    font-weight: 800;
    line-height: 132%;
    letter-spacing: -0.25px;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 2;
}

.title3 {
    font-size: var(--fs-lg);
    /* 20px â€“ 28px */
    line-height: 1.4;
    margin-bottom: 0.5em;
}

.title4 {
    font-size: var(--fs-md);
    /* 20px â€“ 28px */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5em;
}


p {
    font-size: var(--fs-base);
    /* 16px â€“ 18px */
    margin-bottom: 1.5em;
}

.subtitle {
    font-size: var(--fs-base);
    /* 16px â€“ 18px */
    line-height: 140%;
    margin-bottom: 1em;
}

small {
    font-size: var(--fs-xs);
    /* 12px â€“ 14px */
}

strong {
    font-weight: 700;
}


.btn-wrapper {
    margin-top: 36px;
}

.or {
    color: #6F7279;
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 147%;
    margin: 0 12px;
}

.btn {
    display: inline-flex;
    padding: 0.5em 1em;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 147%;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--wht-text);
    border: none;
    gap: 8px;
}

.secondry-btn {
    background-color: transparent;
    color: var(--wht-text);
    border: 1px solid var(--wht-text);
}

.primary-arrow-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: color 0.2s;
    margin-top: clamp(1rem, 1rem + 0.83vw, 2rem);
}

.full-btn {
    display: flex;
}

.primary-btn:hover,
.primary-btn:focus {
    background-color: var(--primary-color-hover);
    color: var(--wht-text);
}

.head-arrow-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 140%;
    color: var(--body-text-color);
    transition: transform 0.2s;
}


.head-arrow-link .arrow,
.primary-arrow-btn .arrow {
    display: inline-flex;
    transition: transform 0.2s;
}

.card-col:hover .head-arrow-link {
    color: var(--body-text-color);
}

.card-col:hover .head-arrow-link path {
    fill: var(--body-text-color);
}

.card-col:hover .arrow,
.primary-arrow-btn:hover .arrow {
    transform: translate(2px, -2px);
}

a:hover {
    color: var(--primary-color);
}




/* ==============================
   Section Layout Spacing
   ============================== */
.section {
    padding-top: clamp(var(--section-padding-min), var(--section-padding-preferred), var(--section-padding-max));
    padding-bottom: clamp(var(--section-padding-min), var(--section-padding-preferred), var(--section-padding-max));
}



.main_wrapper .container-fluid {
    width: 100%;
    max-width: clamp(320px, 82.29vw, 1420px);
    padding-inline: 15px;
    margin: 0 auto;
}




/* Hero Section */
.main_wrapper {
    padding-top: 79px;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-bg {
    vertical-align: middle;
    width: 100%;
}

/* Foreground Content */
.hero-content {
    position: absolute;
    z-index: 9;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wht {
    color: var(--wht-text);
}

.card-gap {
    margin-top: 48px;
    position: relative;
}


.card-col {
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}


.card-base {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-wht {
    background-color: #fff;
}

.mb0 {
    margin-bottom: 0;
}

.mt0 {
    margin-top: 0;
}

.gap8 {
    gap: 8px;
}

.gap24 {
    gap: 24px;
}

.gap16 {
    gap: 16px;
}

.gap36 {
    gap: 36px;
}


.grid-col4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.card-col img {
    max-width: 100%;
    border-radius: 12px 12px 0 0;
}

.card-text-panel {
    padding: 24px;
}


.mad-grid-appi {
    background-color: var(--body-text-color);
}

.grid-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.appi-logo {
    height: 100%;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.appi-logo:hover {
    transform: translateY(-5px);
}

/* rating */
.rating_box {
    padding: 36px;
    height: 100%;
    border-radius: 12px;
    background: #FFFAF1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.rating_box:hover {
    transform: translateY(-5px);
}


.total_review {
    color: var(--primary-color);
    padding-top: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 160%;
}

.total_rating {
    font-size: 14px;
    font-weight: 500;
}

.rating-wrap {
    display: flex;
    align-items: center;
    width: auto;
}

.rate_count {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #010101;
}

.star-rating .yellow_star {
    background-size: 120px;
    height: 20px;
    background-position: 0 -3px;
}

.star-rating {
    width: 120px;
    height: 20px;
    background-size: 120px;
    background-position: 0px -33px;
}

.star-rating {
    /* background: url(https://s3.amazonaws.com/mobileappdaily/mad/uploads/mad-review-rating-stars_mad_img_1749797995.svg) no-repeat; */
    width: 120px;
    height: 20px;
    background-size: 120px;
    /* background-position: 0px -31.2px; */
    vertical-align: middle;
    font-size: 0;
}

.star-rating .yellow_star {
    /* background: url(https://s3.amazonaws.com/mobileappdaily/mad/uploads/mad-review-rating-stars_mad_img_1749797995.svg) no-repeat; */
    background-size: 120px;
    height: 20px;
    /* background-position: 0 -2px; */
    display: block;
    margin: 0;
}


.rating-badge .rating-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
}

.app-rating {
    font-size: 46px;
    font-weight: 500;
    line-height: 120%;
    padding-right: 5px;
    display: inline-block;
    letter-spacing: -0.25px;
}

/* rating ends */




.company-info {
    gap: 12px;
}

.company-detail strong {
    margin-right: 6px;
    font-size: var(--fs-sm);
    line-height: 140%;
}

.info-img {
    width: 42px !important;
    height: 42px;
    border-radius: 50%;
}

.company-desc {
    color: var(--body-text-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 142%;
    margin-top: 4px;
}


.card-col>img {
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.grid-col-mid .card-text-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.card-col:hover {
    color: var(--body-text-color);
}

.gap90 {
    gap: 90px;
}

.grid-col-right {
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #484A4E;
    background: #2B2C2F;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.grid-col-right:hover {
    transform: translateY(-5px);
}

.company-review-img {
    position: absolute;
    padding: 0 36px;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.grid-btm-left {
    padding: 36px;
    border-radius: 12px;
    background-color: #36F;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.grid-btm-left:hover {
    transform: translateY(-5px);
}

.mad-grid-btm .company-review-img {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.company-review-img img {
    width: 100%;
}

.youtube-card lite-youtube {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.grid-btm-right {
    flex: 1.06;
    /* height: 393px; */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.grid-btm-right:hover {
    transform: translateY(-5px);
}

.gro-like-pro {
    background: radial-gradient(55.24% 271.76% at 50% 55.44%, #D90429 0%, #EE6E43 100%);
}

.primary-btn.wht-btn {
    background-color: #fff;
    color: var(--body-text-color);
}

.primary-btn.wht-btn:hover {
    background-color: #f4f4f4;
}

.mad-grid-top .grid-top-left {
    display: grid;
    grid-template-columns: 220px 337px 1fr;
    gap: 24px;
    align-items: stretch;
}

.mad-grid-btm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 24px;
}

.card-title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 1rem;
}

.star_blank {
    margin: 0;
    height: 17px;
    width: 100px;
    display: inline-block;
    vertical-align: middle;
}

.star_blank .star_yellow {
    width: 64px;
    height: 17px;
    display: block;
    margin: 0;
}


@media (max-width: 639px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 1750px) {

    .mad-grid-top .grid-top-left {
        grid-template-columns: 220px 350px 1fr;
    }

    .grid-col-mid .card-text-panel {
        min-height: 190px;
    }

    .company-review-img {
        bottom: -20px;
    }

}


@media (max-width: 1600px) {
    .card-text-panel {
        padding: 18px;
    }

    .gap24 {
        gap: 20px;
    }

    .head-arrow-link .title4 {
        font-size: var(--fs-sm);
    }
}

@media (max-width: 1550px) {
    .mad-grid-top .grid-top-left {
        grid-template-columns: 200px 280px 1fr;
    }

    .grid-col-mid .card-text-panel {
        min-height: 170px;
    }

    .company-review-img {
        bottom: -80px;
    }

}



@media (max-width: 1366px) {
    .company-review-img {
        bottom: 0px;
    }

}



@media (max-width: 1023px) {
    .container-fluid {
        max-width: 100%;
    }

    .grid-col4 {
        grid-template-columns: repeat(2, 1fr);
    }

    lite-youtube>.lty-playbtn {
        background-size: 32px 32px
    }

}

@media (max-width: 767px) {
    .main_wrapper {
        padding-top: 45px;
    }

    .hero-bg {
        height: 75vh;
    }

    .title2 {
        font-size: 26px;
    }

    .btn {
        font-size: 14px;
    }

    .grid-col4 {
        grid-template-columns: repeat(1, 1fr)
    }

    .block {
        display: block;
    }

    .head-arrow-link {
        font-size: 18px;
    }

    .grid-col-mid {
        display: none;
    }

    .grid-col-left {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .mad-grid-top .grid-top-left,
    .mad-grid-btm {
        grid-template-columns: 1fr;
    }

    .total_rating {
        flex-direction: column;
    }

    .appi-logo {
        width: 50%;
    }

    .appi-logo img {
        max-width: 94px;
    }

    .rating_box {
        padding: 22px;
        width: 50%;
    }

    .total_review {
        padding-top: 0;
    }

    .grid-col-right,
    .grid-btm-left {
        padding: 18px;
        height: 200px;
    }

    .gap90 {
        gap: 10px;
    }

    .company-review-img,
    .mad-grid-btm .company-review-img {
        position: relative;
        bottom: -20px;
        padding: 0;
    }

}