/* ================Global CSS================ */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --color-green:#58f087;
    --color-dark-blue:#161827;
    --color-blue:#0044BC;
    --color-light-blue: #416EF0;
    --color-white:#ffffff;

}
/* .baloo-da-2-<uniquifier> {
  font-family: "Baloo Da 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

html {
  font-size: 10px;
}
body{
    color: var(--color-white);
    font-size: 1.4rem;
    position: relative;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    font-weight: 600;
    color: var(--color-white);
}
h1,h2{
    font-family: "Baloo Da 2", sans-serif;
    font-weight: 1000;
}
p,a,h4,h3,button,label{
    font-family: "Baloo Da 2", sans-serif;
    font-size: 1.8rem;
}
img{
    width: 100%;
}
/* ================Global CSS================ */


/* ================Common CSS================ */
.container{
    max-width: 1440px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
    font-family: "Baloo Da 2", sans-serif;
    /* overflow: hidden; */
}
/*common margin  */
.margin-left{
    margin-left: 10px;
}
.margin-right{
    margin-right: 10px;
}
.margin-top{
    margin-top: 20px;
}
/* Responsive */
.mobile{
    display: none;
}
/* Button */
.submit-button{
    color: var(--color-white);
    border: none;
    cursor: pointer;
}
.btn, .nbg-btn{
    display: inline-block;
}
.btn a, .nbg-btn a, .submit-button{
    padding: 12px 20px;
    text-transform: capitalize;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}
.btn a, .submit-button{
    background: var(--color-blue);
}
.btn a:hover{
    background-color: var(--color-light-blue);
}
.nbg-btn a:hover{
    background-color: rgba(65, 110, 240,0.2);
}

/* ------- Highlight ------- */
.highlight span{
    margin: 0 3px;
    color: var(--color-green);
}
/* ------- Section Title ------- */
.section-title{
    font-size: 3rem;
    text-align: center;
}
.section-title h2{
    font-weight: 800;
}
.section-title p{
    max-width: 700px;
    margin: 20px auto;
}
/* ------- Form and input ------- */
.formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.formbold-input-flex > div {
    width: 50%;
}
.formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 25px;
    border: 1px solid var(--color-blue);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-dark-blue);
    outline: none;
    resize: none;
}
.formbold-form-input:focus {
    border-color: var(--color-green);
    box-shadow: 0px 3px 8px rgba(47, 0, 166, 0.05);
}
.formbold-form-label {
    color: var(--color-dark-blue);
    line-height: 1.8rem;
    display: block;
    margin: 15px 0px 5px 16px;
}
/* ---------DROP DOWN MENU----------- */

.dropdown_btn {
  position: relative;
  display: inline-block;
}
.dropdown {
  position: absolute;
  top: 160%;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  min-width: 180px;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}
.dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  transition: all 0.2s ease;
  margin-top: 10px;
  color: var(--color-white);
}
.dropdown a:hover {
  background: var(--color-green);
  color: var(--color-dark-blue);
  transform: scale(1.01);
}
/* ----------POPUP-------------- */
.pop-title{
    font-size: 2.5rem;
    color: var(--color-dark-blue);
}
.pop-text{
    font-size: 1.4rem;
    color: var(--color-dark-blue);
}
.pop-btn{
    font-size: 1.4rem !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
}

/* ================Common CSS================ */


/* ================Top Bar================ */


#top-bar{
    background-color: var(--color-dark-blue);
    position: relative;
}
.top-bar-inner{
    padding: 20px 0;
}
.top-bar-inner img{
    max-width: 120px;
}
.top-bar-inner nav{
    display: flex;
    justify-content: space-between;
}
.nav-left, .nav-right{
    display: flex;
    align-items: center;
}
.top-main-menu ul li a{
    display: inline-block;
    padding: 10px 20px;
    text-transform: capitalize;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}
.top-main-menu ul li a:not(:last-child){
    margin-right: 10px;
}
.top-main-menu ul li a:hover{
    background-color: rgba(65, 110, 240,0.2);
}
.hum-burger-menu{
    font-size: 3rem;
}
.mobile-menu ul{
    position: fixed;
    top: 65px;
    right: -100%;
    width: 90%;
    transition: 0.3s ease-in-out;
}
.mobile-menu ul li{
    margin: 5px 15px;
}
.mobile-menu ul li a{
    background-color: var(--color-blue);
    display: block;
    padding: 15px 30px;
    display: block;
    width: 100%;
    text-align: center;
}
.mobile-menu ul.show-mobile-menu{
    right: 0px !important;
}

