/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set base font and colors */
:root {
    --yel-color: #FFD64D;
    --pink-color: #F75F60;
    --light-color: #f8f9fa;
    --text-grey: #626262;
    --light-grey: #dedede;
    --WhatsApp: #65C370;
    --purple-light: #9F77C9;
    --Facebook: #6487e8;
    --Google: #e85947;
    --Instagram: #f75580;
    --Threads: #a05eb9;
    --x: #434343;
    --font-primary: "century-gothic", sans-serif;
    --font-secondary: 'Georgia', serif;
}

button {
    background: #ededed;
}

.Italic {
    font-style: italic !important;
}

.FB {
    background-color: var(--Facebook);
}

.Insta {
    background-color: var(--Instagram);
}

.X {
    background-color: var(--x);
}

.Threads {
    background-color: var(--Threads);
}

.Goog {
    background-color: var(--Google);
}


.Yel {
    background-color: var(--yel-color);
}

.YelTxt {
    color: var(--yel-color);
}

.Pin {
    background-color: var(--pink-color) !important;
    color: #FFF !important;
}

.PinLin {
    border: 1px solid var(--pink-color) !important;
}

.PinT {
    color: var(--pink-color) !important;
}

.Pur {
    background-color: var(--purple-light) !important;
    color: #FFF !important;
}

.PurLin {
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--purple-light);
    -moz-box-shadow: inset 0px 0px 0px 1px var(--purple-light);
    box-shadow: inset 0px 0px 0px 1px var(--purple-light);
    color: var(--purple-light) !important;
    background-color: #FFF;
}

.Grey {
    background-color: var(--light-grey);
}

.GreyT {
    color: var(--light-grey);
}

.PurT {
    color: var(--purple-light);
}

.Tsap {
    background-color: var(--WhatsApp);
}

.YelTxt {
    color: var(--yel-color);
}

.PinTxt {
    color: var(--pink-color);
}

.WhiteTxt {
    color: #FFF;
}

.InfoTxt {
    font-weight: 100;
    font-size: 0.8em;
}


body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #faf8ff;
    background-image: url('Assets/png/QC_Pattern.png');
    background-repeat: repeat;
    background-size: 250px 250px;
    background-attachment: fixed;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-button {
    display: none;
}

body {
    -ms-overflow-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.2em;
}

