:root {
    /* Background colors */
    --bg-top: #ffc107;
    /* Deep Yellow */
    --bg-bottom: rgba(255, 240, 205, 1);
    /* Custom Cream */

    --text-main: #1f1f1f;
    --text-sub: #333333;
    --primary: #c99700;
    --border: #e6c85e;
    --fb-blue: #1877F2;

    /* Quiz Section Variables */
    --card-bg: #ffffff;
    --text-dark: #000000;
    --accent-gold: #fbbf24;
    --quiz-font: 'Noto Sans Bengali', sans-serif;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-top);
    height: 100%;
}

body {
    font-family: var(--quiz-font), 'Inter', sans-serif;
    font-weight: 400;

    /* FIXED GRADIENT */
        background: linear-gradient(180deg, #fffcda 0%, #fffde6 1%, #fffef1 20%, #fffcdc 85%, #fffbd2 100%);

    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

.num-font {
    font-family: 'Roboto', sans-serif !important;
}

/* TICKER */
.ticker-wrap {
    width: 100%;
    background: #fff699;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 15s linear infinite;
    font-size: 15px;
    font-weight: 500;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.dot {
    color: #000;
    margin: 0 10px;
}

/* HEADER */
header {
    padding: 10px 10px 5px 10px;
    max-width: 1100px;
    margin: auto;
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo a {
    display: block;
}

.logo img {
    max-width: 155px;
    height: auto;
    display: block;
    margin-left: 0;
}

/* MENU ICON */
.menu-btn {
    cursor: pointer;
    color: #000;
    padding-right: 0;
}

/* MENU LOGIC */
#menu-toggle {
    display: none;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

#menu-toggle:checked~.nav-menu {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#menu-toggle:checked~.menu-overlay {
    display: block;
}

.nav-menu a {
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    font-weight: 300;
}

/* SEARCH BAR */
.search-section {
    padding: 5px 10px 25px 10px;
    max-width: 1100px;
    margin: auto;
}

.search-wrapper {
    display: flex;
    align-items: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    border-bottom: 2px solid #000 !important;
    width: 100%;
    padding-bottom: 0;
}

.search-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 17px;
    color: #000;
    font-family: inherit;
    font-weight: 500;
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    margin-left: -2px;
    margin-bottom: -3px;
}

.search-input::placeholder {
    color: #333;
    opacity: 0.8;
    font-weight: 400;
}

.search-icon {
    font-size: 22px;
    color: #000;
    margin-left: 15px;
    transform: translateY(2px);
}


/* HERO SECTION */
.hero {
    padding: 20px 10px 40px 10px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

.hero h1 {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-left: 0;
}

.hero-welcome {
    display: block;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.9;
}

.hero-title-main {
    display: block;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-desc-wrap {
    border-left: 3px solid #000;
    padding-left: 15px;
    margin-top: 10px;
    margin-left: 0;
}

.hero p {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    max-width: 700px;
    line-height: 1.5;
}

/* GRID STYLES */
.grid-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    gap: 0px;
    margin: 0px auto 10px; 
    background: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0px;
}
.hero-title-main1{
    text-align: center;
    font-size: 18px;
}
.line{
    width: 40%;
    margin: auto;
    background: black;
    height: 3px;
    margin-bottom: 20px;
}
.link-card {
    background: transparent;
    border: 1px solid black; 
    border-radius: 12px;
    padding: 1px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.site_image img{
    width: 100%;
    margin-bottom: 20px;
}
.link-card:hover {
    transform: translateY(-3px);
    border-color: #000;
}
.link-card.active{
    background: #fff699;
}
.link-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.link-card p {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-btn {
    background: transparent;
    color: black;
    padding: 9px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

/* QUIZ PROMO BANNER (EDGE TO EDGE) */
.quiz-promo-container {
    width: 100%;
    display: block;
    margin: 0 0 40px 0;
    /* Space below the banner */
}

.quiz-promo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SPECIAL LINK & FACEBOOK */
.special-section {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.site-link-card {
    background: #fff699;
    border: 2px solid #fff699;
    /* Golden Border */
    border-radius: 50px;
    padding: 15px 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px #fff699;
    position: relative;
    overflow: hidden;
}

.site-link-card:hover {
    transform: scale(1.02);
}

.site-link-title {
    font-size: 15px;
    color: black;
    margin-bottom: 5px;
    font-weight: 500;
}

.site-link-url {
    font-size: 20px;
    font-weight: 700;
    color: black;
    /* Light Yellow */
    letter-spacing: 1px;
}

.fb-card {
    background: var(--fb-blue);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
    transition: transform 0.2s;
}

.fb-card:hover {
    transform: translateY(-2px);
}

.fb-icon svg {
    fill: #fff;
    width: 32px;
    height: 32px;
}

.fb-text {
    font-size: 18px;
    font-weight: 600;
}

/* WARNING TEXT */
.warning-wrapper {
    max-width: 900px;
    margin: 40px auto 50px;
    padding: 0 20px;
    text-align: center;
}

.warning-text {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.warning-bold {
    font-weight: 700;
    display: block;
    margin-top: 10px;
    font-size: 20px;
}

/* BOTTOM INFO BOXES */
.bottom-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0 auto;
}

.info-box {
    background: #fff699;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-box h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    line-height: 1.5;
}

/* SEO TEXT SECTION */
.seo-text-section {
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.seo-text-section p {
    font-size: 18px;
    color: #222;
    line-height: 1.8;
    font-weight: 500;
}

/* --- FOOTER --- */
footer {
    background: #fff699;
    /* Yellow */
    color: #000;
    padding: 20px 20px 30px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

/* LOGO */
.footer-logo {
    width: 180px;
    display: block;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.footer-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #111;
    font-weight: 500;
    max-width: 600px;
}

.footer-section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.6;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-links-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    width: 100%;
}

.footer-link-btn {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.footer-link-btn:hover {
    border-color: #000;
}

.social-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #000;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--fb-blue);
}

/* ARROW UP */
.footer-arrow-up {
    background: #000;
    color: #ffc107;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 30px auto 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.footer-arrow-up:hover {
    transform: translateY(-5px);
}

/* COPYRIGHT */
.copyright-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #444;
    width: 100%;
}

/* IMAGE-BASED FLOATING SUPPORT BUTTON */
.floating-support-img-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2000;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-support-img-container:hover {
    transform: scale(1.08);
}

.floating-support-img-container img {
    width: 120px;
    height: auto;
    display: block;
}

.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
    background-image: none !important;
}

@media screen and (max-height: 1024px) {

    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

@media screen and (max-height: 640px) {

    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgb(252, 185, 0) 0%, rgb(255, 105, 0) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgb(255, 105, 0) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);
    --wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);
}

:root {
    --wp--style--global--content-size: 800px;
    --wp--style--global--wide-size: 1200px;
}

:where(body) {
    margin: 0;
}

.wp-site-blocks>.alignleft {
    float: left;
    margin-right: 2em;
}

.wp-site-blocks>.alignright {
    float: right;
    margin-left: 2em;
}

.wp-site-blocks>.aligncenter {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

:where(.wp-site-blocks)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:where(.wp-site-blocks)> :first-child {
    margin-block-start: 0;
}

:where(.wp-site-blocks)> :last-child {
    margin-block-end: 0;
}

:root {
    --wp--style--block-gap: 24px;
}

:root :where(.is-layout-flow)> :first-child {
    margin-block-start: 0;
}

:root :where(.is-layout-flow)> :last-child {
    margin-block-end: 0;
}

:root :where(.is-layout-flow)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:root :where(.is-layout-constrained)> :first-child {
    margin-block-start: 0;
}

:root :where(.is-layout-constrained)> :last-child {
    margin-block-end: 0;
}

:root :where(.is-layout-constrained)>* {
    margin-block-start: 24px;
    margin-block-end: 0;
}

:root :where(.is-layout-flex) {
    gap: 24px;
}

:root :where(.is-layout-grid) {
    gap: 24px;
}

.is-layout-flow>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

.is-layout-flow>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

.is-layout-flow>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained>.alignleft {
    float: left;
    margin-inline-start: 0;
    margin-inline-end: 2em;
}

.is-layout-constrained>.alignright {
    float: right;
    margin-inline-start: 2em;
    margin-inline-end: 0;
}

.is-layout-constrained>.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: var(--wp--style--global--content-size);
    margin-left: auto !important;
    margin-right: auto !important;
}

.is-layout-constrained>.alignwide {
    max-width: var(--wp--style--global--wide-size);
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex> :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid> :is(*, div) {
    margin: 0;
}

body {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

a:where(:not(.wp-element-button)) {
    text-decoration: underline;
}

:root :where(.wp-element-button, .wp-block-button__link) {
    background-color: #32373c;
    border-width: 0;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    padding-top: calc(0.667em + 2px);
    padding-right: calc(1.333em + 2px);
    padding-bottom: calc(0.667em + 2px);
    padding-left: calc(1.333em + 2px);
    text-decoration: none;
    text-transform: inherit;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

:root :where(.wp-block-pullquote) {
    font-size: 1.5em;
    line-height: 1.6;
}

body {
    font-family: "Hind Siliguri", sans-serif !important;
}



.btn-help {
    background: linear-gradient(135deg, #fff699 30%, #fff699 10%, var(--bg-bottom) 80%, var(--bg-bottom) 85%);
    color: #000000;
    padding: 6px 14px;
    border-radius: 20px 0 0 20px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    position: fixed;
    top: 30%;
    right: 0;
    gap: 3px;
    align-items: center;
    z-index: 9;
}
.btn-help img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

body {
    font-family: "Hind Siliguri", sans-serif !important;
}
a{
    text-decoration: none;
}
.w-33{
    width: 33%;
}

.agetns{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px;
    border-radius: 15px;
    border: 1px solid black;
    overflow: hidden;
    margin-bottom: 5px;
}
.group{
    width: 42%;
    display: flex;
    justify-content: flex-start;
    align-items: self-start;
    gap: 5px;
    padding: 10px 0px 10px 5px;
}
.group1{
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 0px;
}
.group2{
    width: 20%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: #dc26261a;
    padding: 10px 0px;
    overflow: hidden;
}
.agent-img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid orangered;
}
.agent-name{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0px;
}
.agetn-type{
    font-size: 11px;
}
.agetn-id{
    padding: 3px 6px;
    font-size: 12px;
    border: 1px solid whitesmoke;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
}
.agent-number{
    font-weight: 600;
    color: #16a34a !important;
}
.agent-wa a{
    background: rgb(22 163 74);
    color: white;
    padding: 5px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    gap: 5px;
}
.agent-wa a svg{
    width: 12px;
    height: 12px;
}
.agent-wa a span{
    font-size: 9px;
}
.complain a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: red;
}
.complain svg{
    width: 18px;
    height: 18px;
}
.complain span{
    font-size: 9px;
}
.relative{
    position: relative;
}
.waves{
    position: absolute;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;

}
.wave {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.4); /* red-600 */
    border-radius: 50%;
    animation: wavePulse 2s infinite;
}

.wave:nth-child(2) {
    animation-delay: 1s;
}

@keyframes wavePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    70% {
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/* Mobile layout */
@media (max-width: 768px) {
    
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: unset;
}
.btn-help1{
    border: 1px solid black;
    padding: 4px 7px;
    border-radius: 5px;
}
#EditRegistrationModal .modal-content{
        background: linear-gradient(135deg, #fff699 30%, #fff699 10%, var(--bg-bottom) 80%, var(--bg-bottom) 85%);
}