*{
    margin:0;
    box-sizing: border-box;
    padding:0
}
:focus{
    outline:0
}
img{
    border:none
}
html,body{
    height:100%;
    -webkit-text-size-adjust:none
}
body {
    height: 100%;
    margin: 0;
    font-family: Arial, Tahoma, sans-serif;
    color: #000;
    min-width: 320px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out; /* smooth fade effect */
}


/* ========================
   main container লেখা রঙ কাস্টম করার জন্য
   ======================== */
.step { color: white!important; } /* পুরো step container এর লেখা, এখানে তুমি চাইলে রঙ পরিবর্তন করো */
.step h2 { color: #FF00EA!important; } /* step এর h2, তুমি চাইলে রঙ পরিবর্তন করো */
.step p { color: green !important; } /* step এর paragraph, রঙ পরিবর্তন করো */
.step h5 { color: #ffffff !important; } /* h5 heading, রঙ পরিবর্তন করো */
.step ul, .step li { color: purple !important; } /* ul/li, রঙ পরিবর্তন করো */
.step .choose-options { color: teal !important; } /* choose-options, রঙ পরিবর্তন করো */
.attention p { color: white!important; } /* attention paragraph, রঙ পরিবর্তন করো */
.attention h5 { color: green!important; } /* attention h5, রঙ পরিবর্তন করো */
.step-title { color: navy !important; } /* step-title, রঙ পরিবর্তন করো */
.options h2 { color: maroon !important; } /* option heading, রঙ পরিবর্তন করো */
.option { color: #ff6600 !important; } /* options, রঙ পরিবর্তন করো */

/* ========================
   main container লেখা রঙ শেষ
   ======================== */

ol,ul{
    list-style:none
}
.option::first-letter{
    text-transform: capitalize; 
}
.fix{
    text-transform: lowercase; 
}
.wrap{
    position:relative
}
.step{
    text-align:center;
    display:none;
    max-width:480px;
    margin:0 auto
}
.step:first-child{
    display:block
}
.step-content{
    padding:15px 7px
}
.step-content p{
    margin-bottom:10px
}
.step-title{
    padding:10px 0;
    font-size:36px;
    text-transform:uppercase;
    font-weight:normal;
    text-align:center;
}
.pic-box img{
    width: 90%;
    border-radius: 20px;
    border: 5px solid #ffffff;
}
.attention{
    padding:15px 0
}
.attention p{
    padding: 0 5px;
    font-size:18px;
    margin-bottom:10px
}
.attention h5{
    font-size:22px
}
.btns-box{
    padding:15px 0
}
/* button text color অপরিবর্তিত থাকবে (#fff) */
.btn,.btn-start{
    background:#d63c34;
    display: inline-block;
    width: 95%;
    padding: 20px 0;
    font-size: 1.4em;
    color: #fff; /* button text color অপরিবর্তিত */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.btn:hover,.btn-start:hover{
    background:#f32e22
}
.question h2{
    padding:7px 0;
    font-size:24px;
    text-transform:uppercase;
    text-align:center
}
.question .btn{
    display:inline-block;
    margin: 0 1%;
    width:40%
}
.options h2{
    margin-bottom: 3px;
    font-size:20px;
    font-weight:normal
}
.choose-options{
    font-size:14px;
    font-style:italic
}
.option{
    margin-bottom:5px;
    padding:10px 20px;
    font-size:22px;
    font-weight:bold;
    padding:10px 10px 10px 50px;
    text-align:left;
    cursor:pointer;
    position:relative;
}
.option:after{
    content:''; 
    background:url(option.png) no-repeat 0 0;
    width:30px;
    height:30px;
    position:absolute;
    top:0;
    bottom:0;
    left:10px;
    margin:auto;
    border-radius:50%
}
.option.selected:after{
    box-shadow: 0 0 10px rgb(255, 255, 255);
    border: 2px solid #fff;
    background-position:0 -30px;
}
#email-submit .button a{
    width: 75%;
}
.loading1{
    display:table!important;
    width:100%;
    height:100%;
    position:fixed;
    left:0;
    top:0
}
.loading1 > ul{
    display:table-cell!important;
    width:100%;
    height:100%;
    vertical-align:middle
}
.loading1 > ul > li{
    display:none
}
.loading1 > ul > li.visible{
    display:block
}
.loading1 h5{
    font-size:18x;
    margin-bottom:10px;
    font-weight:normal
}
.final h2{
    padding: 0 5px;
    font-size:30px;
    font-weight:normal;
    margin-bottom:10px
}
.final > ul > li{
    margin-bottom:5px;
    padding:10px 20px;
    text-align:left
}

/* বাকি কোড একদম অপরিবর্তিত আছে */


/* =========================
   PROTECTION CSS (added at the end)
   ========================= */

/* Disable text selection on whole page */
body, .step, .attention, .option, .btn, .btn-start {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Prevent images from being dragged */
img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* Optional: Prevent selection inside input/textareas if you add later */
input, textarea {
    user-select: text !important; /* allow typing/selecting text only in forms */
}