/* Links */
a {
    color: var(--putple-light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
}

/* Buttons */

.button {
    flex: 1;
    padding: 10px 0px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-weight: 700;
}

.BNBut {
    display: flex;
    position: relative;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.indi-top {
    display: none;
    position: absolute;
    background: red;
    bottom: 0;
    width: 100%;
    margin-bottom: 4em;
    padding: 0.8em 0.8em;
    border-radius: 10px;
    text-align: center;
}

.indi-arrow {
    position: absolute;
    height: 10px;
    width: 10px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    margin-bottom: -5px;
    transform: rotate(45deg);
}

.MPay {
    width: 100%;
    margin: 0;
}

.Rbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    margin: 5px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
}

.butSpac {
    flex: 0.1;
    padding: 10px 0px;
    text-align: center;
}

.button:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

/* Forms */

textarea, select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-grey) !important;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.ml-1 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.p-1 {
    padding: 1rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pr-1 {
    padding-right: 1rem;
}


/*--- General Styles ---*/

/* Loading page */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--purple-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #faf8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.spinner {
    width: 75px;
    height: 75px;
    border: 3px solid rgba(126, 84, 167, 0.35);
    border-top: 3px solid #7E54A7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner2 {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(126, 84, 167, 0.35);
    border-top: 3px solid #7E54A7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.QCLoad {
    margin: 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* HTML: <div class="loader"></div> */
.loada {
    height: 3px;
    width: 250px;
    --c: no-repeat linear-gradient(#7E54A7 0 0);
    background: var(--c),var(--c),#d7b8fc;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

.loadaPin {
    height: 3px;
    width: 250px;
    --c: no-repeat linear-gradient(#F75F60 0 0);
    background: var(--c),var(--c),#ebc440;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

@keyframes l16 {
    0% {
        background-position: -150% 0,-150% 0
    }

    66% {
        background-position: 250% 0,-150% 0
    }

    100% {
        background-position: 250% 0, 250% 0
    }
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loaderLine {
    width: 100%;
    height: 4.8px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

    .loaderLine::after {
        content: '';
        width: 0%;
        height: 4.8px;
        background-color: #F75F60;
        font-size: 15px;
        border-radius: 2px;
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%, transparent 75%, transparent);
        background-size: 1em 1em;
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
        animation: animFw 10s ease-in infinite, barStripe 1s linear infinite;
    }

@keyframes barStripe {
    0% {
        background-position: 1em 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes animFw {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}




/* MODALS */

.modal {
    background-color: rgba(159, 119, 201, 0.8);
    overflow: hidden;
}

.LBox {
    border-radius: 21px;
    box-shadow: 0 0px 15px rgba(0,0,0,0.3);
}

.ImgBox {
    background: none !important;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.moddi {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
}

.moddi2 {
    margin-top: 0px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .moddi2::-webkit-scrollbar {
        display: none;
    }

.cardPre {
    text-align: center;
}

    .cardPre img {
        height: 70vh;
        max-width: 75vw;
        box-shadow: 0 0px 10px rgba(0,0,0,0.5);
    }

.modCont {
    background: none !important;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modCont2 {
    display: flex;
    background: none !important;
    border: none;
}

.CPreview {
    mix-blend-mode: overlay;
    position: absolute;
    background-image: url('Assets/png/Pre_Pattern.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    background-blend-mode: lighten;
    overflow: hidden;
}

.iframe-container {
    background: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(1.3);
    margin-bottom: 80px;
}

    .iframe-container iframe {
        height: 100%;
        box-shadow: 0 0px 15px rgba(0,0,0,0.3);
        overflow: hidden;
    }

.iframe-container2 {
    margin-top: 5px;
    background: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0px 4px rgba(0,0,0,0.5);
    /*transform: scale();*/
}

    .iframe-container2 iframe {
        pointer-events: none;
        width: 100%;
    }


.ImgClose {
    text-align: center;
    width: 20vw;
    margin-bottom: 20px;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.3);
}

.HClose {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100%;
}

.HtmlClose {
    text-align: center;
    width: 20vw;
    margin-bottom: 20px;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.3);
}

/* Sitemap Styles */

#SiteMap p {
    font-size: 0.8em;
}

#SiteMap a {
    font-size: 0.8em;
}

#SiteMap h5 {
    font-size: 1em;
}

/* Navbar Styles */

.Fnavbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.FBar {
    position: relative;
    width: 100%;
    display: flex;
    padding: 0.6em 0.6rem;
    justify-content: space-between;
    background-color: #FFF;
    z-index: 5;
}

/*---
.P0 {--progress: 0.00%; }
.P1 { --progress: 16.67%; }
.P2 { --progress: 33.34%; }
.P3 { --progress: 50%; }
.P4 { --progress: 66.68%; }
.P5 { --progress: 83.35%; }
.P6 { --progress: 100%; }
---*/



.PBar {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255,214,77,1);
    z-index: 5;
}

    .PBar::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: var(--progress);
        background: rgba(247,95,96,1);
        transition: width 0.5s ease;
    }

.logo {
    padding: 0.2em;
}

.DivLit {
    display: none;
    position: fixed;
    background-color: rgba(159, 119, 201, 0.9);
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

#Invoice {
    position: relative;
    display: flex;
    background-color: #FFF;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}

.InCont {
    flex: 1;
    /*margin-top: -1000px;*/
    display: flex;
    max-width: 700px;
    padding: 1em;
    gap: 20px;
}

.Pricing {
    width: 100%;
    padding: 0.4em 0em;
    color: var(--text-grey);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.InImg iFrame {
    position: relative;
    width: 25vw;
    max-width: 150px;
    box-shadow: 0 0px 3px rgba(0,0,0,0.6);
}

.InImg img {
    position: relative;
    width: 25vw;
    max-width: 150px;
    box-shadow: 0 0px 3px rgba(0,0,0,0.6);
}

.InvLn {
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
}

.InvVat {
    display: flex;
    margin-bottom: 10px;
}

.InvEDisc {
    color: red;
}


.FBot {
    padding-top: 10px;
    border-top: 1px solid #CCC;
    margin-top: auto;
    font-size: 1em;
    font-weight: 700;
}

.VBot {
    margin-top: auto;
    padding-top: 10px;
}

.BNav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FFF;
    padding: 0.3rem;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.BCont {
    flex: 1;
    display: flex;
    max-width: 600px;
    justify-content: space-between;
}

.InfAni {
    animation: BounceInOut 1.5s 1;
}

#next-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.PayM {
    margin: 10px;
    max-width: 200px;
    border-radius: 10px;
}

.basket {
    display: flex;
    color: var(--purple-light);
    font-weight: 600;
    font-size: 1.1em;
    gap: 10px;
}

.TotBox {
    padding: 3px 10px;
    border-radius: 10px;
    user-select: none;
}

.TboxAct {
    display: block;
    background-color: var(--pink-color);
    color: #FFF;
    animation: Bounce 0.8s 1;
}

    .TboxAct:hover {
        cursor: pointer;
    }

.Profile {
    padding: 3px 9px;
    border-radius: 50%;
}

@keyframes Bounce {
    20% {
        transform: scale(0.85);
        box-shadow: 0px 0px 0px 0px rgba(128, 0, 128, 0.5);
    }

    40% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(0.95);
    }

    80% {
        transform: scale(1.0);
    }

    100% {
        box-shadow: 0px 0px 10px 15px rgba(128, 0, 128, 0);
    }
}

@keyframes BounceInOut {
    30% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.85);
    }

    50% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.0);
    }
}

@keyframes BounceSel {
    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.85);
    }

    60% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1.0);
    }
}

