* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
--drz-bkash-pink: #e2136e;
--drz-btn-red: #ff5252;
--drz-link-blue: #007bff;
--drz-bg-gray: #f4f7f6;
}

/* body {
    background-color: #ffffff;
} */

/* ================================= */
/* Login and Register page start */

.login-container {
    display: block;
    width: 92%;
    text-align: center;
    margin: 0 auto;
}

/* Logo Styling */
.logo img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 40px;
    margin-top: 3rem;
}

/* Input Group Styling */
.input-group {
    background-color: #1e2139; /* Dark blue/blackish color */
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.input-group i {
    color: #f39c12; /* Golden/Orange icon color */
    margin-right: 15px;
    font-size: 18px;
}

.input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #7f8c8d;
    font-size: 16px;
    width: 100%;
}

/* Buttons Styling */
.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn-login {
    background-color: #1ba8b9; /* Teal color from image */
    color: white;
}

.btn-login:hover {
    background-color: #148a99;
}

.btn-register {
    background-color: #fbc531; /* Yellow/Gold color from image */
    color: #333;
}

.btn-register:hover {
    background-color: #e1b12c;
}

/* Login and Register page end */
/* ================================= */


/* ================================= */
/* Font page start */

body {
  background-color: #e9efff;
  display: flex;
  justify-content: center;
}

.app-container {
  width: calc(100% - 32px);
  background: #e9efff;
  padding-bottom: 80px;
  position: relative;
  margin: 0 16px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  height: 44px;
  line-height: 44px;
  align-items: center;
}

.app_header_icon_01{
  font-size: 20px;
}

.app_header_icon_02{
  font-size: 20px;
}

.app-header span{
  font-size: 17px;
}

/* Slider */
.slider-wrapper {
    margin: 25px auto;
    width: 90%;
    height: 13rem;
    overflow: hidden;
    position: relative;
    background: #ccc; /* Image na asle ekhane color dekhabe */
}

#image-list {
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* transition: opacity 1s ease-in-out; */
    transition: all 1s;
    visibility: hidden;
}

/* Shudhu active image dekha jabe */
.home_slider_img_active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.home_slider_img_list{
    width: 100%;
    height: 100%;
    display: block;
}

/* Pagination Dots */
#circle {
    height: 20px;
    position: absolute;
    bottom: 35px;
    right: 25px;
    z-index: 20;
    display: flex;
    list-style: none;
}

.circle {
  width: 14px;
  height: 14px;
  border-radius: 10px;
  border: 2px solid white;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  margin: 5px; 
}

.circle.white {
    background: #fff;
}


/* Quick Actions */
.quick-actions {
  display: flex;
  justify-content: space-around;
  background: #fff;
  margin: 10px 0 10px 0;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
}
.action-item i {
  font-size: 24px;
  color: #555;
  margin-bottom: 5px;
}

.action_logo_aera{
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
}

/* --- Line Marquee --- */
.drz-marquee-box {
    margin: 16px 0 16px 0;
    height: 48px;
    background: #fff;
    border-radius: 8px;
    line-height: 48px;
    position: relative;
    padding: 0 0 0 15px;
    overflow: hidden;
}
.drz-marquee-inner { 
  display: flex; 
  align-items: center; 
}

.drz-speaker { 
  margin-right: 10px; 
}

.drz-speaker i{
  color: #2eaf8a !important;
  font-size: 18px; 
}

.drz-scroll-area { 
    width: calc(100% - 30px);
    overflow: hidden;
    white-space: nowrap;
    margin: 0 12px 0 0;
}

.drz-scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: drz-scroll-left 30s 0s linear infinite both;
    font-size: 15px !important;
    font-weight: 400;
    color: #000 !important;
}
@keyframes drz-scroll-left {
    0% { transform: translateX(0); }
    100% {
       -webkit-transform: translate3d(-100%, 0, 0);
       transform: translate3d(-100%, 0, 0);
    }
}

/* Balance Card */
.balance-card {
  margin: 10px 0 10px 0;
  padding: 20px;
  border-radius: 15px;
  height: 148px;
  background: url(../img/balanceBG.683da52a.png) no-repeat;
  background-size: 100% 100%;
}
.balance-card h2 {
  margin: 10px 0;
  font-size: 28px;
}
.balance-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

.status_bl_today{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-top: 5px;
    background-color: #ff3a3a;
}

.status_bl_today_text{
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 13px;
    line-height: 30px;
}

.status_bl_today_text_01{
    font-size: 12px;
    font-family: Rubik-Regular, Rubik;
    font-weight: 400;
    color: #999;
    vertical-align: middle;
    height: 20px;
    line-height: 20px;
}

.balance-today{
  display: flex;
}

.status_bl_finance{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-top: 5px;
    background-color: #ffdd63;
}

.status_bl_finance_text{
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 13px;
    line-height: 30px;
}

.status_bl_finance_text_01{
    font-size: 12px;
    font-family: Rubik-Regular, Rubik;
    font-weight: 400;
    color: #999;
    vertical-align: middle;
    height: 20px;
    line-height: 20px;
}

.balance-finance{
  display: flex;
}

.status_bl_freeze{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 5px;
    margin-top: 5px;
    background-color: silver;
}

.status_bl_freeze_text{
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding-left: 13px;
    line-height: 30px;
}

.status_bl_freeze_text_01{
    font-size: 12px;
    font-family: Rubik-Regular, Rubik;
    font-weight: 400;
    color: #999;
    vertical-align: middle;
    height: 20px;
    line-height: 20px;
}

.balance-freeze{
  display: flex;
}


