/* ==========================================================
   TrueVitaHub
   Homepage Categories
========================================================== */

.tvh-categories{

    position:relative;

    padding:110px 0;

    background:#f8fbff;

    overflow:hidden;

}

/* ==========================================================
   Section Heading
========================================================== */

.tvh-section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.tvh-section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:#eef4ff;

    color:#2563eb;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.tvh-section-heading h2{

    margin:0 0 18px;

    font-size:46px;

    line-height:1.15;

    font-weight:800;

    color:#0f172a;

}

.tvh-section-heading p{

    margin:0;

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}

/* ==========================================================
   Grid
========================================================== */

.tvh-category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/* ==========================================================
   Card
========================================================== */

.tvh-category-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    text-decoration:none;

    padding:40px 25px;

    border-radius:24px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(37,99,235,.08);

    box-shadow:

        0 15px 40px rgba(15,23,42,.06);

    transition:all .35s ease;

    overflow:hidden;

}

/* Glow */

.tvh-category-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(37,99,235,.08),

    transparent 60%);

    opacity:0;

    transition:.35s;

}

/* Hover */

.tvh-category-card:hover{

    transform:

        translateY(-10px);

    border-color:#2563eb;

    box-shadow:

        0 30px 70px rgba(37,99,235,.18);

}

.tvh-category-card:hover::before{

    opacity:1;

}

/* ==========================================================
   Icon
========================================================== */

.tvh-category-icon{

    width:74px;

    height:74px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

    border-radius:20px;

    background:

    linear-gradient(

        135deg,

        #eef4ff,

        #ffffff

    );

    font-size:34px;

    transition:.35s;

}

.tvh-category-card:hover .tvh-category-icon{

    transform:

        rotate(-8deg)

        scale(1.08);

}

/* ==========================================================
   Title
========================================================== */

.tvh-category-card h3{

    margin:0 0 12px;

    font-size:22px;

    font-weight:700;

    color:#0f172a;

}

/* ==========================================================
   Tool Count
========================================================== */

.tvh-category-card p{

    margin:0;

    color:#64748b;

    font-size:15px;

}

/* ==========================================================
   Hover Arrow
========================================================== */

.tvh-category-card::after{

    content:"→";

    position:absolute;

    right:22px;

    bottom:18px;

    opacity:0;

    color:#2563eb;

    font-size:18px;

    transition:.30s;

}

.tvh-category-card:hover::after{

    opacity:1;

    transform:translateX(5px);

}

/* ==========================================================
   Responsive
========================================================== */

@media(max-width:1200px){

    .tvh-category-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .tvh-section-heading h2{

        font-size:38px;

    }

    .tvh-category-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .tvh-categories{

        padding:80px 0;

    }

    .tvh-section-heading{

        margin-bottom:50px;

    }

    .tvh-section-heading h2{

        font-size:30px;

    }

    .tvh-section-heading p{

        font-size:16px;

    }

    .tvh-category-grid{

        grid-template-columns:1fr;

    }

    .tvh-category-card{

        padding:32px 20px;

    }

}