@keyframes threeD {
    0% {
        transform: rotateX(5deg) rotateY(15deg) rotateZ(-10deg);
    }

    40% {
        transform: rotateX(10deg) rotateY(0deg) rotateZ(-10deg);
    }
}


/* Section Styles */

.section {
    min-height: 100vh;
    padding: 1rem 1rem 2rem;
    align-items: center;
    justify-content: center;
}

.section2 {
    margin-top: 70px;
    padding: 1rem 1rem 2rem;
    align-items: center;
    justify-content: center;
}

/* 1. Event Type */

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.EOpt {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0px;
    background-color: #FFF;
    font-weight: 700;
    font-size: 1.1em;
    color: var(--text-grey);
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}

    .EOpt:hover {
        cursor: pointer;
    }

    .EOpt:active {
        transform: scale(0.98);
        transition: all 0.3s ease;
    }

    .EOpt img {
        height: 25px;
    }

.EActive {
    background-color: var(--purple-light) !important;
    color: #FFF;
}

.Coming {
    color: #CCC;
    box-shadow: 0 0px 4px rgba(0,0,0,0.1);
}

    .Coming img {
        opacity: 0.5;
    }

.ComSoon {
    position: absolute;
    background: var(--pink-color);
    padding: 0.2em 1.8em;
    border-radius: 5px;
    right: 0;
    color: #FFF;
    border: 2px solid #FFF;
    z-index: 10;
    font-size: 0.8em;
    font-style: italic;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    transform: rotate(40deg);
}

/*--- 2. Select Card ---*/


/* Flying to Cart */

.moving-item {
    position: fixed;
    background: red;
    border-radius: 0.5em;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.22, 1);
    opacity: 1;
    color: #FFF;
    text-align: center;
    background-color: #e22c2c;
    border: 3px solid #FFF;
    padding: 5px 10px;
    font-size: 1.3em;
    z-index: 1000;
}

    .moving-item.flying {
        opacity: 0;
    }

/* Flycart End */

.flex-table1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.table-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    flex: 0 0 calc(33% - 15px);
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
}

    .table-box:hover {
        cursor: pointer;
    }

    .table-box:active {
        transform: scale(0.98);
        transition: all 0.3s ease;
    }

    .table-box img {
        width: 100%;
        box-shadow: 0 0px 5px rgba(0,0,0,0.3);
    }

