@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
    --main-bg: #F6F6FF;
    --black: #000000;
    --white: #FFFFFF;
    --smoky-black: #0C0C0C;
    --old-silver: #868686;
    --upsdell-red: #a71d2a;
    --bright-gray: #ebe7f5;
    --lavender-blue: #BFD9FF;
}
img {
    -webkit-user-drag: none;
    /* Safari */
    -khtml-user-drag: none;
    /* Konqueror */
    -moz-user-drag: none;
    /* Firefox */
    -o-user-drag: none;
    /* Opera */
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-style: normal;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-align: left;
    background-color: var(--main-bg);
}

* {
    scrollbar-width: auto;
    scrollbar-color: var(--upsdell-red) var(--white);
}
::selection {
    background-color: var(--upsdell-red);
    color: var(--white);
}

/* Header start */
.header-navbar .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
}

/* .header-navbar .download-now, .header-navbar .download-now:hover, .header-navbar .download-now:focus,
.header-navbar .download-now:active {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    background-color: var(--black);
    border-radius: 32px;
} */
.header-navbar .download-now, 
.header-navbar .download-now:hover, 
.header-navbar .download-now:focus,
.header-navbar .download-now:active {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(45deg, #a71d2a, #c42b38);
    border-radius: 32px;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(167, 29, 42, 0.6);
    transition: 
        background 0.4s ease, 
        box-shadow 0.4s ease, 
        transform 0.3s ease;
}

/* Hover effect: glow + slight scale-up */
.header-navbar .download-now:hover, 
.header-navbar .download-now:focus {
    background: linear-gradient(45deg, #c42b38, #a71d2a);
    box-shadow: 0 6px 20px rgba(196, 43, 56, 0.85);
    transform: scale(1.05);
    outline: none;
}

/* Active/click effect: pressed */
.header-navbar .download-now:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(196, 43, 56, 0.6);
}

/* Subtle pulsing animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 8px 0 rgba(167, 29, 42, 0.7);
    }
    50% {
        box-shadow: 0 0 15px 5px rgba(193, 81, 34, 0.9);
    }
}

.header-navbar .download-now {
    animation: pulse 2s infinite ease-in-out;
}

/* Header end */

.my-error-class{
    color: var(--upsdell-red);
    font-size: 14px;
    font-weight: 400;
}

/* Loader */

.light-loader {
    margin: 5rem 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

#ld4 {
    position: relative;
    display: flex;
    width: 8%;
    justify-content: space-between; 
}
#ld4 div {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #D91E36; }
    #ld4 div:nth-child(1) {
        animation: ld4 3s linear infinite 0s; }
    #ld4 div:nth-child(2) {
        animation: ld4 3s linear infinite 0.15s; }
    #ld4 div:nth-child(3) {
        animation: ld4 3s linear infinite 0.3s; }
    #ld4 div:nth-child(4) {
        animation: ld4 3s linear infinite 0.45s;
}

@keyframes ld4 {
    0% {
        transform: scale(0.3);
        background: var(--upsdell-red); }
    25% {
        transform: scale(1.8);
        background: #e85421; }
    50% {
        transform: scale(0.3);
        background: var(--upsdell-red); }
    75% {
        transform: scale(1.8);
        background: #e85421; }
    100% {
        opacity: 0;
    }
}

.custom-toggler {
    border: 2px solid var(--upsdell-red);
    background-color: #fff;
}
.custom-toggler .fa-bars{
    color: var(--upsdell-red);
}
.custom-toggler:focus{
    box-shadow: none;
}

@media only screen and (min-width: 0px) and (max-width: 992px) {
    .navbar-nav{
        text-align: right !important;
    }
    .nav-btn{
        justify-content: end;
    }
}