@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --color-primary: #F33FA2;
    --color-secondary: #9CA3AF;
    --color-secondary-2: #F3F4F6;
    --body-color: #525252;
    --color-white: #ffffff;
    --color-black: #000000;

    --font-open-sans: "Open Sans", sans-serif;
}

body{
    margin: 0;
    --body-font-family: var(--font-open-sans);
    --body-font-size: 1rem;
    --body-font-weight: 400;
    --body-line-height: 1.5;
    font-family: var(--body-font-family) !important;
    font-size: var(--body-font-size) !important;
    font-weight: var(--body-font-weight) !important;
    line-height: var(--body-line-height) !important;
    color: var(--body-color) !important;
    background-color: var(--color-white) !important;
}




.elevate {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Slider bar progress animation (controlled via inline style width) */
.progress-bar {
    transition: width 0.2s linear;
}

/* Prevent layout shift when mobile menu opens */
.no-scroll {
    overflow: hidden;
    touch-action: none;
}

/* Crisp images (badges/icons) */
img {
    image-rendering: -webkit-optimize-contrast;
}

.bar {
    position: relative;
    height: 0.25rem;
    /* 4px */
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.2);
}

.bar .progress-bar {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    /* default color */
    border-radius: inherit;
    transition: background-color 0.5s ease;
    /* smooth color change */
}

/* Slight highlight for active bar container */
.bar.active-bar {
    background-color: rgba(255, 255, 255, 0.45);
}