.image-container {
    background-image: url(Assets/png/QC_ImgLoad.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    align-items: top;
    justify-content: center;
    animation: pulse-opacity 2s ease-in-out infinite;
}

@keyframes pulse-opacity {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@property --angle {
    inherits: false;
    initial-value: 0deg;
    syntax: "<angle>";
}

@keyframes spin-gradient {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

.lazy-image {
    opacity: 0;
    max-width: 100%;
    transition: opacity 0.3s ease;
}

    .lazy-image.loaded {
        opacity: 1;
    }

.Pcont {
    position: absolute;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    margin-left: auto;
    margin-top: -20px;
    margin-left: -20px;
    width: calc(100% + 20px);
}

.Prem {
    display: none;
    border: 3px solid #FFF;
    padding: 5px 10px;
    font-size: 1.3em;
    background: linear-gradient(141deg, rgb(255, 177, 0) 0%, rgb(255, 223, 92) 60%, rgb(234, 137, 0) 100%);
    background-size: 250% 250%;
    -webkit-animation: premGrad forwards 5s ease infinite;
    -moz-animation: premGrad forwards 5s ease infinite;
    animation: premGrad forwards 5s ease infinite;
}

@-webkit-keyframes premGrad {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 100% 80%
    }

    100% {
        background-position: 10% 0%
    }
}

@-moz-keyframes premGrad {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 100% 80%
    }

    100% {
        background-position: 10% 0%
    }
}

@keyframes premGrad {
    0% {
        background-position: 100% 0%
    }

    50% {
        background-position: 100% 80%
    }

    100% {
        background-position: 100% 0%
    }
}

.hide {
    display: none !important;
}

.remove {
    display: none !important;
}

.view {
    display: block !important;
}

.Anim {
    display: none;
    background: rgb(164, 0, 250);
    border: 3px solid #FFF;
    padding: 5px 17px;
    font-size: 1.3em;
    border-radius: 30px !important;
}

    .Anim i {
        margin-right: -5px;
    }

.Cntab {
    display: flex;
}

.PrTag {
    background-color: #e22c2c;
    border: 3px solid #FFF;
    padding: 5px 10px;
    font-size: 1.3em;
}

.Ptag {
    margin: 5px;
    border-radius: 10px;
    color: #FFF;
    font-weight: 700;
    box-shadow: 0 0px 5px rgba(0,0,0,0.4);
}

.TileH {
    border-radius: 20px 20px 0px 0px;
    padding: 0px 20px 0px 20px;
    overflow: hidden;
    text-align: center;
}

.LiteH {
    border-radius: 20px 20px 0px 0px;
    padding: 0px 20px 0px 20px;
    overflow: hidden;
    text-align: center;
}

.LiteLD {
    border-radius: 20px 20px 20px 20px;
    padding: 0px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
}

.InfoLD {
    border-radius: 20px 20px 20px 20px;
    padding: 0px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    box-shadow: 0 0px 4px rgb(92, 62, 92, 0.5);
}

    .InfoLD p {
        font-weight: 700;
    }

.THead {
    font-size: 4.7em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -4px;
    line-height: 1.1em;
    margin-top: 20px;
    margin-left: -30px;
    margin-right: -30px;
    text-align: center;
}

.LHead {
    font-size: 4.7em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -4px;
    line-height: 1.1em;
    margin-top: 20px;
    margin-left: -30px;
    margin-right: -30px;
    text-align: center;
}

.infoHead {
    font-size: 2.7em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -2px;
    line-height: 1.1em;
    margin-top: 20px;
    margin-left: -30px;
    margin-right: -30px;
    text-align: center;
}

.DHead {
    font-size: 4.2em;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -4px;
    line-height: 0.8em;
    margin-top: 20px;
    margin-left: -0.3em;
    margin-right: -30px;
    text-align: Left;
}

.TileB {
    padding: 1em;
    text-align: left;
    font-weight: 700;
    color: var(--text-grey);
    font-size: 1.1em;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
}

.LiteB {
    padding: 25px 30px 20px 30px;
    text-align: center;
    font-weight: 700;
    color: var(--text-grey);
    font-size: 1.1em;
}

.button-container {
    display: flex;
    gap: 20px;
    padding: 10px 0px;
}

.SubHead {
    color: var(--pink-color);
    font-style: italic;
    font-size: 1.8em;
    line-height: 1.2em;
    margin: 25px 0px 15px 0px;
}

.SubHead2 {
    font-style: italic;
    color: #e2e2e2;
    font-size: 4em;
    line-height: 1.2em;
    margin: 25px 0px 15px 0px;
}

.content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    border-radius: 20px;
    margin-top: 55px;
    margin-bottom: 55px;
}

/* 3. CardInfo */

#Pmessage {
    resize: none;
}

.CharCount {
    text-align: right;
    margin-top: -20px;
    font-size: 0.8em;
    font-weight: 100;
    padding: 0em 0.4em;
    margin-bottom: 0.8em;
    color: #CCC;
}

.textMsg {
    text-align: right;
    margin-top: 0.3em;
    font-size: 0.7em;
    font-weight: 100;
    padding: 0em 0.4em;
    color: var(--pink-color) !important;
}

#CharAlert {
    display: none;
}


/* 4. Your Info*/

.Deal {
    background: #ffe17d;
    padding: 0.5em;
    border-radius: 5px;
    color: var(--pink-color);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
}