/*  Sticky Navigation */
#top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-dark-blue);
  transition: all 0.3s ease;
}
.sticky {
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
/* ================Top Bar================ */

/* ================Hero================ */
#hero{
    background-color: var(--color-dark-blue);
}
.hero-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-inner{
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.hero-inner .hero-big h1{
    font-size: 5.5rem;
    line-height: 7rem;
    text-align: center;
}
.hero-inner .hero-ad{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-inner .hero-ad{
    margin-top: 20px;
}
.hero-inner .hero-ad p{
    display: flex;
    align-items: center;
}

.hero-inner .btn{
    margin-top: 50px;
    display: block;
    text-align: center;
}
.hero-inner .btn a{
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.8rem;
}
/* ================Hero================ */

/* ================HOW IT WORK================ */
#howItWork{
    background-color: var(--color-dark-blue);
}
.howItWork-inner{
    padding: 100px 0;
}
.howItWork-cards{
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 10px;

}
.howItWork-card{
    background-color: var(--color-light-blue);
    max-width: 320px;
    width: 100%;
    border-radius: 25px;
    padding: 25px;
}
.howItWork-card:nth-child(2){
    background-color: var(--color-blue);
}
.howItWork-card img{
    max-width: 100px;
    margin-bottom: 30px;
}
.howItWork-card h3{
    font-size: 2.5rem;
    font-weight: 400;
}
.howItWork-card h2{
    font-size: 3rem;
    margin: 10px 0;
}
.howItWork-inner .btn{
    margin-top: 50px;
    display: block;
    text-align: center;
}
.howItWork-inner .btn a{
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.8rem;
}

/* ================HOW IT WORK================ */


/* ================WHY CHOOSE IT================ */
#whyChoose{
    background-color: #ffffff;
    color: var(--color-dark-blue);
}
.whyChoose-inner{
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.whyChoose-ti{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0px 80px;
    margin: 80px 0;
}
.whyChoose-ti-text h2{
    font-size: 2.5rem;
}
.whyChoose-ti-text p{
    margin-top: 10px;
}
.whyChoose-ti-img img{
width: 100%;
}
/* ================WHY CHOOSE IT================ */


/* ================Capable Devices================ */
#capableDevices{
    color: var(--color-dark-blue);
    background-color: rgba(65, 110, 240,0.1);
}
.capableDevicesInner{
    padding: 100px 0;
}
.capableDevicesCards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 50px auto;
}
.capableDevicesCard {
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 25px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0px 0px 6px rgba(2, 26, 99, 0.1);
}
.capableDevicesCard h3{
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ================Capable Devices================ */


/* ================Quick Action================ */
#quickAction{
    background-color: var(--color-dark-blue);
}
.quickActionInner{
    padding: 100px 0;
}

.quickActionInner .btn{
    margin-top: 50px;
    width: 100%;
    text-align: center;
}
/* ================Quick Action================ */


/* ================FOOTER================ */
footer{
    background-color: var(--color-dark-blue);
}
.footer-inner{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* ================FOOTER================ */


/* ================SignUp================ */
.signupInner{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column  ;
    color: var(--color-dark-blue);
}

.loginForm-inner .submit-button,
.signupInner .submit-button{
    display: block;
    margin: 20px auto;
}
.signupInner form{
    max-width: 1000px;
    width: 100%;
}
/* ================SignUp================ */


/* ================LOGIN================ */
.loginForm-inner{
    color: var(--color-dark-blue);
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loginForm-inner form{
    max-width: 320px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
.loginFrom-Bottom{
    display: flex;
    flex-direction: column;
    max-width: 400px;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}
.loginFrom-Bottom p{}
.loginFrom-Bottom p a{
    text-decoration: underline;
    color: var(--color-dark-blue);
}

/* ================LOGIN================ */


/* ================DASHBOARD================ */
#welcome{
    background-color: var(--color-dark-blue);
}
.welcome-inner{
    /* color: var(--color-dark-blue); */
    padding: 100px 0;
}
.welcome-inner .section-title{}
.welcome-inner .section-title h2{
    font-size: 7rem;
}

#payment{
    width: 100vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
#payment .container{
    max-width: 600px;
    width: 100%;
}
.payment-inner{
    width: 100%;
    border-radius: 25px;
    padding: 50px;
    background-color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px, rgba(0, 0, 0, 0.12) 0px 1px 8px;

}
.payment-inner form button{
    display: block;
    margin: 30px auto 0px auto;
}
/* ================DASHBOARD================ */


/* ================TASK SECTION================ */
#taskDisplay{
    background-color: var(--color-dark-blue);
}
.taskDisplayInner{
    color: var(--color-dark-blue);
    padding: 50px 0;
}
.taskRowTitle{
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
}
.taskRowTitle h2{
    font-size: 3.5rem;
    line-height: 4rem;
    color: var(--color-white);
}
.taskRowTitle a{
    font-size: 2rem;
    color: var(--color-light-blue);
}
.taskDisplayRow{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px 20px;
}
.task-card{
    color: var(--color-dark-blue);
    cursor: pointer;
    background-color: var(--color-white);
    max-width: 220px;
    height: 330px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px, rgba(0, 0, 0, 0.12) 0px 1px 8px;

}
.task-card img{
    height: 150px;
    object-fit: cover;
}
.task-card span{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 12px 20px;
    border-radius: 20px;
    color: var(--color-green);
    font-weight: 800;
    background-color: var(--color-dark-blue);
}
.task-card h3{
    padding: 10px;
    font-size: 2rem;
    line-height: 2rem;
}
.task-card p{
    padding: 0 10px;
    font-size: 1.6rem;
}
.task-card div{
    margin: 10px;
    text-align: center;
}
.task-card b{
    padding: 12px 20px;
    display: inline-block;
    font-size: 1.4rem;
    border-radius: 25px;
    background-color: var(--color-light-blue);
}
/* ================TASK SECTION================ */


