body {
    font-family: 'Google Sans Flex', sans-serif;
}
.uniweb-btn-bg {
       background: linear-gradient(90deg, #050302 0%, #140902 25%, #2a1406 50%, #3b1a06 75%, #1a0c04 100%);
}
.megamenu-bg {
      background:
    radial-gradient(
      circle at 75% 45%,
      rgba(255, 120, 40, 0.35) 0%,
      rgba(255, 120, 40, 0.15) 25%,
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(
      110deg,
      #050505 0%,
      #0b0b0d 35%,
      #1a0d07 60%,
      #2a1308 75%,
      #120904 100%
    );
    color: white;
}
/* Scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

header {
    background: linear-gradient(90deg,
            #000000 0%,
            #140800 30%,
            #2a1200 55%,
            #4a1f00 75%,
            #6b2a00 100%);

}

.section-bg {
    background-color: #FEF1E8;
}

.bg-gradient-btn {
    background: linear-gradient(90deg,
            #050302 0%,
            #140902 25%,
            #2a1406 50%,
            #3b1a06 75%,
            #1a0c04 100%);
}

.logo {
    height: 37.5px;
    width: 150px;
    aspect-ratio: 4 / 1;
}

.max-w-8xl {
    max-width: 90rem
}

.max-w-9xl {
    max-width: 100rem
}

/* Container */
.kb-empower-section {
    padding: 100px 24px;
    background: #ffffff;
}

.kb-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.kb-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 40px;
}

.kb-title span {
    color: #ff6a00;
    border-bottom: 6px solid #ff6a00;
}

/* Grid */
.kb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .kb-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.kb-card {
    border-radius: 20px;
    padding: 0px 0px 36px 0px;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.kb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Card colors */
.kb-card.peach {
    background: #fde7d9;
}

.kb-card.lavender {
    background: #ebe7ff;
}

.kb-card.mint {
    background: #e2f5ea;
}

.kb-card p {
    padding: 0px 24px;
}

/* Images */
.kb-image {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}

.kb-image img {
    width: 100%;
    display: block;
}

/* Text */
.kb-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.kb-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* TOC styles */
.toc-link {
    position: relative;
    display: block;
    padding-left: 16px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.toc-link:hover {
    color: #f97316;
}

.toc-link .bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: transparent;
    border-radius: 2px;
}

.toc-link.active {
    color: #f97316;
    font-weight: 600;
}

.toc-link.active .bar {
    background: #f97316;
}

/* Scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Back to top scroll style */
#backToTop {
    background: linear-gradient(90deg,
            #050302 0%,
            #140902 25%,
            #2a1406 50%,
            #3b1a06 75%,
            #1a0c04 100%);
}

/* Floating animation */
@keyframes floatBtn {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.float-animation {
    animation: floatBtn 2.5s ease-in-out infinite;
}

/**** Glorious Search Popover ****/

.glorious-popover {
    position: fixed;
    /* NOT absolute */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    z-index: 10000;
    display: none;
}

.glorious-popover a,
.glorious-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    transition: background .15s;
}

.glorious-item:hover {
    background: #f6f6f6;
}

.glorious-empty {
    padding: 14px;
    color: #888;
    font-size: 14px;
}

/* BLOG */
/* Smooth slider animation */
.slider-track {
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

/* Card hover */
.blog-card:hover img {
    transform: scale(1.06);
}

.blog-card img {
    transition: transform 0.7s ease;
}

/* Arrow animation */
.arrow-btn:hover svg {
    transform: translateX(4px);
}

.arrow-left:hover svg {
    transform: translateX(-4px);
}

.arrow-btn svg {
    transition: transform 0.25s ease;
}

/* Mild custom animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    opacity: 0;
    transform: scale(0.96);
    transition: all 1s ease;
}

.hero-image.show {
    opacity: 1;
    transform: scale(1);
}

/* ===== Animations ===== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(.16, .84, .44, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-reveal {
    opacity: 0;
    transform: scale(0.96);
    transition: all 1.2s cubic-bezier(.16, .84, .44, 1);
}

.hero-reveal.show {
    opacity: 1;
    transform: scale(1);
}

/* Floating tags animation */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: .6s;
}

.delay-2 {
    animation-delay: 1.2s;
}

.delay-3 {
    animation-delay: 1.8s;
}

/* ===== Entrance Animations ===== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-zoom {
    opacity: 0;
    transform: scale(0.94);
    transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.hero-zoom.show {
    opacity: 1;
    transform: scale(1);
}

/* Glow orbs */
.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(70px);
    opacity: .55;
    pointer-events: none;
}

/* Badge float */
.badge {
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/*** FEEDBACK PAGE ***/
.brand-gradient{
    background:linear-gradient(135deg,#fff7f2, #ffe9db, #ffd6bd);
}

/* Card hover */
.card-hover{
    transition:all .25s ease;
}

.card-hover:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* subtle button animation */
.btn-pop{
    transition:all .2s ease;
}

.btn-pop:hover{
    transform:scale(1.04);
}

/* glowing focus */
input:focus, textarea:focus{
    box-shadow:0 0 0 4px rgba(255,115,0,.12);
}