.validEmail {
    padding: 0px 10px;
    display: flex;
    width: 80px;
    flex-direction: column;
    background: #ededed;
    margin-left: 5px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.validTsap {
    padding: 0px 10px;
    display: flex;
    width: 80px;
    flex-direction: column;
    background: #ededed;
    margin-left: 5px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.disbaledHref {
    pointer-events: none;
    cursor: default;
}

.AExist {
    padding: 0.5em;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
}

.DCcont {
    position: relative;
    border-radius: 10px 10px 0px 0px;
    margin: -18px -18px 0px -18px;
    overflow: hidden;
    justify-content: space-between;
}

.send {
    background-color: var(--WhatsApp) !important;
    animation: BounceInOut 1.5s 1;
}

.sendclicked {
    animation: loading 0.7s linear infinite;
}

/* 5. Payment */

.PayTile {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 2000px;
    margin: 0 auto;
    text-align: center;
    font-weight: 100;
}

.Invoice {
    display: flex;
    gap: 1em;
    padding: 1em;
}

.PayMeth {
    flex: 1;
    display: flex;
    text-align: center;
    justify-content: center;
}

.PayOpt {
    padding: 0.7em 0.5em 0.9em 0.5em;
    max-width: 180px;
}

.EcoBT {
    background: #FFF;
}

#payLightB {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    background: #FFF;
}

.procBox {
    position: relative;
    z-index: 100;
    background: white;
    text-align: center;
}

.ProgInfo {
    font-style: italic;
    font-weight: 700;
}

#CanRet {
    opacity: 0; /*--added Phase 2---*/
}

#tranNo {
    display: none;
}

/* Contact Form Styles */

.contact-form {
    max-width: 2000px;
    margin: 0 auto;
    background: #ffffff;
}

.form-group {
    margin-bottom: 0.8em;
}

.disc-group {
    margin-bottom: 0.8em;
    padding: 0.8em;
    border-radius: 5px;
    border: 1px solid var(--pink-color);
    background: var(--yel-color);
    color: var(--pink-color);
}

.CheckCont {
    display: flex;
    gap: 0.4em;
    margin-top: 0.5em;
    padding: 0.5em;
    border: 1px solid var(--purple-light);
    border-radius: 5px;
    color: var(--purple-light);
    opacity: 0.2;
    background: #f4eaff;
}

.InfoTxt {
}

.CCAct {
    border: 1px solid var(--purple-light);
    color: var(--purple-light);
}

#EmailInfo {
    border: 1px solid var(--purple-light);
    color: var(--purple-light);
}

.Wapp {
    background-color: #f2fff2 !important;
    color: green;
    border: 1px solid #5cc95c !important;
}

.form-group {
    position: relative;
}

.iti {
    width: 100%;
    z-index: 10;
    position: relative;
}

.iti__country {
    font-weight: 100;
}

.intl-tel-input .country-list {
    z-index: 9999;
    position: absolute;
    top: 100%;
    left: 0;
}

.iti-flag-container {
    z-index: 11;
    position: relative;
}

.wa1 .iti__selected-dial-code {
    font-weight: 100;
    color: green;
    margin-left: 0 !important;
    font-size: 0.9em !important;
}

.wa2 .iti__selected-dial-code {
    font-weight: 100;
    color: #931893;
    margin-left: 0 !important;
    font-size: 0.9em !important;
}

.wa2 {
    width: 210px;
}

.Wapp:focus {
    outline: 1px solid #5cc95c;
}

/* 6. Good to Go */

.GTG {
    padding: 1em 0em 0em 0em;
    text-align: center;
    perspective: 400px;
    -webkit-perspective: 400px;
    background-image: url(Assets/gif/confetti_burst.gif);
    background-size: contain;
}

.GTG-Img {
    position: relative;
    transform: rotateX(5deg) rotateY(15deg) rotateZ(-10deg);
    -webkit-animation: threeD forwards 5s ease-in-out infinite;
    -moz-animation: threeD forwards 5s ease-in-out infinite;
    animation: threeD forwards 5s ease-in-out infinite;
}

    .GTG-Img img {
        background: #CCC;
        max-width: 300px;
        transform-style: preserve-3d;
        /*--box-shadow: 0 0px 4px rgba(0,0,0,0.7);--*/
        box-shadow: -5px 5px 25px rgba(0,0,0,0.1);
    }