/* ================TASK================ */
#task{
    margin: 50px 0;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.task-inner{
    padding: 25px;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-dark-blue);
}
.taskTitle{
    display: flex;
    align-items: center;
    gap: 0px 30px;
    margin-bottom: 30px;
}
.taskTitle h2{
    font-size: 2.5rem;
}
.taskTitle .taskTitleImg{
    width: 80px;
    border-radius: 20px;
    overflow: hidden;
}
.taskDescription{
    font-size: 1.8rem;
}
.taskDescription h2{
    margin-bottom: 20px;
}
.taskDescription ul li{
    display: block;
    letter-spacing: 0.5px;
}
.taskDescription ul li:not(:last-child){
    margin-bottom: 15px;
}
.task-inner .btn{
    margin-right: 20px;
    display: block;
    text-align: center;
}
.task-inner form{
    margin-top: 30px;
}
/* ===== Animated Upload Box ===== */
.upload-box {
  text-align: center;
  background: var(--color-white);
  border: 2px dashed var(--color-blue);
  border-radius: 20px;
  padding: 20px 10px;
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.upload-box:hover {
  border-color: var(--color-green);
}
.upload-box input[type="file"] {
  display: none;
}
.upload-label {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.upload-label:hover {
  background-color: var(--color-light-blue);
}
.upload-progress {
  width: 0%;
  height: 5px;
  background: var(--color-green);
  border-radius: 5px;
  margin-top: 20px;
  transition: width 0.4s ease;
}
.upload-status {
  margin-top: 15px;
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  opacity: 0.8;
}
.upload-box.uploading .upload-label {
  background: var(--color-light-blue);
  cursor: wait;
}
.upload-box.success {
  border-color: var(--color-green);
}
.upload-box.success .upload-label {
  background: var(--color-green);
  color: var(--color-dark-blue);
}
.upload-box.success .upload-status::before {
  content: "✅ ";
}

/* ================TASK================ */

/* ================WITHDRAW================ */
.withdraw-section {
    font-size: 1.8rem;
    min-height: 80vh;
    padding: 50px 0;
    background-color: var(--color-dark-blue);
    animation: fadeIn 1s ease-in-out;
    color: var(--color-dark-blue);
}
.withdraw-box, .history-box {
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    background-color: var(--color-white);
}
.withdraw-box .submit-button {
    margin-top: 20px;
}
.withdraw-box h2, .history-box h2 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.history-table {
    width: 100%;
    border-collapse: collapse;
}
.history-table th, .history-table td {
    border-bottom: 1px solid var(--color-dark-blue);
    padding: 10px;
    text-align: center;
}
.status.success {
    color: #28a745;
    font-weight: 600;
}
.status.pending {
    color: #ff9800;
    font-weight: 600;
}
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}
/* ================WITHDRAW================ */


/* Responsive css */
@media (max-width: 600px) {
    html{
        font-size: 8px;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    .howItWork-cards{
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        gap: 20px;
    }
    .capableDevicesCards {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        gap: 20px;
    }
    .whyChoose-ti,
    .whyChoose-it{
        gap: 0px 30px;
    }
    .formbold-input-flex {
        flex-direction: column;
    }
    .formbold-input-flex > div{
        width: 100%;
    }
    .margin-right {
    margin-right: 0px;
    }

}