/* Marquee Information */
.info-section {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 40px;
}

.info-section h3 {
    height: 44px;
    line-height: 44px;
    font-size: 17px;
    font-family: Rubik-Medium, Rubik;
    font-weight: 500;
    color: #000;
}

.info-content{
    height: 576px;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

#marquee {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 0;
    will-change: transform;
}

.marquee-container {
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 16px 0 15px;
}
.marquee-content {
  position: absolute;
  width: calc(100% - 30px);
}
.info-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 15px 0 15px 47px;
  position: relative;
}

.info-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0px;
    height: 1px;
    width: 85%;
    background-color: #eeeff2;
}

.news_short_title_aera{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news_short_des_aera_01{
    font-family: Rubik-Medium, Rubik;
    font-weight: 700;
    color: #000;
    font-size: 18px;
}

.news_short_des_aera_02{
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.price {
  width: 100px;
  color: #f39c12;
  font-weight: bold;
}

/* Main Container */
.contentValidity {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Individual Card Styling */
.contentValidity-text {
    display: inline-block;
    width: 164px;
    height: 82px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Icon Container */
.content-img {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.contentValidity .contentValidity-text:nth-of-type(1) .content-img {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAACvklEQVR4Xu2av2/TQBTH3zcurYRgQLCA1LESIJut7EwsMCH+g7RCIgj+BFY2AmkHYozo2IgJVMTGQodWYigRKqpgqcQPdahQKiSUJg+ZqMENJXf1nWNsv4z23fm9z33f9+4cgwr+Q8HzJwEgCig4ASmBggtATDATJTDTrFxjJvdfagWoWXdrz+KoORMAymuVNoHGhiTY9r3aeH4BvKuwKjnfq8WazFidVMHYvl8WAKKA9EpA5cCh3Bl4+3Hr5MvXl+7u2pZ/OF6qJaDhwHs5fwXTQmfcCYKz1Q82QaQLQMOABpJlAG8YHHznbqPhzu+YwsgagD/5Ai0iLIIpqHsPluOCyC6A/RmvEyEgKi34XvXbYWDkBcBezm0ClrrEwaetU0s6xpk3ANHJ1zLOPAPowQAxMS0zcTABXpwfMM78A4hqAmiBqUFjeFw/1zPOYgEYME4GPQHTPZVpJnYY0qGvCm4U9wVAUsdhUcDht8KjUPxfz0C4yYoYp24QyhciWVFAJOH1nnE6T3V2nHkE0N9xgjioe3M3hqkhzwB+v6rwvVqpyABItTzmXQECQBSg2CDFLoGdH5/pZ7u1z18mjhynY0fP9K/ZaqO7ph/ULjEFbGy+CE124Jmgqckr/Wu22vynAJ4fGNfU5NUIADttBIABgQRLwM7sbmyqxzHIP7llUCdwW20EgAEBKYGk9gG25K0zjoEAxAOkBKQEhn87FPssoFO7ttqIBxgQSNADCn4YsnXU1RnHQADJLYMmQY2yb2IlMMokTJ5lDmDt5i4BjkkQqfVl7vgX5oZ9Y6z+XL7cvLVCzNOpJWHyYGDVdx9eNPpfYKZ5e5q584qITpjEkkLfbcC5XHerq0YAws6z7++c7nLnOnU5GxBK2C7BaTw6f/+LCrxyJ6gaIOv3BUDWZ9A0flGAKcGs9xcFZH0GTeP/BZrE6lDg4s0ZAAAAAElFTkSuQmCC) no-repeat;
    background-size: 100% 100%;
}

.contentValidity .contentValidity-text:nth-of-type(2) .content-img {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAFl0lEQVR4Xu2aW2wUVRjH/2cu227vLbRyMQVptyhYg5cIAn2AbEyIPJiQRjDxxvaCtFsKUiHoAzHxRUUhSEJ88I6gQLExlhdMTQjFFiOmF1CEKCKGttALrOxud+d8Zopb6NJlZ2ZnK93OPO6e8/2//2++c+bMOcMwwS82wf3DAmBVwAQnYA2BCV4A1iQ45kPA/Zs7yTtIixiHk8CcDrlnXrboPcsYr+8ne0trITXuZ/uVsarM+AMgMNcp9zzG4GQKOQlYDCAlZLBI7sYUyTPsV4EwGCTxBwVoHOC2pk2z97fGE0ZcAKw5XTszoHAnI+4EsBRAbiQT4QDC2wVIvMYZDvu5dMwn2Rs2zvrivJlATAHg6nTlCGRfAgYnEZwgFGpNMhqAEXEYyM+lLkHAwatK0o8DzFa/1bHnqlat0doZAhA+jgF6BIBoJBFdAMIEOBj3c/GMINDBa2RvOW5g/tANoKy9+kMQVoLBbsRweJ9YAITHUucPL7NtW1tQv0VrbkYAkNbgWtqZCUDV85F8vsLRMFOLttrGAqCVVKhdWXv1mFZAijgZJfe8ihRp8m2pBrgXLT270OM/NfxfwlXA7IzleDz35Yj36dzVI2jueS9xAdjFHCzM24BUadKoFdB6eTeu+M8kLgC9QzThhoAFQCcBqwKsdYC1ELJWgtZS2HoXSMCXoVlpTkxKKkB7/z74lIGID8eEewzahDQ8kbsO+WkLh0x39B3Ayd6PJgaAvOS5WJxXh1T5xpYiEUfTpTdw8fqJxAbAIKA4exWKs5+BwG7stKnmj3fvwDnPkTuuDcf9EEiRclGSV4c8+9xho1rN39U7QllSJoKkwKPcPANQE751Syw/dREW5NYgSUwzZP6uBTAjOR+bC9ZDIQXNfS042nccF3x/DZlUAUyXA3hsUjmKMpeNKG89dz7U8a4cAvPSi1E1o2KEuT+8f+JobzNY8DSWT3Uhy5Yfs/mxqoB/bj3a0vq2+vy0VSjJufEoi3YZufOhmF6ST1U6Gm5OIFHEjOwKXwBwbzQT4f8zMDw3bWVUCLGY/68CmiocDepxnKZLN4DyDvcxItJ2K8NSiAYhVvOqnAJx50uF39Rocm/kXMDVWb2dcazTKqC1Eswwr2oN8OQad1H9Tq35GaiA6hVEOKBVYLR24ZVglnkwUHcwc87G2Xt/0ZqfbgClzevtGemBSwzI0CoSCULplKcxP7MYbb2f4HdPUyzhhvr6ST5d7miYoyeQbgBq8PL2qt0EVqlHKFJbM88GrzNb7ZqCr3foycsQANdPVTOYzH4FkKRHbLS2ZgEYJLFHKZw6vZJ9ENCTkyEAqkBZp/stcKrTIxZPAB6WtHptwaHI78kREjUMYOgjCR9aAXooFghmVICPy40VRQ1PGcnDMABVrKKt+n4u0FEQu/3oVmM2sQIIQDjbFchZsOWBT69olBzRLCYAQ0OhreZRMP4dgEwjCcQCIAjxQq+QXhLLh1MxAxh6KvxcNZeL7BADHHohGAXgh3iiy5u64vXiferS3PBlCgBV/cWTtVmSFHwXDC+AIGjNSC8ABYx7ubyr+2L/hq1Lvg9q1YnUzjQAIYGKzqr5nIQ3AVoKiv4JjlYABNAg5MP9SN5UV/hlR6zGQ/1NBxAK7Op0P8yINoJQCkA2uhAKEgsGIH3Wh5Rtmx17O80yHncAwxXRUZNPnNcSozKApYcbiFQBARI9QQjvXxZTtr82a2+X2cbHDEBISJ0jZDlQSZzVgGFa6PdwAIMk/T0oSG93Cxm7t973sS9exsccQEiwtKPUlsWnPEugV8DwoApgquwhL5farkN+p9Zx8PN4m741ftzmAC0mVrdVLytKvvKkDcq3G4q+uvOGv5aABtr8rwAM5Gt6FwuA6UjHWUCrAsbZDTM9XasCTEc6zgJO+Ar4F4ciyV84RT3fAAAAAElFTkSuQmCC) no-repeat;
    background-size: 100% 100%;
}

.contentValidity .contentValidity-text:nth-of-type(3) .content-img {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAB0klEQVR4Xu1asUoDQRB9ixGLQBArLbS18QPs/AYbz8JaLCxTCAZJK1hoIYilfoDfYOcH2Fjb2EUiguZOTyIEz3BmdqND5tyXepjMvn3z3t7uOET+c5GvHwSADIgcAbZA5ASgCAa3QPMir7884SzLsPmeozZg0NKCCS51HHCeOhy0N1zPp6JgAHZP88teiq3h5EYA+CzLAYf7idtTAWDnJE+LO2+MAYNyOq3EzakAsH2c52WJLTGgX18rcV7s9goqLpgAkAFhLbC2AqwuA7Upn44cHZO9ATd3wPWtnMtMCzTXgZlpuWDfiNcUOLqSo80AED0D5L3SiTDDAJ3lyVkJgJVzwDgaEKL2P3HBDAPGdQFftTcPQPQMkOVKJ8JMC+gsT85KAKrgAn+h9uZFUHKB36q9eQBGuUAUDJDlSieCImhFBHX2V85KBpABvBX2uvH2CuK1eAEBvgvwXSDsXUA2LJ0I2iBtkDbo5XBeQbRB2uAXAjwH8BzAcwBnhDgkVYIAp8SUJ0Ufu0D3+TvyjTow2yj/lvh33wL3D8Cw/PYPu4vzkQBghgHRj8pGPywd/bi8zv3N5LIGfw5PrlSdfyYAOrhWJysZUJ290qmUDNDBtTpZPwDPbBxQ/EVk4gAAAABJRU5ErkJggg==) no-repeat;
    background-size: 100% 100%;
}

.contentValidity .contentValidity-text:nth-of-type(4) .content-img {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEp0lEQVR4Xu2aS2yUVRTHf2em9iEIxTcY46IuNPHRmKhRTExIjIaWFtAF6MaoM1OMdKaoMbrqSmMUOlONdKZq3CgutKWlJRoTEhPR+IjBR4ILWRgjKD4oSO2Ddo75SqgVC+39zp1K2u9u5/z/53/+37n3m7lnhAW+ZIHXT2RA1AEL3IFoCyzwBogOwTnbAsmX9HoZZ7UKK1GuBS4FFgGDwGGE/aLs1Ti7C5vlm7nqzJIa0NqqsYPL2IDyOHCTQ1FfImxdcYS3W1ul6IBzDi2ZAYms3ixQAGqdVf0D2CdxEvnN8oWB46zQkhiQyukWLfI8QplZuDImMZ7Kp2WbmWsaAr8GqEoyRzvwWAnEvlxI04yI+uT2akAqp1tV2eJT4FQuEbbl0xKcJ96WNwMSbfqQCK95U3YGIlUe7myR133l8WJAsl1rKLIPWOxL2Fl4jhOjttAsB3zk8mJAIqu7BOp9CJoNh0JfZ0bWzCZ2phizAak2vU2Fj2dK5PtzUW7Pt8gnVl6zAcmsvgPcaxUSAv9uISP3hcD9C2Iy4ME2rS4XfgYqrEJC4EdGlcvfaJGBENhJiMmAVLtu1CJvWQRYsBLj/nyz7DBxWMCpnG5XpcnCYcGK0JFPyyYThwWcyOpHAistHBaswt7OjNxh4TBtgWRWDwLLLQKM2EOFjKywcFgN+AuosggwYocKGTnfwmE14AR4+MUXvoKxQkbOCw/HdiWWzOoRoNoiwIgdKGRkmYXD2gH7gWssAozY7woZCa7XQi+TAamc7lSlMXR2I1CEnnxa1lpoTAYk2vRpEZ61CLBgVXmms0Wes3DYDDh57/eZRYAFq3BLZ0Y+t3CYDAgSJ7P6PVBjERESe6CQkatDYidhZgNSOX1ClResQlzxIjyZT8uLrrjT480GPNCuSxYVCW5nLnYRM1oFYxVQNgLlQy7IidjfBmPUvNksx5yRpwHMBgR8qZw2qbJ9JjHFGAwvgeGlMD7l60v8BFQehcpjEJvFGESETfm0dMyUbzafezEgmAD9VM0HAqumSzpeBkPVJ4vX2JllBTOgwISqAYiPTR+nsOeKAe7yNTHyYsDEYdimyxE+Ba48JT1o86GlMBpMAF0yKZQPQtXR/2yPH1FuLbTIodk83dnEuMiaka8pp9eNw56RxVwSPPFgj1tXcEYEHVFxnF/jsKojLd9aOafivRnQ0KOXxcpokiKPIhOTX79LOawxXimO0dHbKL/4IjcbsLZfa2NKWmHjHN0NjgjsKAq5nXUSzCJMK5QBraqxr3azBiWDcCfqtMNNgifBgqJ8iJC9cTW7WiXcGN3ZgPX9epVCL8oNfirxwCJ8LdDQVSc/uLK5G9Cn7ync7Zqo1PEC73fVyz2ueZwNWNenwfe2StdEcxA/3F0vztdzYQzwOp/3aUx3vTjX4wxY16eRAT6fmk+uqAOiLRCdAc5nmjMgOgSjt0D0GvwduNDn68sT1x/d9XKRK5f7GdCvnSiPuCYqebzwanedJFzzOBvQ0KMXxONkgfX/82D0VK3Bf4S6xsfJ9DbKnyU3wDXBuR7v3AHnekGu+iIDXB2bb/FRB8y3J+paT9QBro7Nt/i/Af3RX1Bt6jeoAAAAAElFTkSuQmCC) no-repeat;
    background-size: 100% 100%;
}



/* Text Styling */
.content-text {
    position: absolute;
    top: 50%;
    left: 65px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
    font-family: Gilroy-Bold, Gilroy;
    font-weight: 700;
    color: #000;
}


/* Partner Grid */

.partners h3{
  font-size: 17px;
  font-family: Rubik-Medium, Rubik;
  font-weight: 500;
  color: #000;
  height: 44px;
  line-height: 44px;
}

.partner-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.partner-grid img {
    display: inline-block;
    width: 164px;
    height: 82px;
    margin-bottom: 10px;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid #ddd;
  -webkit-filter: drop-shadow(0 0 4px #bbb);
  filter: drop-shadow(0 0 4px #bbb);
}
.nav-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    padding-top: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-family: Rubik-Medium, Rubik;
    font-weight: 500;
    color: #000;
}

.nav-item_active {
  color: #3498db !important;
}

.nav-item i{
  font-size: 20px;
  color: #a19fa8;
}

.nav-item p{
  font-size: 14px;
}

.nav-center {
  background: #3498db;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: -30px;
  border: 4px solid #e9efff;
}

.nav-center i{
  color: #fff;
}

.link_aera_op_01{
    text-decoration: none!important;
}

/* Font page end */
/* ================================= */

/* ================================= */

/* recharge page start */

/* Container Background */
.drz-rc-container {
    background-color: #fff;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: #333;
    padding-bottom: 80px;
    width: 100%;
}

/* Blue Header Section */
.drz-rc-header {
    background-color: #3b7ddd;
    padding: 0px 20px 0px 20px;
    color: #fff;
}

.drz-rc-bg{
  width: 100%;
  height: 44px;
}


.drz-rc-top-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3b7ddd;
    position: fixed;
    top: 0;
    left: 0;
    height: 44px;
    padding: 0 20px;
    z-index: 20;
    color: #fff;
}

.drz-rc-back-icon { font-size: 18px; cursor: pointer; }
.drz-rc-title { font-weight: bold; font-size: 16px; text-transform: lowercase; }

.drz-rc-balance-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 56px 0;
}

.drz-rc-amount { font-size: 32px; margin: 0; }
.drz-rc-label { 
  margin: 0; 
  font-size: 16px; 
  font-weight: 700;
  opacity: 0.9; 
}


/* White Body Section */

.drz-rc-body_ss {
    width: 100%;
    background-color: #3b7ddd;
    height: 20px;
}

.drz-rc-body {
    margin-top: -20px;
    background: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px;
}

/* Input Styles */
.drz-rc-input-area { text-align: center; margin-bottom: 25px; }

.drz-rc-input-group {
  /* display: block; */
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drz-rc-currency-symbol { font-size: 24px; font-weight: bold; margin-right: 5px; }
.drz-rc-main-input {
    /* display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px; */
    
    font-family: Rubik-Bold, Rubik;
    font-weight: 700;
    color: #39324b;
    display: inline-block;
    height: 100%;
    width: 120px;
    text-align: left;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 6px 12px;
    background: #fff;
    outline: none;

    /* border: none;
    outline: none;
    font-size: 20px;
    width: 150px; */
}
.drz-rc-min-hint { font-size: 10px; font-weight: bold; margin-top: 10px; }

/* Quick Selection Grid */
.drz-rc-section-title { font-size: 12px; color: #3b7ddd; margin-bottom: 15px; }
.drz-rc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}
.drz-rc-grid-btn {
    background: #eee;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

/* Payment Methods List */
.drz-rc-methods { margin-bottom: 20px; }
.drz-rc-method-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}
.drz-rc-m-icon { width: 20px; height: 20px; margin-right: 15px; }
.drz-rc-m-text { font-size: 11px; flex: 1; color: #555; }
.drz-rc-radio { transform: scale(1.2); }

/* Confirm Button */
.drz-rc-confirm-btn {
    width: 100%;
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: lowercase;
}

/* Disclaimer Text */
.drz-rc-disclaimer {
    font-size: 15px;
    font-family: sans-serif;
    color: #636f85;
    line-height: 20px;
    font-weight: bold;
}

.pay_model{
    width: 100%;
    height: 100vh;
    font-family: 'Arial', sans-serif; 
    background-color: #0f1010cc;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 20px; 
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25;
}

.pay_model_row{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    overflow-y: scroll;
}

.drz-pay-header__title { 
    font-size: 28px; 
    margin: 0; 
    color:#222; 
    font-weight: bold; 
}

.drz-pay-header__time { 
    color: #777; 
    font-size: 14px; 
    margin-top: 5px; 
}

/* Main Pink Container */
.drz-main-card { 
    width: 100%;  
    background-color: var(--drz-bkash-pink); 
    border-radius: 8px; 
    padding: 30px; 
    color: white; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.drz-main-card__text { 
    font-size: 15px; 
    margin-bottom: 12px; 
    line-height: 1.5; 
}

.drz-main-card__text--bold { 
    font-weight: bold; 
    text-transform: uppercase; 
}

/* White Info Section */
.drz-info-wrapper { 
    background: white; 
    border-radius: 8px; 
    padding: 15px 25px; 
    color: #333; 
    margin: 20px 0; 
}

.drz-info-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 0; 
    border-bottom: 1px solid #f0f0f0; 
}

.drz-info-item:last-child { border-bottom: none; }
.drz-info-item__label { font-size: 14px; color: #555; }
.drz-info-item__value { font-weight: bold; display: flex; align-items: center; font-size: 16px; }
.drz-info-item__icon { margin-left: 10px; color: var(--drz-link-blue); cursor: pointer; transition: 0.2s; }
.drz-info-item__icon:hover { opacity: 0.7; }

/* Form Controls */
.drz-pay-form { margin-top: 25px; }
.drz-pay-form__label { display: block; margin-bottom: 10px; font-size: 14px; color: white; }
.drz-pay-form__input { width: 100%; padding: 14px; border: none; border-radius: 6px; font-size: 16px; margin-bottom:
15px; outline: none; box-sizing: border-box; }

.drz-pay-form__btn {
     width: 100%; 
     padding: 15px; 
     background-color: #fff; 
     color: #222; 
     border: none;
     border-radius: 6px; 
     font-size: 16px; 
     font-weight: bold; 
     cursor: pointer; 
     transition: 0.3s; 
     margin-top: 15px;
}

.drz-pay-form__btn:hover { 
    transform: translateY(-1px); 
}

/* Bottom Guide Section */
.drz-guide-box { 
    width: 100%; 
    background: white; 
    margin-top: 20px; 
    padding: 25px; 
    border-radius: 8px;
}

.drz-guide-box__title { 
    color: var(--drz-link-blue); 
    font-weight: bold; 
    font-size: 16px; 
    border-bottom: 1px solid #eee;
    padding-bottom: 10px; 
    margin-bottom: 20px; 
}

.drz-guide-step { display: flex; margin-bottom: 20px; }
.drz-guide-step__num { color: var(--drz-link-blue); font-weight: bold; margin-right: 12px; font-size: 16px; }
.drz-guide-step__title { font-size: 15px; margin: 0 0 5px 0; color: #444; font-weight: bold; }
.drz-guide-step__desc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

.drz-pay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
    padding: 0 10px;
}

.drz-pay-header__back {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    width: 40px;
}

.drz-pay-header__content {
    text-align: center;
    flex-grow: 1;
}

.drz-pay-header__title {
    font-size: 20px;
    margin: 0;
    color: #333;
    font-weight: bold;
}

.drz-pay-header__time {
    color: #777;
    font-size: 13px;
    margin-top: 2px;
}

.drz-pay-header__spacer {
    width: 40px; 
}

/* মডাল ব্যাকগ্রাউন্ড */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* মডাল যখন একটিভ হবে */
.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* মডাল বক্স */
.custom-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.custom-modal-overlay.active .custom-modal-content {
    transform: translateY(0);
}

/* স্টারের ভেতর টেক্সট পজিশন */
.star-container {
    position: relative;
    display: inline-block;
    color: #1890ff;
    margin-bottom: 20px;
}

.star-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.1;
}

/* বাটন স্টাইল */
.custom-back-btn {
    background: #1890ff;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.custom-back-btn:hover {
    background: #000;
}

/* recharge page end */

/* ================================= */

/* ================================= */

/*Obtain Page start*/

.drz-obtain-page {
    background-color: #f4f7fe;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    width: 100%;
    margin-bottom: 60px;
}

/* Header */
.drz-top-header {
    background: #0097ff;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: white;
}

.drz-back-btn{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.drz-empty-row_adjected{
    height: 60px;
    background: #0097ff;
    color: rgb(255, 255, 255);
}

/* Stats Card */
.drz-stats-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    padding: 0 15px 15px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: -44px;
}
.drz-stats-head { 
    height: 50px;
    margin-bottom: 10px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.drz-brand { 
    font-weight: bold; 
    color: #333; 
}

.drz-badge { 
    display: block;
    height: fit-content;
    background: #fe7f40;
    border-radius: 4px;
    padding: 5px;
    font-family: DINAlternate-Bold, DINAlternate;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    font-size: 14px;
}

.drz-stats-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
}

.drz-stat-item{
    margin-bottom: 25px;
}

.drz-stat-item p { font-size: 11px; color: #888; margin-bottom: 5px; }

.drz-stat-item h3 { 
    font-size: 16px; 
    margin: 0; 
    color: #333; 
    font-weight: 500;
}

.top_obtain_ss_01{
    font-size: 26px!important; 
}

.drz-orange { 
    color: #ff7e4d !important; 
}

/* Marquee Section */
.drz-notice-box {
    background: white;
    margin: 0 15px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 10px;
}
.drz-speaker { 
    margin-right: 20px; 
}

.drz-marquee-window { flex: 1; height: 100%; overflow: hidden; position: relative; }
#drz-marquee-list { position: absolute; width: 100%; top: 0; }

.drz-m-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px; /* Single line height */
    font-size: 11px;
    color: #999;
}
.drz-m-comm { color: #8c8cff; }

/* Buttons */
.drz-action-area { padding: 15px; }
.drz-btn-primary {
    height: 48px;
    width: 100%; 
    background: #007aff; 
    color: white; 
    border: none;
    padding: 12px; 
    border-radius: 6px; 
    font-weight: bold; 
    margin-bottom: 10px;
}
.drz-btn-secondary {
    height: 48px;
    width: 100%;
    background: #dcdcdc; 
    color: #fff; 
    border: none;
    padding: 12px; 
    border-radius: 6px; 
    font-weight: bold;
}

/* Hint */
.drz-hint-card { 
    padding: 15px; 
    font-size: 12px; 
    color: #aaa; 
}

.drz-hint-card h4 { 
    margin-bottom: 15px; 
    color: #666; 
}

.drz-hint-card p { 
    font-size: 14px;
    font-family: Gilroy-Medium, Gilroy;
    font-weight: 500;
    color: #a7aab6;
    line-height: 20px;
    letter-spacing: 0.5px;
}


.drz-center-sms-text{
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    justify-content: center;
    z-index: 999999;
    flex-direction: column;
    align-items: center;
}

.drz-center-sms-text-alert-success{
    width: 120px;
    height: 50px;
    background-color: #00000096;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drz-rec-empty-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.txt-pending{
    height: 25px !important;
    background-color: #00000096;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
}

.txt-success{
    height: 25px !important;
    background-color: #00000096;
    color: #fff;
    font-size: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
}

/*Obtain Page end*/

/* ================================= */



/* ================================= */

/*Task Page start*/

/* Page Main Style */
.drz-rec-page {
    width: 100%;
    background-color: #f4f7fe;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* Navigation Header */
.drz-rec-header {
    height: 50px;
    background: #367be2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #ffffff;
}
.drz-rec-back { color: white; text-decoration: none; font-size: 18px; }
.drz-rec-title { font-size: 17px; font-weight: 500; }

/* Tabbar Design */
.drz-rec-tabbar {
    display: flex;
    background: #367be2;
    padding: 10px 25px 20px 25px;
    justify-content: space-between;
}
.drz-rec-tab-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: bold;
}

/* Active Tab Style (Highlighted like image) */
.drz-rec-tab-item.active {
    background: #ffffff;
    color: #367be2;
}

/* Content Body & Empty State */
.drz-rec-content-body {
    /* padding-top: 80px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-bottom: 53px;
    padding-left: 10px;
    padding-right: 10px;
}

.drz-rec-empty-img img {
    width: 250px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.drz-rec-empty-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Snap Up Now Button (Gradient like image) */
.drz-rec-snap-btn {
    display: inline-block;
    padding: 10px 40px;
    background: linear-gradient(to right, #40a0ff, #26c4ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(38, 196, 255, 0.3);
}

.drz-rec-snap-btn:active {
    transform: scale(0.98);
}

/*Task Page end*/

/* ================================= */


/* ================================= */

/* Account Page start */

.drz-acc-container {
    width: 100%;
    background-color: #f4f7fe;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    padding-bottom: 80px;
}

/* Header Navigation */
.drz-acc-header {
    height: 50px;
    background: #edf3fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}
.drz-acc-back { color: #333; text-decoration: none; font-size: 20px; }
.drz-acc-title { font-size: 16px; font-weight: bold; color: #333; }
.drz-acc-exit { color: #333; text-decoration: none; font-size: 14px; font-weight: bold; }

/* Profile Section */
.drz-acc-profile {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    position: relative;
}
.drz-acc-avatar {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-right: 15px;
}
.drz-acc-phone { font-size: 18px; margin: 0; color: #1a2a4e; }
.drz-acc-invite { font-size: 12px; color: #333; margin-top: 5px; font-weight: bold; }
.drz-acc-copy-btn {
    position: absolute;
    right: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    cursor: pointer;
}

/* Balance Card (Gradient) */
.drz-acc-card {
    margin: 0 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.drz-acc-actions{
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    padding-right: 16px;
}

.drz-acc_ban_aera{
    height: 146px;
    width: 100%;
    background: url(../img/balanceBG.683da52a___1.png) 50% no-repeat;
    background-size: cover;
    border-radius: 11px;
    border: 2px solid #fff;
    display: flex;
    justify-content: space-between;
}


.drz-acc-label { font-size: 14px; color: #333; margin: 0; font-weight: bold; }
.drz-acc-amount { 
    font-size: 26px; 
    margin: 5px 0 0; 
    color: #1a2a4e; 
}

.drz-acc-btn-withdraw {
    background: #c3d9ff;
    color: #4385ff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
    border: 1px solid #fff;
}
.drz-acc-btn-recharge {
    background: #3b7ddd;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.drz-acc-balance-info{
    margin-left: 20px;
    margin-top: 17px;
}

/* Quick Stats Grid */
.drz-acc-stats-grid {
    padding: 16px 10px;
    background: #fff;
    margin: 0 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;  
}

.drz-acc-stat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drz-acc-stat-item img { 
    width: 32px;
    margin-bottom: 5px; 
}

.drz-acc-stat-item p { 
    font-size: 14px; 
    color: #555; 
    margin: 2px 0; 
}

.drz-acc-stat-item span {
     font-size: 16px; 
     font-weight: bold; 
     color: #000; 
     margin-top: 5px;
}

.drz-acc-service {
    background: #fff;
    margin: 0 15px;
    border-radius: 12px;
    padding: 15px;
}
.drz-acc-service-title { 
    font-size: 14px; 
    font-weight: bold; 
    margin-bottom: 20px; 
    color: #000; 
}

.drz-acc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 10px;
    text-align: center;
}

.drz-acc-srv-item { 
    text-decoration: none; 
    display: block; 
}

.drz-acc-srv-item img { 
    width: 32px; 
    height: 32px; 
    margin-bottom: 8px; 
}

.drz-acc-srv-item span { 
    display: block; 
    font-size: 14px; 
    color: #333; 
    line-height: 1.2; 
}

.drz-cpy-modal-overlay {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.drz-cpy-modal-box {
    background-color: #ffffff;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 320px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: drzCpyFadeIn 0.3s ease-out;
}

@keyframes drzCpyFadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.drz-cpy-title {
    margin: 25px 0 10px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.drz-cpy-body {
    padding: 10px 25px 25px;
    font-size: 13px;
    color: #777;
    word-break: break-all;
    line-height: 1.6;
}

.drz-cpy-footer {
    display: flex;
    border-top: 1px solid #f0f0f0;
}

.drz-cpy-footer button {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.drz-cpy-btn-cancel {
    border-right: 1px solid #f0f0f0 !important;
    color: #666;
}

.drz-cpy-btn-confirm {
    color: #007bff;
    font-weight: 700;
}

.drz-cpy-footer button:active {
    background-color: #f7f7f7;
}

.about_main_con_aaa{
    padding: 0 15px;
}

.about_pp_title{
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

.about_pp_date{
    color: #999;
    font-size: 13px;
    margin: 15px 0;
}

.about_pp_content{
    font-size: 14px;
}


.drz-info-container {
    width: 100%;
    background-color: #f4f7fe;
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: 15px;
}

.drz-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 2px solid #eeeff2;
}

.drz-info-label {
    font-size: 15px;
    color: #333333;
    text-transform: capitalize;
    font-family: sans-serif;
}

.drz-info-value {
    font-size: 15px;
    color: #666666;
    font-family: sans-serif;
    letter-spacing: 0.5px;
}

.drz-info-row:active {
    background-color: #fafafa;
}

.drz-acc-exit-fixed-button{
    width: calc(100% - 30px);
    padding: 10px 0;
    border: 1px solid #dedede;
    color: #666;
    text-align: center;
    border-radius: 20px;
    position: fixed;
    bottom: 80px;
    left: 15px;
    text-decoration: none;
}

/* Account Page end */

/* ================================= */


/* ================================= */

/*Order page start*/

.od-header { 
    background: #fff; 
    padding: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    border-bottom: 1px solid #eee; 
}

.od-header .od-back-btn { 
    position: absolute; 
    left: 15px; 
    font-size: 20px; 
    color: #666; 
    cursor: pointer; 
}

.od-header h3 { 
    font-size: 18px; 
    font-weight: bold; 
    color: #222; 
    margin: 0;
    text-transform: capitalize;
}

/* Container & Cards */
.od-container { 
    padding: 15px; 
}

.od-card { 
    background: #fff; 
    border-radius: 15px; 
    padding: 15px; 
    margin-bottom: 12px; 
    border: 1px solid #f0f0f0; 
}

.od-address-card { 
    height: 80px; 
    display: flex; 
    justify-content: flex-end; 
    align-items: flex-end; 
    background: #fffaf5; 
}

.od-edit-icon { 
    color: #888; 
    font-size: 18px; 
    margin: 5px; 
}

.od-status-bar { 
    color: #555; 
    font-size: 15px; 
    font-weight: 500; 
}

.od-waiting-box { 
    color: #444; 
    font-size: 13px; 
    line-height: 1.5; 
    background: #fff; 
}

/* Product Card */
.od-product-section { 
    display: flex; 
    gap: 15px; 
    position: relative; 
}

.od-shop-name { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: bold; 
    font-size: 14px; 
    margin-bottom: 10px; 
    color: #222;
}

.od-product-img { 
    width: 80px; 
    height: 80px; 
    border-radius: 5px; 
    object-fit: cover; 
}

.od-product-info { 
    flex: 1; 
}

.od-order-id { 
    font-size: 14px; 
    font-weight: bold; 
    margin-bottom: 5px; 
    color: #222;
}

.od-finish-badge { 
    background: #666; 
    color: #fff; 
    padding: 2px 8px; 
    font-size: 12px; 
    border-radius: 3px; 
    display: inline-block; 
    margin-bottom: 5px; 
}

.od-price { 
    font-weight: bold; 
    font-size: 15px; 
    display: block; 
    color: #222;
}

.od-guarantee { 
    color: #e74c3c; 
    background: #fdf2f2; 
    font-size: 11px; 
    padding: 2px 6px; 
    border: 1px solid #fadbd8; 
    border-radius: 3px; 
    display: inline-block; 
    margin-top: 5px; 
}

.od-qty { 
    position: absolute; 
    right: 0; 
    bottom: 30px; 
    color: #888; 
    font-size: 14px; 
}

/* Info List */
.od-info-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 12px; 
    font-size: 14px; 
    color: #666; 
}

.od-info-row span:last-child { 
    color: #222; 
    font-weight: 500; 
}

.od-payment-status { 
    color: #222 !important; 
    font-weight: bold !important; 
}

/* Bottom Action Bar */
.od-bottom-bar { 
    position: fixed; 
    bottom: 52px;
    left: 0; 
    width: 100%; 
    background: #fff; 
    padding: 12px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05); 
    z-index: 1000;
}

.od-total-price { 
    color: #f36f21; 
    font-weight: bold; 
    font-size: 18px; 
}

.od-btn-pay { 
    background: #d92b2b; 
    color: #fff; 
    border: none; 
    padding: 10px 25px; 
    border-radius: 5px; 
    font-weight: bold; 
    cursor: pointer; 
}





.spinner-border {
    border: 5px solid rgba(13, 110, 253, 0.1);
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    animation: spin-custom 1s linear infinite;
    display: inline-block;
}

@keyframes spin-custom {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#countdown {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-muted {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.searching-text {
    animation: blink-text 1.5s infinite;
}

@keyframes blink-text {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/*Order page end*/

/* ================================= */


/* ================================= */

/*withdrawal page start*/

/* প্রিফিক্স: wdl- (Withdrawal) */

.wdl-main-wrapper {
    width: 100%;
    background-color: #fff;
    min-height: 100vh;
    padding-bottom: 60px;
    margin: 0 auto;
}

.wdl-top-nav {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.wdl-nav-back {
    font-size: 24px;
    cursor: pointer;
}

.wdl-nav-title {
    flex: 1;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.wdl-balance-box {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    margin: 0 20px;
    padding: 25px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 20px rgba(24, 144, 255, 0.2);
}

.wdl-balance-lbl {
    font-size: 14px;
    text-transform: capitalize;
    opacity: 0.9;
    margin: 0;
}

.wdl-balance-val {
    font-size: 36px;
    margin: 10px 0;
    font-weight: 700;
}

.wdl-box-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.wdl-tax-info {
    font-size: 14px;
    text-transform: capitalize;
    margin: 0;
}

.wdl-amount-field {
    padding: 30px 20px;
}

.wdl-field-instr {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.wdl-input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wdl-curr-symbol {
    font-size: 30px;
    font-weight: 700;
    color: #444;
    margin-right: 5px;
}

.wdl-val-input {
    border: none;
    outline: none;
    font-size: 32px;
    font-weight: 700;
    color: #6c757d;
    width: 100%;
    background: transparent;
}

.wdl-field-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 13px;
}

.wdl-tax-calc {
    color: #999;
    margin: 0;
}

.wdl-action-all {
    color: #d4a017;
    cursor: pointer;
    margin: 0;
}

.wdl-info-container {
    background-color: #fff;
    padding: 10px 20px;
    border-top: 8px solid #f8faff;
    border-bottom: 8px solid #f8faff;
}

.wdl-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.wdl-info-label {
    font-size: 15px;
    text-transform: capitalize;
    color: #333;
}

.wdl-txt-bold {
    font-weight: 700;
}

.wdl-notice-area {
    padding: 20px;
    font-size: 13px;
    color: #adb5bd;
    line-height: 1.6;
}

.wdl-notice-lead {
    color: #adb5bd;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.wdl-notice-body {
    margin: 0;
}

.wdl-btn-wrapper {
    padding: 20px;
}

.wdl-submit-trigger {
    width: 100%;
    background-color: #1890ff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(24, 144, 255, 0.3);
}

.wdl-submit-trigger:active {
    transform: scale(0.98);
}

.action-link-aera_001{
    text-decoration: none;
    color: #222;
}


.bnk-form-container {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    padding: 10px 0;
}

.bnk-input-group {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0; /* ইমেজের মতো হালকা নিচের বর্ডার */
}

.bnk-label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.bnk-select-field {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.bnk-input-field {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    padding: 0;
    background: transparent;
}

.bnk-input-group:focus-within {
    background-color: #fafafa;
}

.bnk-input-field::-webkit-inner-spin-button,
.bnk-input-field::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bnk-input-field::placeholder {
    color: #ccc;
    font-weight: 400;
}

/*withdrawal page end*/

/* ================================= */