.GTG-BT {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sheen {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(141deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 177, 0, 0) 55%, rgba(255, 255, 255, 0.22) 68%,rgba(255, 177, 0, 0) 70%, rgba(234, 137, 0, 0) 100%);
    background-size: 250% 250%;
    -webkit-animation: premGrad forwards 5s ease infinite;
    -moz-animation: premGrad forwards 5s ease infinite;
    animation: premGrad forwards 5s ease infinite;
    mix-blend-mode: overlay;
}

.RTG {
    letter-spacing: -2px;
    font-size: 1.9em;
    height: 1.5em;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.shareCont {
    padding: 0.5em;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    background: #f4f4f4;
}

.DwnBT {
    margin-bottom: 1.2em;
}

.InGreen:focus {
    outline: 1px solid #5cc95c !important;
    color: #399d39 !important;
}

input::placeholder {
    color: var(--purple-light);
    font-style: italic;
    opacity: 0.5;
}

.Wapp::placeholder {
    color: #5cc95c;
    font-style: italic;
    opacity: 0.7;
}

textarea::placeholder {
    color: var(--purple-light);
    font-style: italic;
    opacity: 0.5;
}

.form-group input:focus {
    outline: 2px solid #FF7374;
}

.form-group textarea:focus {
    outline: 2px solid #FF7374;
}


.form-group label {
    display: block;
    margin-bottom: 0.2rem;
    color: #333;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.45rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fcfcfc;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

    .submit-btn:hover {
        background-color: #0056b3;
    }

#CreNCard {
    display: none;
}

/*additional CSS for Innbucks*/
.contBox {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 10px;
}

.bordCode {
    padding: 8px 12px;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: 4px;
    border: 1px solid #c1c1c1;
}

.Lrad {
    border-radius: 5px 0px 0px 5px;
    color: #575757;
}

.Rrad {
    border-radius: 0px 5px 5px 0px;
    margin-left: -1px;
    color: #aaaaaa;
    padding-left: 15px;
    cursor: pointer;
}

    .Rrad:active {
        background: #dddddd;
    }

/*Campaign Container*/
.Campaign-Container {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    /*--box-shadow: 0 0 4px rgb(92, 62, 92, 0.5);--*/
}

.campaign {
    padding: 0;
    margin: 0;
}

.campaign img {
    width: 100%;
    height: auto;
        display: block;
        max-width: 100%;
        object-fit: cover;
        padding-bottom: 20px;
        border-radius: 20px 20px 20px 20px;
    }

.Web-Banner-Container {
    border-radius: 20px 20px 20px 20px;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    /*--box-shadow: 0 0 4px rgb(92, 62, 92, 0.5);--*/
}

.Web-Banner {
    padding: 0;
    margin: 0;
}

    .Web-Banner img {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
        object-fit: cover;
    }

.PromoBT {
    background: #FFF;
    padding: 0.7em 0.5em 0.9em 0.5em;
    max-width: 370px !important;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: absolute;
        height: 100vh;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgb(159, 119, 201, 0.9);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }

        .nav-links.active {
            display: flex;
        }

    .burger {
        display: flex;
    }

        .burger.active div:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active div:nth-child(2) {
            opacity: 0;
        }

        .burger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

    .contact-form {
    }

    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
        margin-bottom: 1rem;
    }

    .THead {
        text-align: left;
        margin-top: 10px;
    }

    .LHead {
        text-align: centre;
    }

    .butSpac {
        display: none;
    }

    .TileB {
        text-align: left;
        font-weight: 700;
        color: var(--text-grey);
        font-size: 0.95em;
    }

    .iframe-container {
        transform: scale(1);
    }

    .GTG-Img img {
        width: 40vw;
    }

    .DCcont {
        margin: -16px -16px 0px -16px;
    }

    .moddi {
        max-width: 90vw;
    }
}

@media (max-width: 585px) {

    #Welcome img {
        height: 70vw;
    }

    #WhatDo .TileH img {
        margin-top: -40px;
    }

    #HowWorks .TileH img {
        margin-top: -40px;
        width: 55vw;
    }

    #CreateCard .TileH img {
        margin-top: -80px;
        margin-left: 120px;
        width: 40vw;
    }

    #Contact .TileH img {
        margin-top: -30px;
        width: 45vw;
    }

    .table-box {
        flex: 0 0 calc(50% - 12.5px);
    }
}

@media (max-width: 768px) {
    #InnbucksQR {
        width: 50%;
    }
}
