
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* body {
    min-height: 900vh;
} */

:root {
    --primary-color: #6a47ed;
    --secondary-color: #F5B301;
    /* --tertiary-color: #c6f806; */
    --tertiary-color: #bae805;
    --background-color: #f6f3fe;
    /* --background-color: #f5f5f5; */
    --text-color: #FFFFFF;
    --border-radius: 8px;
    --transition-duration: 0.3s;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.required-msg {
    color: rgb(255, 21, 21);
}



.my-btn {
    color: rgb(106, 71, 237);
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 12px 35px;
}


.primary-btn {
    background-color: var(--primary-color);
    color: #fff !important;
}
.primary-btn:hover {
    background-color: #000;
    color: #fff;
}


.secondary-btn {
    background-color: #c6f806;
    color: #000 !important;
    /* margin-left: 10px; */
}
.secondary-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
}


.dark-btn {
    background-color: #000000;
    color: #fff !important;
    border: 1px solid #000;
}
.dark-btn:hover {
    background-color: #fff !important;
    color: #000 !important;
}






ul, ol {
    margin: 0 !important;
    padding: 0 !important;
}

/* p {
    margin-bottom: 0 !important;
} */
body:not(.blog-page) p {
    margin-bottom: 0 !important;
}




/* Small rounded heading (gradient colour) */

.small-head {
    background-color: #e3e2fe;
    padding: 10px 16px;
    border-radius: 20px;
    width: fit-content;
    /* font-size: 14px; */
}

.small-head span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(36, 12, 242) 0%, rgb(0, 169, 181) 100%) text;
}



/* Dash under heading */

.primary-heading {
    position: relative;
    margin-bottom: 15px;
    font-size: 36px;
    display: inline-block;
}

.primary-heading::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Styling font */
.styled-heading {
    color: var(--primary-color);
    font-family: "Dancing Script", cursive;
    font-size: 1.2em;
    font-weight: 900;
}


/* Textured heading */

.heading-block {
    padding: 8px 26px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgb(0, 0, 0, 0.05), 0 4px 6px 3px rgb(246, 243, 254, 1);

    position: relative;
}

.heading-block .head {
    text-align: center;
    
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
    display: inline-block;              /* required for background sizing */
    background-image: url('../img/common/texture.png');
    background-size: cover;             /* change to contain if needed */
    background-position: center;
    -webkit-background-clip: text;      /* for WebKit browsers */
    background-clip: text;              /* standard (Firefox uses it via -moz? but ok) */
    color: transparent;                 /* hide fill so background shows */
    -webkit-text-fill-color: transparent;
    transition: background-position 0.8s ease;
}
.heading-block h5.head {
    font-size: 34px;
}

.heading-block .head:hover{
    background-position: 20% 50%;
}


@media screen and (max-width: 425px) {
    .heading-block .head {
        font-size: 34px !important;
    }
}