html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
}

.display-font {
    font-family: 'Noto Serif Bengali', serif;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.glass {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
}

.soft-grid {
    background-image: radial-gradient(circle at 1px 1px, rgba(190, 18, 60, .10) 1px, transparent 0);
    background-size: 24px 24px;
}

.text-balance {
    text-wrap: balance;
}


/* Brand logo variants supplied by TKBSSL */
.logo-crop {
    position: relative;
    overflow: hidden;
    width: 3.5rem;
    height: 3.5rem;
}

.logo-crop .logo-source {
    position: absolute;
    inset: 0 auto auto 0;
    height: 100%;
    width: auto;
    max-width: none;
}

.social-icon {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, .05);
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
    background: #e11d48;
    border-color: #e11d48;
}

.social-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

@media (max-width: 420px) {
    .logo-crop {
        width: 3rem;
        height: 3rem;
        border-radius: .85rem;
    }
}