:root {
    --color-green: #2ECC71;
    --color-red: #ED2224;
    --color-red-gradient: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    --color-black: #212529;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 62.5%;
    font-size: 16px;
}

body {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', 'Kalpurush', 'Roboto', sans-serif;
    overflow-x: hidden;
    color: var(--color-black);
    background-color: #fdfdfd;
}


@font-face {
    font-family: 'Kalpurush';
    src: url('../fonts/Kalpurush.woff2') format('woff2'),
        url('../fonts/Kalpurush.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* @font-face {
    font-family: 'TonnyBanglaMJ';
    src: url('../fonts/TonnyBanglaMJ.woff2') format('woff2'),
        url('../fonts/TonnyBanglaMJ.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TonnyBanglaMJ';
    src: url('../fonts/TonnyBanglaMJBold.woff2') format('woff2'),
        url('../fonts/TonnyBanglaMJBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
} */


ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2 {
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
}

h4 {
    font-size: 18px;
    font-weight: 700;
}

h5 {
    font-size: 17px;
    font-weight: 500;
}


p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #414141;
    margin: 0;
}


.btn-sty-1 {
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #ED2224;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background: #FFF;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-sty-1:hover {
    color: #FFFFFF;
    background-color: #ED2224;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 34, 36, 0.3);
}

.btn-sty-1 i {
    padding-right: 8px;
}


.btn-sty-2 {
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #FFF;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background: var(--color-red-gradient);
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(237, 34, 36, 0.3);
}

.btn-sty-2:hover {
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 34, 36, 0.5);
    filter: brightness(1.1);
}

.btn-sty-2 i {
    padding-left: 10px;
}

.btn-sty-3 {
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
}

.btn-sty-3:hover {
    border: 1px solid var(--color-red);
}

.section-padding {
    padding: 60px 0;
}

/*************************************************/
/************** 1.Header area css ****************/
/*************************************************/

.all-header-area {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(162, 17, 17, 0.4)), url('../images/banner.png') no-repeat scroll 50% 50% / cover;
    padding-top: 25px;
    position: relative;
    overflow: hidden;
    background-color: #FFF !important;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-drop {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(237, 34, 36, 0.1));
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-30px);
    }
}

/* .all-header-area:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L80,170.7C160,181,320,203,480,202.7C640,203,800,181,960,160C1120,139,1280,117,1360,106.7L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100%;
    z-index: 10;
} */

.header-logo {
    width: 100%;
    height: 100%;
}

.header-logo a img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-menu ul li {
    padding: 0 5px;
}

.botton-nav li a,
.header-menu ul li a {
    padding: 8px 15px;
    background: transparent;
    color: #FFF;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.botton-nav li a.active,
.botton-nav li a:hover,
.header-menu ul li a.active,
.header-menu ul li a:hover {
    background: #ED2224;
    color: #FFF;
}

.botton-nav li a {
    display: block;
}

.header-menu-home ul li a.active,
.header-menu-home ul li a:hover {
    background: #FFF;
    color: #ED2224;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Search Area */

.header-search-area {
    padding-top: 90px;
    color: #FFF;
    text-align: center;
}

.header-search-area h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.header-search-area form {
    width: 380px;
    margin: auto;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.header-search-area form .form-select {
    padding: 11px 10px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #ED2224;
    border-radius: 6px;
}

/* header Img */

.header-btm-img {
    text-align: center;
    width: 100%;
}

.header-btm-img img {
    width: 70px;
    height: 70px;
    padding: 14px;
    border-radius: 50%;
    background: #E4E4E4;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-btm-img.header-btm-img1 {
    margin-top: 135px;
}

.header-btm-img.header-btm-img3 {
    margin-top: 126px;
}

.header-btm-img.header-btm-img4 {
    margin-top: 103px;
}

.select-grouph-area {
    padding-bottom: 15px;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 5px;
    height: 43px;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 42px;
    text-align: left;
    padding-left: 15px;
    border-radius: 5px;
    font-weight: 700;
}

.all-header-area .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: none;
}

.all-profile-area .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: 1px solid transparent;
}

.all-header-area .select2-container--default .select2-selection--single {
    border: 1px solid #ED2224;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {

    border-color: #ED2224;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
    right: 7px;
}


.select2-results__option {
    padding: 8px;
    color: #ED2224;
}

.select2-container {
    width: 100% !important;
}



/***************************************************/
/************** 1.Register area css ****************/
/***************************************************/

.all-register-area {
    padding-bottom: 60px;
}

.register-content {
    width: 750px;
    margin: auto;
    text-align: center;
    background: #FFF;
    padding: 60px 80px;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(237, 34, 36, 0.05);
}

.modern-card {
    background: #FFF !important;
    border-radius: 24px !important;
    padding: 50px !important;
    transition: var(--transition);
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.register-content:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    background: url('../images/dot.png') no-repeat scroll 0 0 / cover;
    z-index: 1;
}

.register-content:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    background: url('../images/dot2.png') no-repeat scroll 0 0 / contain;
    z-index: 2;
}

.register-content h2 {
    padding-bottom: 15px;
}

.register-content h3 {
    padding-bottom: 12px;
}

.register-content p {
    padding-bottom: 37px;
    text-align: left;
}

/***************************************************/
/************** 1.Commend  area css ****************/
/***************************************************/

.all-commend-area {
    padding: 60px 0;
    background: #F8F1F1;
}

/* .col-md-6.all-commend-right {
	border-radius: 5px;
	background: #FFF;
	box-shadow: 0 0 15px #ff8787e5;
} */
.single-carousel {
    border-radius: 5px;
    background: #FFF;
    /* box-shadow: 0 0 15px #ff8787e5; */
}

.commend-left h2 {
    padding-bottom: 20px;
}

.commend-left p {
    width: 490px;
}

.commend-right {
    padding: 40px 30px;
    padding-bottom: 10px
}

.commend-right p {
    color: #555;
    font-style: italic;
    line-height: 1.8;
}

.commend-right-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}


.commend-right-top p {
    padding-top: 20px;
    padding-bottom: 5px;
    color: #000;
}

.commend-right-img {
    width: 80px;
    height: 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #FFF;
    border-radius: 50%;
}

.commend-right-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.commend-right-bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 30px;
    padding-bottom: 25px;
}

.commend-right-bottom ul li {
    color: #ED2224;
    padding: 0 2px;
    font-size: 20px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: red;
}


.myCarousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
    text-align: right !important;
    padding-right: 50px;
    margin-bottom: 20px;
}


/***************************************************/
/************** 1.Blood Card area css **************/
/***************************************************/

.all-blood-card-area {
    padding: 60px 0;
    /* background: #F8F1F1; */
}

.ready-donor-area {
    margin-top: 60px;
}

.ready-donor-image {
    max-width: 130px;
    margin-bottom: 20px;
}

.ready-donor-area .register-content h2 {
    padding-bottom: 3px;
}

.ready-donor-area .register-content p {
    padding-bottom: 10px;
}

.ready-donor-area .register-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #FFF, #FFF2F2) !important;
}

.pulse-container {
    background: rgba(237, 34, 36, 0.1);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(237, 34, 36, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(237, 34, 36, 0);
    }
}

.card-left-are h2.modern-header {
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 3px solid #ED2224;
    display: inline-block;
}

.video-link {
    color: var(--color-red);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.video-link:hover {
    color: #b31b1d;
    transform: translateX(5px);
}

.bc-wrapper {
    position: relative;
    padding: 20px;
    background: #FFF;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.card-left-are a.btn-sty-2.btn-fast {
    padding: 10px 50px;
    margin: 16px 0 40px 0;
}

.card-left-are a.btn-sty-2 {
    padding: 10px 17px;
}

.card-left-are h4 {
    padding-bottom: 10px;
}

.card-right-area {
    background: #FDE9E9;
    padding-top: 40px;
    position: relative;
}

.card-right-area:before {
    content: "";
    position: absolute;
    top: -2px;
    right: -1px;
    width: 195px;
    height: 62px;
    background: url('../images/card/card1.png') no-repeat scroll 0 0 / cover;
    z-index: 111;
}

.card-images ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px;
    padding-bottom: 10px;
}

.card-images ul li {
    width: 70px;
    height: auto;
    text-align: center;
}

.card-images ul li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-images ul li span {
    padding: 20px 19px;
    display: inline-block;
    background: #FFF;
    border-radius: 50%;
    color: #ED2224;
    font-weight: 700;
}

.card-content-area ul {
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
}

.card-content-area ul li {
    padding-bottom: 25px;
}

.card-bottom-area {
    background: url('../images/card/btm.png') no-repeat scroll 0 0 / cover;
}

.card-bottom-area ul li {
    padding: 1px 0 1px 80px;
}

.card-bottom-area ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
}




/**************************************************/
/************** 1.Footer area css *****************/
/**************************************************/


.all-footer-area {
    background: #FDE9E9;
    padding-top: 50px;
    position: relative;
}

.footer-content-area {
    width: 654px;
    margin: auto;
    text-align: center;
}

.footer-content-area h4 {
    line-height: 33px;
    padding-bottom: 22px;
}

.footer-btn-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-btn-area ul li.btn-sty-2 {
    padding: 7px 13px;
    margin-left: 20px;
}

.footer-btn-area ul li .btn-sty-2 {
    padding: 10px 25px;
}

.footer-btn-area ul li.btn-sty-2 a .asf {
    font-size: 20px;
    font-style: normal;
}

.footer-btn-area ul li.btn-sty-2 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    font-size: 12px;
    padding-left: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    line-height: 15px;
}

.footer-btn-area ul li.btn-sty-2:hover a {
    color: #ED2224;
}

.footer-btn-area ul li.btn-sty-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-btn-area ul li.btn-sty-2 img {
    width: 30px;
    height: 30px;
    padding-right: 5px;
}

.footer-btn-area p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
}

.footer-btn-area p a {
    color: #ED2224;
}

.copyright-area {
    margin-top: 50px;
    background: #F7DDDD;
    padding: 15px 0;
}

.copyright-area p {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.footer-icon-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-icon-area ul li {
    padding-left: 15px;
}

.footer-icon-area ul li a {
    color: #414141;
    background: #E5D2D3;
    border-radius: 50%;
    font-size: 20px;
    width: 35px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    transition: .3s;
}

.footer-icon-area ul li a .fa-facebook {
    color: #414141;
}

.footer-icon-area ul li a:hover {
    background: #ED2224;
    color: #E5D2D3;
}

.footer-icon-area ul li a .fa-facebook:hover {
    color: #FFF;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR POLISH
   ========================================================================== */
/* Removed old footer-m-icon styles */



.footer-btn-area ul li:first-child {
    margin-right: 25px;
}

.footer-btn-area ul li.gogle {
    width: 159px;
    height: auto;
}

.footer-btn-area ul li.gogle a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 5px;
}


/************** 0.2 page area css *****************/


/*****************************************************/
/************** 2.platilate area css *****************/
/*****************************************************/


.all-plati-content-area {
    padding-top: 35px;
    padding-bottom: 50px;
    text-align: center;
}

.plati-contents-area h2 {
    padding-bottom: 30px;
}

.plati-all-content-area {
    background: url('../images/p-banner.png') no-repeat scroll 0 0 / cover;
}

.plati-content-area {
    width: 975px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 110px;
}

.plati-content-area p {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 22px;
    line-height: 30px;
    padding-top: 20px;
}

.plati-content-area p span {
    font-weight: 700;
}

/*****************************************************/
/************** 3.thalasmina area css ****************/
/*****************************************************/


.modal-dialog {
    max-width: 800px;
    text-align: left;
}

.modal-body p {
    font-size: 16px;
    padding-bottom: 0;
}

.modal-body ul li {
    font-size: 16px;
    padding-bottom: 5px;
}

.modal-body ul li span {
    color: #ED2224;
}

.modal-title {
    line-height: 2.5;
    font-size: 17px;
    font-weight: 700;
    color: #ED2224;
}

.modal-content {
    padding: 8px;
}


.all-header-area3 {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000;
    border-bottom: 1px solid rgba(237, 34, 36, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.all-header-area3 .header-menu ul li a {
    color: #444;
    font-weight: 500;
    transition: all 0.3s ease;
}

.all-header-area3 .header-logo img {
    max-height: 45px;
    width: auto;
}

.all-header-area3 .header-menu ul li a.active,
.all-header-area3 .header-menu ul li a:hover {
    background: #ED2224;
    color: #FFF !important;
}

h6.ttop {
    font-size: 16px;
    padding: 10px 22px;
    background: #ED2224;
    display: inline-block;
    color: #FFF;
    font-weight: 700;
    border-radius: 5px;
    margin: auto;
    margin-bottom: 15px;

}

/**/
#thalassemiaModal .modal-header {
    padding: 0 1rem;
}

.thalasaninea-content {
    padding: 60px 0;
}

.thalasaninea-top {
    text-align: center;
    width: 725px;
    margin: auto;
}

#thalassemiaModal .modal-body p {
    text-align: left;
}

#thalassemiaModal .modal-body p span {
    color: #ED2224;
}

.thalasaninea-top h6 {
    margin-bottom: 40px;
}

.thalasaninea-top a {
    margin-bottom: 30px;
}

.thalasaninea-top p {
    text-align: center;
    padding-bottom: 60px;
    font-size: 16px;
}

.thalasaninea-top p a {
    color: #ED2224;
}

.thalasaninea-top .modal-body p {
    padding-bottom: 20px;
}

.thalasaninea-left {
    box-shadow: 0px 0px 2px #ff00003b;
    border-radius: 5px;
}

.thalasaninea-left-ctn.thalasaninea-right-ctn p {
    padding-bottom: 30px;
}

.thalasaninea-footer-btn {
    padding-bottom: 7px;
}

.thalasaninea-left h3 {
    padding: 30px;
    font-size: 20px;
    box-shadow: 0px 0px 3px #ddd;
    border-radius: 3px 3px 0px 0px;
    line-height: 32px;
    text-align: center;
    background: #ED0404;
    color: #FFF;
    display: block;
}

.thalasaninea-left.thalasaninea-right h3 {
    padding: 30px;
    text-align: center;
}

.thalasaninea-footer-btn .btn-sty-2.btn-sty-50 {
    background: green;
    border: 1px solid green;
    margin-right: 25px;
    padding: 6px 15px;
}

.thalasaninea-footer-btn .btn-sty-2 i {
    padding-left: 0;
    padding-right: 3px;
}

.thalasaninea-footer-btn .btn-sty-2.btn-sty-50:hover {
    color: green;
    background: #FFF;
}

.thalasaninea-footer-btn .btn-sty-2 {
    padding: 6px 15px;

}

.thalasaninea-left-ctn {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #ED0404;
    box-shadow: 0 0 20px #b1b1b19c;
    background: #FFF;
}

.thalasaninea-left-ctn p {
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
}

.thalasaninea-footer-btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.patient-area,
.noo-area,
.yes-area {
    display: none;
    padding-top: 28px;
    text-align: left;
}

.patient-area span,
.yes-area span,
.noo-area span {
    color: #ED2224;
    padding-left: 3px;
}

.patient-area form .form-group label,
.noo-area form .form-group label,
.yes-area form .form-group label {
    padding-bottom: 15px;
}

.patient-area form .form-group .form-control,
.patient-area form .form-group .form-select,
.noo-area form .form-group .form-control,
.noo-area form .form-group .form-select,
.yes-area form .form-group .form-control {
    padding: 11px 17.5px;
    padding: 11px 1.75rem;
    border-radius: 5px;
    border: 1px solid #DDD;
    font-size: 13px;
    margin-bottom: 15px;
    box-shadow: none;
}

.patient-area form .form-group .form-control:focus,
.patient-area form .form-group .form-select:focus,
.noo-area form .form-group .form-control:focus,
.noo-area form .form-group .form-select:focus,
.yes-area form .form-group .form-control:focus {
    border-color: #ED2224;
}

.noo-area form fieldset {
    border: 1px dotted #ED2224;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}










/************** 0.4 page area css *****************/


/*****************************************************/
/************** 4.HealpingTeam area css **************/
/*****************************************************/

.all-helpingteam-area {
    padding: 60px 0;
    text-align: center;
}

.helpingteam-top-btn {
    padding-bottom: 40px;
}

.helping-img {
    padding-bottom: 20px;
    width: 90px;
    max-height: 120px;
    display: block;
    text-align: center;
}

.helping-img img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.helpingteam-content {
    padding: 30px 20px;
    background: url('../images/org-bg.png') no-repeat scroll center center / 100% 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.helpingteam-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(237, 34, 36, 0.08);
}

.helping-ottom-content {
    padding: 0 15px;
}

.helpingteam-content h3 {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
    line-height: 30px;
}

.helpingteam-content h3 a {
    color: #212529;
}

.helpingteam-content h4 {
    font-size: 16px;
}

.helpingteam-content a.tells {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    display: inline-block;
}

.helpingteam-content a:hover {
    color: #ED2224;
}


/************** 0.5 page area css *****************/


/*****************************************************/
/************** 5.Login      area css ****************/
/*****************************************************/
.all-login-area {
    padding: 60px 0;
}

.all-form-area {
    width: 560px;
    height: auto;
    margin: auto;
    box-shadow: 0px 0px 5px #ff000021;
    border-radius: 5px;
}

.form-title {
    padding: 30px 0;
    text-align: center;
    background: #ED0404;
    border-radius: 5px;
    color: #FFF;
}

.form-title h3 {
    font-size: 28px;
}

.all-form-area form {
    padding: 45px 90px;
    padding-bottom: 50px;
}

.all-form-area form .form-group {
    padding-bottom: 18px;
}

.all-form-area form .form-group label {
    font-size: 16px;
    padding-bottom: 10px;
}

.all-form-area form .form-group label span {
    color: red;
}

.all-form-area form .form-group input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.all-form-area form .form-group .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ED2224;
    outline: 0;
    box-shadow: none;
}

.form-bottom-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
}

.form-bottom-area .forgot {
    font-size: 14px;
    background: #ED2224;
    color: #FFF;
    padding: 1px 6px;
    border-radius: 4px;
}

.form-bottom-area .forgot:hover {
    background: var(--color-black);
}

#forgot-submit {
    background: #FFF;
    border: none;
    padding: 0;
}

#forgot-submit:hover {
    color: #ED2224;
}

/************** 0.6 page area css *****************/


/*****************************************************/
/************** 6.Register   area css ****************/
/*****************************************************/




.all-register-blood-area {
    padding: 60px 0;
}

.all-blood-form-area {
    max-width: 950px;
    width: 100%;
    box-shadow: 0 0 5px #ff00002b;
    border-radius: 5px;
    margin: auto;
}

.blood-title {
    border-radius: 5px 5px 0 0;
    background: #e1e1e1c4;
}

.blood-title ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.blood-title ul li a {
    font-size: 26px;
    color: #000;
    font-weight: 700;
    display: inline-block;
    padding: 35px 53px;
    background: #FDE9E9;
}

.blood-title ul li a.active,
.blood-title ul li a:hover {
    background: #FFF;
}

.blood-title h2 {
    font-size: 28px;
    color: #FFF;
    font-weight: 700;
    padding: 30px;
    background: #ED0404;
    display: block;
    text-align: center;
}

.all-blood-form-area form {
    padding: 50px 125px 0 125px;
}

.all-blood-form-area form .form-group {
    padding-bottom: 25px;
}

.all-blood-form-area form .form-group label span {
    color: #ED2224;
    padding-left: 3px;
}

.all-blood-form-area form .form-group label {
    padding-bottom: 10px;
    font-size: 16px;
    color: #000;
}

.all-blood-form-area form .form-group .form-select,
.all-blood-form-area form .form-group .form-control {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.all-blood-form-area form .form-group .form-select:focus,
.all-blood-form-area form .form-group .form-control:focus {
    border-color: #ED2224;
    box-shadow: none;
}

.all-blood-form-area form fieldset {
    border: 1px dotted #ED2224;
    padding: 5px 15px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.all-blood-form-area form legend {
    float: none;
    box-sizing: border-box;
    display: inline-block;
    padding: 0 10px;
    width: auto !important;
    font-size: 16px;
    margin-left: 20px;
    color: #ED2224;
}

.all-blood-form-area form .form-group .btn-sty-2 {
    margin-bottom: 25px;
}

.blood-content-area {
    background: #FDE9E9;
    padding: 60px 125px;
    border-radius: 0 0 5px 5px;
}

.blood-content-area h4 {
    font-size: 18px;
    color: #ED2224;
    padding-bottom: 10px;
    border-bottom: 3px dotted red;
    display: inline-block;
    margin-bottom: 20px;
}

.blood-content-area ul li {
    font-size: 16px;
    padding-bottom: 15px;
}

#other_blood_group {
    display: none;
}

/*****************************************************/
/************** 7.Blood      area css ****************/
/*****************************************************/

.donor-name a {
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
    display: block;
}

.a-blood-title {
    padding-bottom: 15px;
    position: sticky;
    top: 0;
    z-index: 11;
}

.all-table-area table thead tr th {
    font-size: 16px;
    padding: 15px 15px;
}

.all-table-area table tbody tr td {
    padding: 10px 10px;
    font-size: 16px;
}

.all-table-area table thead {
    background: #FDE9E9;
}

.all-table-area table thead tr th {
    border: none;
}

.all-table-area {
    box-shadow: 0px 0px 10px #ff00000a;
    border-radius: 10px;
    margin: auto;
    padding: 0px;
}

.all-table-area table tbody tr td {
    border: 1px solid #FDE9E9;
}

.all-table-area table tbody tr td a.mobile {
    color: red;
}

.all-table-area table tbody tr td a {
    color: #212529;
}

.all-table-area table tbody tr td a:hover {
    color: red;
}

.all-table-area table tbody tr td:last-child {
    border-right: none;
}

.all-table-area table tbody tr td:first-child {
    border-left: none;
}

.all-table-area table tbody tr td {
    border-bottom: none;
}

.lock a {
    color: #ED2224;
}

.lock i {
    padding-right: 5px;
}

.through {
    text-decoration: line-through;
    text-decoration-color: #ED2224;
}


.all-table-m-area {
    display: none;
}


.all-table-m-single-area ul {
    background: #FDE9E9;
    padding-top: 10px;
    border-radius: 5px;
}

.all-table-m-single-area ul li a.btn-sty-2 {
    display: block;
}

.all-table-m-single-area .group {
    transform: translateY(18px);
    width: 40px;
    height: 40px;
    font-weight: 500;
    font-size: 15px;
}

.all-table-m-area .all-table-m-single-area:last-child {
    margin-bottom: 0;
}

.all-table-m-single-area ul li {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 6px;
}

.all-table-m-single-list ul li:last-child {
    padding-bottom: 0;
    padding: 10px 0;
    display: block;
    background: #ED2224;
    color: #FFF;
    border-radius: 5px;
}

.all-table-m-single-area ul li span {
    font-size: 10px;
}

.all-table-m-single-area ul li i {
    color: #ED2224;
    font-size: 17px;
}

.all-table-m-single-area ul li a {
    color: #212529;
}

.all-table-m-single-area ul li a.mobile {
    color: #ED2224;
}

.social-profiles a {
    font-size: 25px;
    margin-right: 10px;
    margin-top: 10px;
    display: inline-block;
}

.fa-facebook {
    color: #4267B2;
}

.fa-whatsapp {
    color: #25D366;
}

/*****************************************************/
/************** 8.profile    area css ****************/
/*****************************************************/


.all-profile-area {
    padding: 80px 0;
}

.change-menu {
    background: #FDE9E9;
    border-radius: 5px;
}

.change-menu ul li a {
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
}

.change-menu ul li a i {
    padding-right: 8px;
}

.change-menu ul li a.active,
.change-menu ul li a:hover {
    background: #ED2224;
    color: #FFF;
}

.all-profile-content-area {
    padding: 60px 75px;
    background: url('../images/profile.png') no-repeat scroll 50% 50% / cover;
    border-radius: 5px;
}

.profile-image {
    width: 220px;
    height: 220px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.profile-detals ul li {
    font-size: 15px;
    display: block;
    padding-bottom: 10px;
    line-height: 20px;
}

.profile-detals ul li:last-child {
    padding-bottom: 0;
}

.profile-detals ul li a.email {
    color: #000;
}

.profile-detals ul li a.email:hover {
    color: #ED2224;
}

.profile-detals ul li a.btn-sty-2 {
    margin-top: 30px;
}


/************** 0.9 page area css *****************/


/*****************************************************/
/************** 9.Password   area css ****************/
/*****************************************************/

.change-password-area {
    padding: 60px;
    background: #FDE9E9;
    border-radius: 5px;
}

.change-password-area h4 {
    font-size: 18px;
    color: #ED2224;
    padding-bottom: 10px;
    border-bottom: 3px dotted red;
    margin-bottom: 20px;
}

.change-password-area form .form-group {
    padding-bottom: 25px;
}

.change-password-area form .form-group:last-child {
    padding-bottom: 0;
}

.change-password-area form .form-group label {
    padding-bottom: 8px;
}

.change-password-area form .form-group .form-control {
    padding: 12px;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #ced4da21;
}

.change-password-area form .form-group .form-control:focus {
    border-color: #ED2224;
    box-shadow: none;
}



/************** 0.4 page area css *****************/


/*****************************************************/
/************** 11.platelet  area css ****************/
/*****************************************************/
.platelet-content {
    padding: 60px;
    background: #FDE9E9;
    border-radius: 5px;
}

.platelet-content h4 {
    font-size: 18px;
    color: #ED2224;
    padding-bottom: 10px;
    border-bottom: 3px dotted red;
    margin-bottom: 20px;
}

.platelet-content p {
    padding-bottom: 33px;
}

.platelet-content-top {
    padding-bottom: 45px;
}

.platelet-content .btn-sty-2 i {
    padding-left: 0;
    padding-right: 5px;
}

#temp_time_field {
    display: none;
}


/************** 0.10 page area css *****************/



/*****************************************************/
/************** 10.platelet  area css ****************/
/*****************************************************/

.change-profile-area {
    padding: 30px 70px;
    background: #FDE9E9;
    border-radius: 5px;
}

.profile-images-area {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 10px;
    position: relative;
}

.profile-images-area img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}



.pro-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pro-icon i {
    color: #FFF;
    background: #ED2224;
    padding: 7px;
    border-radius: 50px;
}


.change-profile-area form .form-group {
    padding-bottom: 18px;
}

.change-profile-area form .form-group:last-child {
    padding-bottom: 0;
}

.change-profile-area form .form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: 8px;
}

.change-profile-area form .form-group label span {
    color: #ED2224;
    margin-left: 3px;
}

.change-profile-area form .form-group label span {
    color: #ED2224;
}

.change-profile-area form .form-group .form-select,
.change-profile-area form .form-group .form-control {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 5px;
    border: 1px solid #ced4da0f;
}

.change-profile-area form .form-group .form-select:focus,
.change-profile-area form .form-group .form-control:focus {
    border-color: #ED2224;
    box-shadow: none;
}

.change-profile-area form fieldset {
    border: 1px dotted #ED2224;
    border-radius: 5px;
    padding: 10px;
}

legend {
    float: none;
    width: auto;
    padding: 0px 7px;
    margin: auto;
}

.change-profile-area form fieldset .form-group label {
    margin-top: 0px;
}

.change-profile-area form fieldset legend {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.chack-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    padding-top: 8px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.m-gender {
    margin-right: 150px;
}

.f-gender input,
.m-gender input {
    margin-right: 5px;
}

.form-check-input:checked {
    background-color: #42A058;
}

.form-check-input:checked[type="radio"] {
    background: #ED2224;
    box-shadow: none;
}

.form-check-input {
    width: 15px;
    height: 15px;
    background-color: #A7A7A7;
    border: none;
}

.change-profile-area form .form-group a.btn-sty-1 {
    padding: 10px 22px;
    margin-right: 20px;
}

.change-profile-area form .form-group .btn-sty-2 {
    border: none !important;
}



/************** 0.10 page area css *****************/



/*****************************************************/
/************** 10.platelet  area css ****************/
/*****************************************************/


.all-donnerdate-area {
    padding: 60px;
    background: #FDE9E9;
    border-radius: 5px;
}


.all-donnerdate-area h4 {
    font-size: 18px;
    color: #ED2224;
    padding-bottom: 10px;
    border-bottom: 3px dotted red;
    margin-bottom: 20px;
}


.all-donnerdate-area form .date-area {
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 35px;
}

.date-area .form-group {
    padding-right: 30px;
}

.date-area .form-group label {
    display: block;
}

.date-area .form-group select {
    border: 1px solid #FFF;
    padding: 9px;
    display: inline;
    width: 110px;
}

.form-group select {
    /* border: 1px solid #FFF; */
    padding: 9px;
}

.date-area .form-group select:focus,
.form-group select:focus {
    border-color: #ED2224;
    box-shadow: none;
}

.all-donnerdate-btm-area {
    padding: 60px;
    text-align: left;
    margin-top: 20px;
}

.all-donnerdate-btm-area h4 {
    font-size: 18px;
    color: #ED2224;
    padding-bottom: 10px;
    border-bottom: 3px dotted red;
    margin-bottom: 20px;
}

.all-donnerdate-btm-area h5 {
    padding-bottom: 30px;
}

.all-donnerdate-btm-area form .form-group textarea {
    border: 1px solid #DDDDDD26;
    margin-bottom: 40px;
    border-radius: 5px;
}

.all-check-area .form-check {
    margin-bottom: 25px;
}

.all-check-area .form-check input.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.all-check-area .form-check label {
    padding-top: 5px;
    padding-left: 15px;
}

.all-check-area .form-check input.form-check-input {
    width: 30px;
    height: 30px;
    border: none;
    background: #FFF;
}

.all-check-area .form-check input.form-check-input:focus {
    border-color: green;
    box-shadow: none;
}

.all-check-area {
    padding: 10px 0 24px 0;
}

.all-donnerdate-btm-area form .form-group textarea {
    width: 100% !important;
    max-height: 300px;
    min-height: 50px;
}

.all-donnerdate-btm-area form .form-group textarea,
.all-donnerdate-btm-area form .form-group select {
    border: 1px solid #FFF;
    padding: 9px;
    display: inline;
    width: 20%;
    margin-bottom: 30px;
    font-size: 16px !important;
}

.form-group textarea {
    border: 1px solid #FFF;
    padding: 9px;
    margin-bottom: 30px;
}

.all-donnerdate-btm-area form .form-group textarea:focus,
.form-group textarea:focus,
.all-donnerdate-btm-area form .form-group select:focus {
    border-color: #ED2224;
    box-shadow: none;
}



/************** 0.10 page area css *****************/



/*****************************************************/
/************** 10.platelet  area css ****************/
/*****************************************************/
.all-a-platilate-list {
    padding-top: 80px;
    text-align: center;
    padding-bottom: 50px;
}

.a-platilate-title {
    padding-bottom: 40px;
}


.single-platilate-donner {
    background: url('../images/platilat.png') no-repeat scroll 55% 0 / cover;
    padding: 15px 10px 0 10px;
    margin-bottom: 45px;
}

.single-platilate-donner ul li:first-child {
    font-size: 15px;
}

.single-platilate-donner ul li {
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 8px;
}

.single-platilate-donner ul li span {
    font-size: 10px;
}

.single-platilate-donner pre {
    width: 30px;
    height: 30px;
    background: #ED2224;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    margin: auto;
}

.single-platilate-donner h4 {
    padding-bottom: 10px;
    padding-top: 15px;
}

.single-platilate-donner a.btn-sty-2 {
    padding: 2px 10px;
    margin-bottom: 15px;
}

.single-platilate-donner a.btn-sty-2 i {
    padding-right: 10px;
    padding-left: 0;
}






/************** 0.10 page area css *****************/





/*****************************************************/
/************** 10.Volantias area css ****************/
/*****************************************************/

.all-volentias-area {
    padding-bottom: 60px;
}

.single-volentias {
    text-align: center;
    background: #fff;
    border-radius: 25px;
    padding: 25px 15px 0 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-volentias:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(237, 34, 36, 0.12);
}

.single-volentias h3 {
    font-size: 1.15rem;
    font-weight: 700;
    padding-bottom: 5px;
    font-family: 'Inter', 'Kalpurush', sans-serif;
    color: #333;
}

.single-volentias h5 {
    padding-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ED2224;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.single-volentias p {
    font-size: 13px;
    padding-bottom: 15px;
    color: #666;
    margin-top: 0;
}

.volentias-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
    border-radius: 50%;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.volentias-img img {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.single-volentias:hover .volentias-img img {
    transform: scale(1.05);
}

.single-volentias-item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    color: #eee;
    padding-top: 5px;
}

.single-volentias-item ul li {
    font-size: 14px;
    font-weight: 600;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.single-volentias-item ul li:first-child {
    border: none;
}

.single-volentias-item ul li a {
    color: #000;
}

.single-volentias-item ul li a:hover {
    color: #ED2224;
}


.single-volentias-item ul li a i {
    padding-right: 8px;
}

/* Removed old botton-nav styles */






/*****************************************************/
/************** 10.Volantias area css ****************/
/*****************************************************/
.plateletsearch-all-area {
    padding-top: 60px;
    padding-bottom: 20px;
}

.plateletsearch-top {
    text-align: center;
    padding-bottom: 60px;
}

.single-content {
    text-align: center;
    border: 2px solid #ED2224;
    border-radius: 5px;
    margin-bottom: 60px;
    box-shadow: 0 0 15px #33333329;
    background: linear-gradient(#FEDD73, #FFF);
}

.group {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FF0101;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin: auto;
    transform: translateY(-30px);
    color: #FFF;
    box-sizing: border-box;
    background: #FF0101;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-content-details {
    transform: translateY(-15px);
}

.single-content-details ul li {
    font-size: 15px;
    line-height: 26px;
}

.single-content-details ul li:first-child {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
}

.single-content-details ul li a {
    color: #000;
}

.single-content-details ul li.last_d_date {
    background: #ED2224;
    color: #FFF;
    padding: 5px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.single-content-buttons {
    border-top: 1.5px solid #edf2f7;
}

.single-content-buttons ul {
    display: flex;
    justify-content: space-around;
}

.single-content-buttons ul li {
    flex: 0 0 50%;
    background: #FF0000;
}

.single-content-buttons ul li:last-child {
    background: #6f42c1;
}

.single-content-buttons ul li a {
    padding: 10px 0;
    display: block;
    color: #FFF;
}

.single-content-buttons ul li a i {
    padding-right: 10px;
}

.single-content-buttons ul li:first-child a:hover {
    background: #6f42c1;
}

.single-content-buttons ul li:last-child a:hover {
    background: #ED2224;
}

.details p {
    padding-bottom: 20px;
}

.about-content p {
    text-align: justify;
}

.through {
    text-decoration-thickness: 2px !important;
    text-decoration: line-through;
    -webkit-text-decoration-color: red;
    text-decoration-color: red;
}


.form-select-lg {
    font-size: 15px;
}

#donote_note,
#stop_reason {
    font-size: 15px !important;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url('../images/preloader.gif') no-repeat center center;
}

.profile-image {
    position: relative;
}

.profile-image a {
    position: absolute;
    right: -70px;
    color: #ED2224;
    top: 0;
}

.for_mobile {
    display: none;
}


/* Toggle password  */

.password-container {
    position: relative;
}

.togglePassword {
    position: absolute;
    right: 14px;
    cursor: pointer;
    font-size: 25px;
    user-select: none;
    bottom: 8px;
}

.togglePasswordLogin {
    bottom: 8px;
}




/*card style*/

#card {
    max-width: 570px;
    overflow: hidden;
    margin: 20px auto;
    box-shadow: 0 0 15px #cccccce6;
    background-color: #ffffff;
    box-sizing: border-box;

    background: #00C9FF;
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);
    background: linear-gradient(to right, #92FE9D, #00C9FF);

}

.c_header img {
    max-width: 115px;
}

.c_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    box-sizing: border-box;
    align-items: center;
}


/*.c_header_left {
	flex: 0 0 50%;
	max-width: 50%;
}*/
.c_header_right {
    text-align: right;
}

.c_header_right img {
    max-width: 150px;
}



.c_footer p {
    background: red;
    color: #FFF;
    text-align: center;
    padding: 8px;
    display: block;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
}

.c_group {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FF0101;
    text-align: center;
    line-height: 55px;
    font-size: 25px;
    font-weight: bold;
    margin: auto;
    color: #FFF;
    box-sizing: border-box;
    background: #FF0101;
    /*box-shadow: 0px 3px 0 #B52525;*/
}

.c_details {
    padding: 0 25px;
    padding-bottom: 20px;
}

.c_details p {
    font-size: 16px !important;
    font-family: Roboto, 'Kalpurush';
    font-weight: 400;
}

.c_details p span,
.c_details h4 span {
    color: #000;
}

.c_avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
}

.c_avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.c_details h4 {
    font-size: 25px;
}

.card-form {
    margin-top: 15px;
}

.download-btn a {
    margin-top: 20px;
    padding: 5px 40px;
    line-height: 30px;
}



/*Home Card CSS*/

.home_card_area {
    margin-bottom: 50px;
}


.home_card_left {
    padding-top: 20px;
}

.home_card_left h1 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.home_card_left p {
    margin-bottom: 10px;
}

.home_card_left a {
    padding: 5px 40px;
    line-height: 30px;
}


.home_card_left h1 {
    margin-bottom: 10px;
    margin-top: 10px;
    color: #FF0000;
    border-bottom: 3px dotted #F00;
    padding-bottom: 5px;
    font-family: 'Kalpurush';
    font-size: 40px;
}


.colors ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.colors ul li {
    margin: 0 7px;
}

.colors ul li img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 100%;
    transition: .3s;
}

.colors ul li img:hover {
    transform: scale(1.1);
}

/*bg color 0*/
.cbg0 {
    background: url('../images/card/bg.jpg') no-repeat scroll 0 0 / 100% 100% !important;
}

.cbg0 .c_details p span,
.cbg0 .c_details h4 span,
.cbg0 .c_details p {
    color: #000;
}

/*bg color 1*/
.cbg1 {
    background: #12c2e9 !important;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FF0000, #c471ed, #12c2e9) !important;
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FF0000, #c471ed, #12c2e9) !important;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.cbg1 .c_details p span,
.cbg1 .c_details h4 span,
.cbg1 .c_details p {
    color: #FFF;
}

/*bg color 2*/
.cbg2 {
    background: linear-gradient(to left, #c6ffdd, #fbd786, #f7797d) !important;
}

.cbg2 .c_details p span,
.cbg2 .c_details h4 span,
.cbg2 .c_details p {
    color: #FFF;
}

/*bg color 3*/
.cbg3 {
    background-image: radial-gradient(circle farthest-corner at 14.2% 27.5%, rgba(104, 199, 255, 1) 0%, rgba(181, 126, 255, 1) 90%) !important;
}

.cbg3 .c_details p span,
.cbg3 .c_details h4 span,
.cbg3 .c_details p {
    color: #FFF;
}

/*bg color 4*/
.cbg4 {
    background-image: linear-gradient(107deg, rgba(2, 108, 223, 1) 27.4%, rgba(0, 255, 255, 1) 92.7%) !important;
}

.cbg4 .c_details p span,
.cbg4 .c_details h4 span,
.cbg4 .c_details p {
    color: #FFF;
}

/*bg color 5*/
.cbg5 {
    background-image: linear-gradient(135deg, #5EFCE8 10%, #736EFE 100%) !important;
}

.cbg5 .c_details p span,
.cbg5 .c_details h4 span,
.cbg5 .c_details p {
    color: #000;
}

.card-form.all-blood-form-area form {
    padding: 50px !important;
}

.blood_card_box img {
    max-width: 100%;
    height: auto;
}

#HappyInAIModal .modal-body {
    padding: 0;
}

.btn-close.happyClose {
    position: absolute;
    right: 0px;
    top: 0px;
    background-color: #FFFF;
}

/* Premium Analytics Section Refined */
.premium-analytics {
    background: #fdfdfd;
    padding: 100px 0;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.premium-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ED2224 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.analytics-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.summary-card {
    background: #FFF;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.summary-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    transition: width 0.3s ease;
}

.summary-card.gold::after {
    background: #FFD700;
}

.summary-card.blue::after {
    background: #3498DB;
}

.summary-card.red-pulse::after {
    background: #ED2224;
}

.summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.summary-card:hover::after {
    width: 100%;
}

.summary-card i {
    font-size: 36px;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.summary-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.summary-info h3 {
    font-size: 32px;
    letter-spacing: -1px;
}

.distribute-title {
    font-size: 22px;
    color: #333;
    position: relative;
    display: inline-block;
    width: 100%;
}

.distribute-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #ED2224;
    margin: 15px auto 0;
    border-radius: 10px;
}

.blood-group-grid {
    padding: 10px;
}

.blood-capsule {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.blood-type {
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(237, 34, 36, 0.1);
}

.blood-count {
    font-size: 18px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .analytics-wrapper {
        padding: 40px 20px;
    }
}

/* Premium App Promo Section */
.app-promo-card {
    background: linear-gradient(135deg, #ED2224 0%, #b31b1d 100%);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(237, 34, 36, 0.2);
}

.promo-flex {
    flex: 1;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.promo-text h2 {
    color: #FFF;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.promo-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 40px;
}

.promo-action {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-premium-install {
    padding: 18px 40px;
    background: #FFF;
    color: #ED2224;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-premium-install:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.apk-link-subtle {
    color: #FFF;
    font-weight: 700;
    opacity: 0.8;
    text-decoration: underline !important;
}

.apk-link-subtle:hover {
    opacity: 1;
}

.promo-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: #FFF;
    border-radius: 40px;
    border: 8px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -150px;
    right: 50px;
    transform: rotate(-10deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.phone-mockup i {
    font-size: 80px;
    color: #ED2224;
    animation: pulse 2s infinite;
}

@media (max-width: 991px) {
    .app-promo-card {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }

    .promo-action {
        flex-direction: column;
        gap: 15px;
    }

    .phone-mockup {
        display: none;
    }

    .promo-text h2 {
        font-size: 32px;
    }
}

/* App Promo Button and Logo Fixes */
.btn-premium-apk {
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-premium-apk:hover {
    background: #FFF;
    color: #ED2224;
    transform: translateY(-3px);
}

.mockup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mockup-logo {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.phone-mockup {
    background: #fdfdfd !important;
}

/* Final Branding Fixes for App Promo */
.promo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-text h2 {
    margin-top: 10px;
}

.btn-premium-install,
.btn-premium-apk {
    padding: 12px 25px !important;
    /* Smaller, branding-consistent size */
    font-size: 16px !important;
    border-radius: 10px !important;
    /* Standard site radius */
}

.app-promo-card {
    padding: 50px 60px !important;
}

@media (max-width: 991px) {
    .promo-text {
        align-items: center;
    }
}

/* ==========================================================================
   ULTRA-PREMIUM ANALYTICS REDESIGN (FIXED)
   ========================================================================== */

.premium-analytics {
    background: #ffffff;
    padding: 50px 0 80px;
    position: relative;
    z-index: 10;
}

/* Background Pattern */
.premium-analytics::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(237, 34, 36, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

.analytics-wrapper {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Floating Decorative Elements */
.analytics-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(237, 34, 36, 0.03) 0%, transparent 70%);
    z-index: 0;
}

/* Summary Cards Fix */
.summary-card {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 30px !important;
    background: #fff !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s ease !important;
    height: 100%;
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(237, 34, 36, 0.1) !important;
}

.summary-card i {
    width: 65px;
    height: 65px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 15px;
    flex-shrink: 0;
}

/* Color Themes for Cards */
.summary-card.gold i {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.summary-card.blue i {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.summary-card.red-pulse i {
    color: #ed2224;
    background: rgba(237, 34, 36, 0.1);
}

.summary-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    color: #2d3436;
    font-family: 'Inter', sans-serif;
}

.summary-info p {
    font-size: 14px;
    font-weight: 600;
    color: #636e72;
    margin: 5px 0 0;
}

/* Blood Group Grid FIX */
.blood-stats-container {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1.5px dashed rgba(0, 0, 0, 0.06);
}

.distribute-title {
    font-size: 20px;
    font-weight: 800;
    color: #2d3436;
    letter-spacing: 0.5px;
    display: block;
}

.blood-group-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
}

.blood-capsule {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 18px !important;
    padding: 25px 15px !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01) !important;
}

.blood-capsule:hover {
    background: #ed2224 !important;
    border-color: #ed2224 !important;
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(237, 34, 36, 0.2) !important;
}

.blood-type {
    font-size: 24px;
    font-weight: 900;
    color: #ed2224;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.blood-count {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    transition: color 0.3s ease;
}

.blood-capsule:hover .blood-type,
.blood-capsule:hover .blood-count {
    color: #ffffff !important;
}

/* Response Fixes */
@media (max-width: 991px) {
    .premium-analytics {
        margin-top: 0;
        padding-top: 60px;
    }

    .analytics-wrapper {
        padding: 40px 25px;
    }
}

@media (max-width: 575px) {
    .blood-group-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .summary-card {
        padding: 20px !important;
    }

    .summary-info h3 {
        font-size: 24px;
    }
}

/* ==========================================================================
   ULTRA-ATTRACTIVE POLISH (VISUAL EXCELLENCE)
   ========================================================================== */

.premium-analytics {
    overflow: hidden;
    /* For blobs */
}

.decor-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 34, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.blob-1 {
    top: -100px;
    right: -50px;
}

.blob-2 {
    bottom: -100px;
    left: -50px;
}

.analytics-wrapper {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.04), 0 10px 30px rgba(237, 34, 36, 0.02) !important;
}

.summary-card {
    border: 1px solid rgba(237, 34, 36, 0.05) !important;
    position: relative;
    z-index: 2;
}

.summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
    z-index: -1;
}

.summary-card i {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.summary-info h3 {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blood-stats-container {
    border-top: none !important;
    position: relative;
}

.blood-stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.distribute-title {
    font-size: 24px !important;
    letter-spacing: 1px;
    margin-bottom: 50px !important;
}

.distribute-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-red-gradient);
    margin: 15px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(237, 34, 36, 0.3);
}

.blood-capsule {
    background: #ffffff !important;
    border: 1.5px solid #f8f9fa !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03) !important;
}

.blood-capsule:hover {
    transform: translateY(-10px) !important;
    background: var(--color-red-gradient) !important;
    border-color: transparent !important;
    box-shadow: 0 20px 40px rgba(237, 34, 36, 0.3) !important;
}

.blood-capsule:hover .blood-count {
    color: rgba(255, 255, 255, 0.9) !important;
}

.blood-type {
    transition: all 0.3s ease;
}

.blood-capsule:hover .blood-type {
    color: #ffffff !important;
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .analytics-wrapper {
        padding: 30px 15px !important;
    }
}

/* Grid Balance Fix for Blood Groups */
.blood-group-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    /* Balanced 4x2 layout */
    gap: 25px !important;
    max-width: 1000px;
    margin: 0 auto !important;
}

@media (max-width: 991px) {
    .blood-group-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .blood-group-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Enhancing capsule visual for balance */
.blood-capsule {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

/* ==========================================================================
   SELECT2 BRANDING & SPACING REFINEMENTS
   ========================================================================== */

/* Select2 Dropdown Customization */
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ED2224 !important;
    color: white !important;
}

.select2-dropdown {
    border: 1px solid #ED2224 !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    padding: 8px !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #ED2224 !important;
    outline: none !important;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-weight: 500 !important;
    color: #444 !important;
}


.hero-shapes .floating-drop {
    filter: blur(40px) brightness(1.2);
    opacity: 0.6;
}

/* ==========================================================================
   MOBILE LAYOUT FIXES (APP PROMO & SPACING)
   ========================================================================== */

@media (max-width: 991px) {
    .app-promo-card {
        padding: 40px 20px !important;
        /* Compact padding for mobile */
        border-radius: 30px !important;
    }

    .promo-flex {
        flex-direction: column !important;
        display: flex !important;
    }

    .promo-visual {
        display: none !important;
        /* Completely hide on mobile to save space */
    }

    .promo-text {
        align-items: center !important;
        padding: 0 !important;
    }

    .promo-text h2 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .promo-text p {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }

    .promo-action {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-premium-install,
    .btn-premium-apk {
        width: 100% !important;
        justify-content: center;
        display: flex !important;
        align-items: center;
    }
}

@media (max-width: 575px) {
    .app-promo-card {
        padding: 30px 15px !important;
    }

    .promo-text h2 {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   ULTRA-PREMIUM FOOTER REDESIGN
   ========================================================================== */

.premium-footer {
    background: #111111 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 80px 0 0 !important;
    border-top: 4px solid #ED2224;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ED2224;
    margin-top: 10px;
    border-radius: 5px;
}

.footer-logo-premium {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Logo white version */
}

.brand-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social-premium {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-btn:hover {
    background: #ED2224;
    transform: translateY(-5px);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(237, 34, 36, 0.4);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links-list li a:hover {
    color: #ED2224;
    padding-left: 10px;
}

.contact-card-premium {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hotline-icon {
    font-size: 30px;
    color: #ED2224;
}

.hotline-text span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hotline-text a {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
}

.extra-numbers {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.play-store-btn img {
    height: 50px;
    transition: transform 0.3s ease;
}

.play-store-btn:hover img {
    transform: scale(1.05);
}

.footer-bottom-bar {
    background: #000000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.dev-info a {
    color: #ED2224;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-heading::after {
        margin: 10px auto 0;
    }

    .footer-social-premium {
        justify-content: center;
    }

    .contact-card-premium {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   ULTRA-ATTRACTIVE FOOTER REFINEMENTS
   ========================================================================== */

.premium-footer {
    background: radial-gradient(circle at top right, #1a1a1a 0%, #0a0a0a 100%) !important;
    position: relative;
    overflow: hidden;
    border-top: none !important;
}

/* Red Glowing Edge Top */
.premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ED2224, transparent);
    box-shadow: 0 0 20px rgba(237, 34, 36, 0.5);
    z-index: 10;
}

/* Background Pattern */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
}

.relative-z {
    position: relative;
    z-index: 5;
}

/* Decorative Blobs */
.footer-decor-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(237, 34, 36, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

.blob-1 {
    top: -100px;
    right: -50px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
}

.footer-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.footer-links-list li a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links-list li a:hover {
    opacity: 1;
    color: #ED2224 !important;
    transform: translateX(5px);
}

.footer-links-list li a:hover i {
    transform: translateX(3px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hotline-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ED2224;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card-premium .hotline-icon {
    color: #ffffff;
}

.contact-card-premium:hover .hotline-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.hotline-text a {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px !important;
}

.download-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.footer-social-premium .social-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .premium-footer {
        padding-top: 80px !important;
    }
}

/* ==========================================================================
   FOOTER COLOR & LEGIBILITY REFINEMENTS
   ========================================================================== */

.premium-footer {
    background: #0d0d0d !important;
    /* Deeper, cleaner dark background */
    color: rgba(255, 255, 255, 0.9) !important;
    /* Brighter, more readable text */
}

.brand-desc {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-links-list li a:hover {
    color: #ffffff !important;
}

.hotline-text a {
    -webkit-text-fill-color: #ffffff !important;
    /* Solid white for better legibility */
    background: none !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(237, 34, 36, 0.2);
}

.footer-heading {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    opacity: 1 !important;
}

.premium-footer::after {
    height: 2px !important;
    /* Shorter, sharper glow bar */
    background: #ED2224 !important;
    box-shadow: 0 2px 10px rgba(237, 34, 36, 0.4);
}

/* ==========================================================================
   FINAL PREMIUM FOOTER TOUCHES (GRADIENTS & APP BUTTON)
   ========================================================================== */

.premium-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
    position: relative;
    overflow: hidden;
}

.play-store-btn {
    display: inline-flex !important;
    align-items: center;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.play-store-btn img {
    height: 35px !important;
    filter: brightness(1);
    transition: transform 0.3s ease;
}

.play-store-btn:hover {
    background: #111111;
    border-color: #ED2224;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 34, 36, 0.2);
}

.play-store-btn::before {
    content: 'Available on';
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 12px;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
}

/* Flex adjustment for custom button content */
.play-store-btn {
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .play-store-btn {
        margin: 0 auto;
    }
}

/* ==========================================================================
   FOOTER FINAL POLISH & BUG FIXES
   ========================================================================== */

.premium-footer::after {
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ED2224, transparent) !important;
    top: 0 !important;
    left: 0 !important;
    position: absolute !important;
}

.footer-social-premium .social-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.footer-social-premium .social-btn:hover {
    background: #ED2224 !important;
    border-color: #ED2224 !important;
    box-shadow: 0 5px 15px rgba(237, 34, 36, 0.4) !important;
}

.footer-bottom-bar p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
}

.footer-bottom-bar .dev-info a {
    color: #ED2224 !important;
    opacity: 1 !important;
    font-weight: 700 !important;
}

.footer-heading::after {
    width: 40px !important;
    height: 3px !important;
    display: block !important;
    background: #ED2224 !important;
    margin: 10px 0 0 !important;
}

@media (max-width: 991px) {
    .footer-heading::after {
        margin: 10px auto 0 !important;
    }
}

/* ==========================================================================
   POTAROK (FRAUD) ALERT SECTION
   ========================================================================== */

.fraud-alert-section {
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.fraud-awareness-card {
    border-left: 8px solid #FFC107 !important;
    padding: 50px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px;
}

.alert-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.alert-icon-wrapper i {
    font-size: 45px;
    color: #FFC107;
}

.pulse-warning {
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fraud-awareness-card h2 {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.fraud-awareness-card p {
    color: #666;
    font-size: 16px;
}

.fraud-tactics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tactic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fcfcfc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.tactic-item:hover {
    background: #fff;
    border-color: #FFC107;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.tactic-item i {
    font-size: 20px;
    color: #FFC107;
    width: 25px;
    text-align: center;
}

.tactic-item span {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.btn-fraud-report {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-fraud-report:hover {
    background: #FFC107;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

@media (max-width: 991px) {
    .fraud-awareness-card {
        padding: 40px 25px !important;
    }

    .fraud-tactics-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   READY DONOR FILTER BAR
   ========================================================================== */

.ready-donor-filter-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.ready-donor-filter-card .form-label {
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.ready-donor-filter-card .form-select {
    border-radius: 12px;
    border: 1.5px solid #edf2f7;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.ready-donor-filter-card .form-select:focus {
    border-color: #ED2224;
    box-shadow: 0 0 0 4px rgba(237, 34, 36, 0.1);
    background-color: #fff;
}

.btn-filter-submit {
    background: #ED2224;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    width: 100%;
    margin-top: 27px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(237, 34, 36, 0.2);
}

.btn-filter-submit:hover {
    background: #d61b1d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 34, 36, 0.3);
}

@media (max-width: 991px) {
    .ready-donor-filter-card {
        padding: 20px;
    }

    .btn-filter-submit {
        margin-top: 10px;
    }
}

/* Select2 Custom Styling for Filter Card */
.ready-donor-filter-card .select2-container--default .select2-selection--single {
    border-radius: 12px;
    border: 1.5px solid #edf2f7;
    height: 50px;
    background-color: #f8fafc;
}

.ready-donor-filter-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 47px;
    padding-left: 15px;
    color: #555;
    font-size: 14px;
}

.ready-donor-filter-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 12px;
    width: 25px;
}

.ready-donor-filter-card .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #8a99af transparent transparent transparent;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    width: 0;
    transition: all 0.3s ease;
}

.ready-donor-filter-card .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ED2224 transparent;
    border-width: 0 5px 6px 5px;
    margin-top: -4px;
}

.ready-donor-filter-card .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #ED2224;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(237, 34, 36, 0.1);
}

.ready-donor-filter-card .select2-dropdown {
    border-radius: 12px;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 1050;
    overflow: hidden;
    margin-top: 5px;
}

.ready-donor-filter-card .select2-search--dropdown {
    padding: 12px;
}

.ready-donor-filter-card .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
    border: 1.5px solid #edf2f7;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.ready-donor-filter-card .select2-search--dropdown .select2-search__field:focus {
    border-color: #ED2224;
    box-shadow: 0 0 0 4px rgba(237, 34, 36, 0.05);
}

.ready-donor-filter-card .select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
}

.ready-donor-filter-card .select2-results__option--highlighted[aria-selected] {
    background-color: #ED2224;
}

.ready-donor-header-area {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(241, 245, 249, 0.6);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .ready-donor-header-area {
        padding: 12px 15px;
        margin-top: 0;
        border-radius: 0 0 15px 15px;
    }
}

.header-title-box h4 {
    color: #1e293b;
    font-size: 22px;
    margin-bottom: 2px !important;
}

.header-title-box p {
    font-size: 13px;
    font-weight: 500;
}

.btn-mobile-filter {
    background: #fff;
    border: 1.5px solid #edf2f7;
    color: #475569;
    padding: 10px 15px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 85px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-mobile-filter i {
    font-size: 22px;
    color: #ED2224;
    margin-bottom: 5px;
}

.btn-mobile-filter span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-mobile-filter:hover,
.btn-mobile-filter:focus {
    border-color: #ED2224;
    background-color: #fff;
    color: #ED2224;
    box-shadow: 0 4px 15px rgba(237, 34, 36, 0.1);
}

.donor-count-badge {
    background: linear-gradient(135deg, #ED2224, #c40303);
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 85px;
    box-shadow: 0 8px 20px rgba(237, 34, 36, 0.25);
    text-align: center;
    line-height: 1.2;
}

.donor-count-badge .count {
    font-size: 22px;
    font-weight: 800;
    display: block;
}

.donor-count-badge .label {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
}

.selected-group-badge {
    background: #fff;
    border: 1px solid #ED2224;
    color: #ED2224;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 85px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(237, 34, 36, 0.08);
    text-align: center;
    line-height: 1.2;
}

/* Mobile Optimizations for Sticky Header */
@media (max-width: 575px) {
    .ready-donor-header-area {
        padding: 10px 12px !important;
    }

    .header-title-box h4 {
        font-size: 16px !important;
    }

    .btn-mobile-filter,
    .donor-count-badge,
    .selected-group-badge {
        min-width: unset !important;
        min-height: unset !important;
        padding: 5px 10px !important;
        border-radius: 10px !important;
        flex-direction: row !important;
        gap: 6px !important;
        font-size: 11px !important;
    }

    .btn-mobile-filter i,
    .donor-count-badge .count,
    .selected-group-badge .value {
        font-size: 14px !important;
        margin-bottom: 0 !important;
    }

    .donor-count-badge .count,
    .selected-group-badge .value {
        font-weight: 800 !important;
    }

    .btn-mobile-filter span,
    .donor-count-badge .label,
    .selected-group-badge .label {
        font-size: 10px !important;
        font-weight: 600 !important;
    }
}

.selected-group-badge .label {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 600;
}

.selected-group-badge .value {
    font-size: 22px;
    font-weight: 800;
}

@media (min-width: 768px) {

    .donor-count-badge,
    .selected-group-badge {
        flex-direction: row;
        min-height: auto;
        min-width: auto;
        padding: 12px 20px;
        gap: 8px;
    }

    .donor-count-badge .count,
    .selected-group-badge .value {
        font-size: 18px;
        display: inline;
    }

    .donor-count-badge .label,
    .selected-group-badge .label {
        font-size: 14px;
        display: inline;
    }
}

/* Global Status Indicator in Navbar */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

.status-indicator.eligible {
    background-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
}

.status-indicator.not-eligible {
    background-color: #ffc107;
}

/* Home Page Alert Adjustments */
.home-page-alert-wrapper {
    margin-bottom: 20px;
}

.eligible-date-badge {
    background: #fff;
    border: 2px solid #28a745;
    color: #28a745;
    padding: 10px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.eligible-date-badge.not-eligible {
    border-color: #ffc107;
    color: #856404;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
}

.eligible-date-badge .label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.eligible-date-badge .date {
    font-size: 15px;
    font-weight: 800;
}

.profile-eligibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid #28a745;
    background: rgba(40, 167, 69, 0.05);
    color: #28a745;
}

.profile-eligibility-badge.not-eligible {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
    color: #856404;
}

.profile-top-alert {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 16px;
    gap: 20px;
    background: #fff;
    border: 1px solid #e1e8ed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-top-alert.eligible {
    border-left: 6px solid #28a745;
    background: linear-gradient(to right, rgba(40, 167, 69, 0.05), #fff);
}

.profile-top-alert.not-eligible {
    border-left: 6px solid #ffc107;
    background: linear-gradient(to right, rgba(255, 193, 7, 0.05), #fff);
}

.profile-top-alert .alert-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-top-alert.eligible .alert-icon {
    color: #28a745;
}

.profile-top-alert.not-eligible .alert-icon {
    color: #ffb100;
}

.profile-top-alert .alert-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-top-alert .alert-text .title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}

.profile-top-alert.eligible .alert-text .title {
    color: #1e7e34;
}

.profile-top-alert.not-eligible .alert-text .title {
    color: #856404;
}

.profile-top-alert .alert-text .subtitle {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.profile-top-alert .alert-action {
    display: flex;
    align-items: center;
}

.profile-top-alert .alert-action .badge {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donor-count-badge .label {
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.donor-count-badge .value {
    font-size: 18px;
    font-weight: 800;
}

/* ==========================================================================
   PREMIUM AUTHENTICATION PAGES (LOGIN & REGISTER)
   ========================================================================== */

.auth-page-wrapper {
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f7fa 100%);
    padding: 50px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 15px;
}

.auth-form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form-group label {
    display: block;
    font-weight: 700;
    color: #444;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.auth-form-group label span {
    color: red;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrapper i.input-icon {
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
}

.auth-form-control {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: #f8fafc;
    border: 1.5px solid #edf2f7;
    border-radius: 12px;
    font-size: 15px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.auth-form-control:focus {
    background: #fff;
    border-color: #ED2224;
    box-shadow: 0 0 0 4px rgba(237, 34, 36, 0.1);
    outline: none;
}

.auth-form-control:focus+i.input-icon {
    color: #ED2224;
}

.password-toggle-premium {
    position: absolute;
    right: 20px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
}

.password-toggle-premium:hover {
    color: #ED2224;
}

.auth-btn-primary {
    width: 100%;
    background: #ED2224;
    color: #fff !important;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(237, 34, 36, 0.2);
}

.auth-btn-primary:hover {
    background: #d61b1d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(237, 34, 36, 0.3);
}

.auth-footer-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.auth-footer-links a {
    color: red;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-footer-links a:hover {
    color: #ED2224;
}

/* Register Multi-Step Layout */
.all-register-blood-area {
    background: #fdfdfd;
    padding: 80px 0;
}

.register-card-premium {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8fafc;
}

.form-section-title .step-number {
    width: 32px;
    height: 32px;
    background: #ED2224;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.form-section-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.register-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 767px) {
    .register-grid {
        grid-template-columns: 1fr;
    }

    .auth-card-premium,
    .register-card-premium {
        padding: 30px 20px;
    }
}

/* Additional Auth Helpers */
.custom-radio .form-check-input:checked {
    background-color: #ED2224;
    border-color: #ED2224;
}

.custom-radio .form-check-label {
    font-weight: 600;
    color: #444;
}

.address-box {
    background: #fcfdfe;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
}

.advice-card {
    background: #fff5f5 !important;
    border: 1px solid #ffe3e3;
    line-height: 1.8;
}

.advice-card li i {
    width: 20px;
}

/* Auth Page specific fixes */
.auth-page-wrapper .container {
    max-width: 1200px;
}

/* Premium Registration Advice Section */
.premium-advice-container {
    background-color: #FDE9E9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.advice-heading {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.premium-advice-box {
    background-color: #fbf0f0;
    padding: 30px;
    border-radius: 4px;
}

.advice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advice-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.advice-list li:last-child {
    margin-bottom: 0;
}

.advice-list li i {
    color: #198754;
    font-size: 18px;
    margin-top: 2px;
    margin-right: 15px;
    min-width: 20px;
}

/* ==========================================================================
   DONOR REPORT / FEEDBACK BUTTON & MODAL
   ========================================================================== */

/* Action button wrappers */
.donor-action-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.donor-action-btns-sm {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Base button styles */
.btn-donor-report,
.btn-donor-share {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Desktop Report Button */
.btn-donor-report {
    background: #fff5f5;
    color: #ED2224;
    border: 1px solid rgba(237, 34, 36, 0.1);
}

.btn-donor-report:hover {
    background: #ED2224;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(237, 34, 36, 0.25);
}

.btn-donor-report-sm i,
.btn-donor-share-sm i {
    color: #FFF !important;
}

/* Desktop Share Button */
.btn-donor-share {
    background: #f0f7ff;
    color: #2e86de;
    border: 1px solid rgba(46, 134, 222, 0.1);
}

.btn-donor-share:hover {
    background: #2e86de;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(46, 134, 222, 0.25);
}

/* Mobile Pill Buttons */
.btn-donor-report-sm,
.btn-donor-share-sm {
    border: none;
    border-radius: 25px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: normal;
}

.btn-donor-report-sm {
    background: #FFF;
    color: #ED2224;
    box-shadow: 0 4px 12px rgba(237, 34, 36, 0.2);
}

.btn-donor-report-sm i {
    color: #ED2224 !important;
}

.btn-donor-report-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(237, 34, 36, 0.3);
}

.btn-donor-share-sm {
    background: linear-gradient(135deg, #2e86de 0%, #1d6caf 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(46, 134, 222, 0.2);
}

.btn-donor-share-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 134, 222, 0.3);
}

/* Large Profile Buttons */
.btn-donor-report-lg,
.btn-donor-share-lg {
    flex: 1;
    border: none;
    border-radius: 16px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

.btn-donor-report-lg {
    background: linear-gradient(135deg, #ED2224 0%, #c0392b 100%);
    box-shadow: 0 10px 25px rgba(237, 34, 36, 0.2);
}

.btn-donor-report-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(237, 34, 36, 0.3);
}

.btn-donor-share-lg {
    background: linear-gradient(135deg, #2e86de 0%, #1d6caf 100%);
    box-shadow: 0 10px 25px rgba(46, 134, 222, 0.2);
}

.btn-donor-share-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 134, 222, 0.3);
}


/* Modal shell */
.report-modal-content {
    border-radius: 20px !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Header */
.report-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #ED2224 0%, #c0392b 100%);
    padding: 20px 24px 16px;
    border-radius: 20px 20px 0 0;
}

.report-modal-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-flag-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.status-badge.status-ready {
    color: #198754;
}

.report-modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 2px;
}

.report-modal-subtitle {
    color: rgba(255, 255, 255, 0.80);
    font-size: 12px;
    margin: 0;
}

.btn-report-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}

.btn-report-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Body */
.report-modal-body {
    padding: 20px 24px;
    background: #fff;
}

.report-reason-label {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Select dropdown hint */
.report-select-hint {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 3px;
}

/* Multi-select list */
.report-select {
    width: 100%;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    outline: none;
    appearance: auto;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 4px;
    cursor: pointer;
}

.report-select:focus {
    border-color: #ED2224;
    box-shadow: 0 0 0 3px rgba(237, 34, 36, 0.07);
    background: #fff;
}

.report-select option {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.6;
}



/* Textarea */
.report-comment-area {
    margin-top: 4px;
}

.report-textarea {
    width: 100%;
    border: 1.5px solid #eee;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #444;
    resize: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.report-textarea:focus {
    border-color: #ED2224;
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 34, 36, 0.08);
}

/* Feedback messages */
.report-feedback-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.report-feedback-success {
    background: #e9f8ee;
    color: #27ae60;
    border: 1px solid #a9dfbf;
}

.report-feedback-error {
    background: #fff5f5;
    color: #c0392b;
    border: 1px solid #f5b7b1;
}

/* Footer */
.report-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 24px 20px;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.btn-report-cancel {
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-report-cancel:hover {
    background: #e8e8e8;
}

.btn-report-submit {
    background: linear-gradient(135deg, #ED2224, #c0392b);
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-report-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(237, 34, 36, 0.35);
}

.btn-report-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Female Donor Modal Specific Styles */
.female-modal-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    padding: 20px 24px 16px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.female-modal-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.female-instruction-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border-left: 4px solid #198754;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #075e54;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

.whatsapp-info i {
    font-size: 20px;
}

.call-list-premium {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.call-item-premium {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
}

.call-item-premium i {
    color: #198754;
}

.call-item-premium:hover {
    border-color: #198754;
    background: #f0fff4;
}

.warning-box-premium {
    background: rgba(255, 193, 7, 0.1);
    border: 1px dashed #ffc107;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    color: #664d03;
    line-height: 1.5;
}

.admin-pin-group {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.admin-pin-group .form-control:focus {
    box-shadow: none !important;
    border-color: #198754 !important;
    outline: none !important;
}

.pin-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #198754;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.btn-female-submit {
    width: 100%;
    margin-top: 15px;
    background: linear-gradient(135deg, #198754, #146c43);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-female-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
}

.number-reveal-area {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 2px solid #198754;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revealed-number {
    font-size: 20px;
    font-weight: 800;
    color: #198754;
    letter-spacing: 1px;
}

/* Female Number Trigger Styling */
.female-number-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ED2224;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 2px 0;
}

.female-number-trigger i {
    font-size: 14px;
}

.female-number-trigger:hover {
    color: #c0392b;
    transform: scale(1.02);
}

/* Announcement Modal Styles */
.btn-close-premium {
    background: #f8f9fa;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 5px;
    right: 5px;
}

.btn-close-premium:hover {
    background: #ee2c2c;
    color: #fff;
    transform: rotate(90deg);
}

.popup-icon-wrapper {
    display: flex;
    justify-content: center;
}

.popup-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ee2c2c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(238, 44, 44, 0.4);
    border: 5px solid #fff;
    margin-top: -10px;
}

.popup-title {
    color: #2c3e50;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.popup-content-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 15px;
}

.btn-premium-close {
    background: linear-gradient(135deg, #ee2c2c, #c0392b);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 44, 44, 0.5);
    color: #fff;
}

/* ==========================================================================
   Roktobondhu Official Shop Styles
   ========================================================================== */

/* Shop Index & Product Cards */
.shop-title-area h2 {
    font-size: 2.2rem;
    color: #333;
}

.shop-title-area p {
    font-size: 1rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(237, 34, 36, 0.08);
    border-color: rgba(237, 34, 36, 0.1);
}

.product-img-wrapper {
    position: relative;
    height: 280px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-placeholder {
    font-size: 3rem;
    color: #eee;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ED2224;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(237, 34, 36, 0.15);
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    height: 35px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.old-price {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 8px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-product-detail {
    padding: 8px 15px;
    background: #f8f9fa;
    color: #555;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid #eee;
    text-align: center;
}

.btn-product-detail:hover {
    background: #eee;
    color: #000;
}

.btn-buy-now {
    padding: 8px 15px;
    background: #ED2224;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 12px rgba(237, 34, 36, 0.15);
}

.btn-buy-now:hover {
    background: #d01d20;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(237, 34, 36, 0.2);
}

.empty-shop {
    color: #888;
}

.empty-shop i {
    font-size: 5rem;
    opacity: 0.3;
}

/* Product Detail Page */
.product-detail-area {
    background: #fdfdfd;
    min-height: 80vh;
}

.product-gallery {
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #eee;
}

.main-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f9fa;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumb-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    height: 80px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active {
    border-color: #ED2224;
    background: #fff;
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 10px;
    margin-bottom: 5px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ED2224;
}

.old-price {
    font-size: 1.2rem;
    color: #aaa;
    text-decoration: line-through;
}

.detail-description h5 {
    font-weight: 700;
    color: #444;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.desc-content {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.btn-buy-now-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 12px 28px;
    background: #ED2224;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(237, 34, 36, 0.25);
    transition: all 0.3s;
    border: none;
}

.btn-buy-now-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 34, 36, 0.35);
    background: #d01d20;
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid #efefef;
    padding-top: 30px;
}

.feature-item {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

.feature-item i {
    display: block;
    font-size: 1.5rem;
    color: #ED2224;
    margin-bottom: 8px;
}

.save-badge {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 15px;
}

/* Checkout Page */
.checkout-area {
    background: #fdfdfd;
}

.checkout-wrapper {
    border-radius: 25px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.order-img {
    width: 100%;
    border-radius: 15px;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.total-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ED2224;
}

.payment-info-box {
    background: #F5FBFF;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e1f0ff;
}

.p-method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.p-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-icon.bkash {
    background: #e2136e;
}

.p-icon.nagad {
    background: linear-gradient(135deg, #f7941d 0%, #ed1c24 100%);
}

.p-icon.rocket {
    background: #8c3494;
}

.p-details {
    display: flex;
    flex-direction: column;
}

.p-name {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.p-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
}

.btn-confirm-order {
    display: inline-block;
    min-width: 250px;
    padding: 14px 40px;
    background: #ED2224;
    color: #fff !important;
    text-align: center;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(237, 34, 36, 0.25);
    transition: all 0.3s;
}

.btn-confirm-order:hover {
    background: #d01d20;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(237, 34, 36, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shop-title-area h2 {
        font-size: 1.8rem;
    }

    .product-img-wrapper {
        height: 220px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-title {
        font-size: 1.8rem;
    }

    .order-img {
        height: 150px;
        object-fit: contain;
    }

    .btn-confirm-order {
        width: 100%;
    }
}

/* ==========================================================================
   Premium Mobile Navigation & Side Drawer
   ========================================================================== */

/* Bottom Navigation Bar (Glassmorphism) */
.footer-m-icon {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    /* Shown via media query */
    padding: 8px 0 12px;
    z-index: 1000;
}

.botton-nav-menu {
    margin: 0;
    padding: 6px 10px 3px 10px;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.botton-nav-menu li {
    flex: 1;
}

.botton-nav-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
    gap: 4px;
}

.botton-nav-menu li a i {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.botton-nav-menu li a.active {
    color: #ED2224;
}

.botton-nav-menu li a.active i {
    transform: translateY(-3px) scale(1.1);
}

/* Profile Nav Icon with Dot */
.profile-nav-icon {
    position: relative;
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.status-dot.eligible {
    background: #2ecc71;
}

.status-dot.not-eligible {
    background: #ED2224;
}

/* Active indicator dot under Profile text (matches screenshot) */
.botton-nav-menu li a.active .status-dot {
    bottom: -2px;
    right: -2px;
}

.botton-nav-menu li a[href*="profile"].active::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    margin-top: 2px;
}

/* Side Drawer Backdrop */
.botton-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.botton-nav-open .botton-nav-backdrop {
    opacity: 1;
    visibility: visible;
}

/* Side Drawer (Premium Redesign) */
.botton-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.botton-nav-open .botton-nav-container {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.drawer-logo {
    height: 35px;
}

.drawer-close {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.2s;
}

.drawer-close:hover {
    background: #fee2e2;
    color: #ED2224;
}

/* Drawer Profile & Guest Cards */
.drawer-profile-card,
.drawer-guest-card {
    margin: 15px;
    padding: 18px;
    border-radius: 20px;
    background: #fdf2f2;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.drawer-profile-card {
    border: 1px solid #fee2e2;
    background: #fffafa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Removed old profile-avatar style */

.profile-info h6 {
    margin: 0;
    font-weight: 800;
    color: #333;
}

.eligibility-status {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.eligibility-status.eligible {
    color: #2e7d32;
}

.eligibility-status.not-eligible {
    color: #d32f2f;
}

/* Nav List & Labels */
.botton-nav-list {
    list-style: none;
    padding: 0 10px 30px;
    margin: 0;
    overflow-y: auto;
    flex: 1;
    padding-bottom: 50px;
}

.nav-label {
    padding: 20px 10px 10px;
    font-size: 11px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.botton-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #444;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 14px;
}

.botton-nav-list li a i {
    width: 20px;
    text-align: center;
    color: #888;
    font-size: 16px;
    transition: color 0.2s;
}

.botton-nav-list li a:hover,
.botton-nav-list li a.active {
    background: #fff5f5;
    color: #ED2224;
}

.botton-nav-list li a:hover i,
.botton-nav-list li a.active i {
    color: #ED2224;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .footer-m-icon {
        display: block;
    }
}

/* Profile Photo & Fallback Styles */
.profile-avatar {
    width: 60px;
    /* Slightly larger for better detail */
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-fallback {
    width: 100%;
    height: 100%;
    background: #ED2224;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.profile-fallback i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Polished & Compact Guest Card Styles */
.drawer-guest-card {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(145deg, #ED2224, #C61D1E);
    color: #fff;
    padding: 10px;
    margin: 5px 15px 5px;
    border-radius: 18px;
    box-shadow: 0 8px 15px rgba(237, 34, 36, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
}

.guest-card-icon {
    width: 40px;
    /* Smaller icon container */
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    /* Smaller icon */
    margin-bottom: 8px;
    color: #fff;
}

.drawer-guest-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    /* Smaller font */
    line-height: 1.4;
    font-weight: 500;
}

.btn-drawer-join {
    background: #fff;
    color: #ED2224;
    padding: 7px 20px;
    /* More compact button */
    border-radius: 50px;
    font-size: 12px;
    /* Smaller font */
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: none;
}

.btn-drawer-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
    color: #ED2224;
}

.form-control-premium:focus {
    outline: none;
}

/* ==========================================================================
   Blood Card Generator Styles
   ========================================================================== */

#cropperImage {
    max-width: 100%;
    display: block;
}

.cropper-view-box,
.cropper-face {
    border-radius: 50%;
}

.modal-content-premium {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modal-premium-header {
    background: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-premium-header h5 {
    margin: 0;
    color: #ED2224;
    font-weight: 700;
}

.close-premium {
    background: #f8f9fa;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    cursor: pointer;
    outline: none !important;
}

.close-premium:hover {
    background: #ED2224;
    color: #fff;
    transform: rotate(90deg);
}

.card-form-premium {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group-premium {
    margin-bottom: 25px;
}

.form-group-premium label {
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

.form-control-premium {
    height: 55px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
    background: #fdfdfd;
}

.form-control-premium:focus {
    border-color: #ED2224;
    box-shadow: 0 10px 25px rgba(237, 34, 36, 0.1);
    background: #fff;
    outline: none;
}

select.form-control-premium {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 45px !important;
}

.custom-file-premium {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 55px;
    background: #fdfdfd;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.custom-file-premium:hover {
    border-color: #ED2224;
    background: #fff;
}

.custom-file-premium input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-custom-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-weight: 500;
    width: 100%;
    position: relative;
    z-index: 1;
}

.file-browse-btn {
    background: #ED2224;
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

#file-name-display {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 120px);
}

.premium-card {
    width: 570px;
    height: 350px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: #fff;
    transition: all 0.5s ease;
    margin: 20px auto;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.c_header_premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.logo-area img {
    height: 65px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.logo-area img.logo-light {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.blood-badge {
    width: 65px;
    height: 65px;
    background: #ED2224;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(237, 34, 36, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: rotate(-10deg);
}

.blood-text {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c_body_premium {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.c_avatar_premium {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #fff;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.c_avatar_premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-row i {
    width: 18px;
    text-align: center;
    color: #fff;
    opacity: 1;
}

.c_footer_premium {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 15px;
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin-bottom: 10px;
}

.c_footer_premium p {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-transform: uppercase;
}

.colors-premium {
    text-align: center;
    margin: 20px auto 35px;
}

.colors-premium ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    margin: 0 auto;
}

.color-dot {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.color-dot:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.color-dot.active {
    border-color: #ED2224;
    transform: scale(1.1);
}

@media (max-width: 600px) {

    .premium-card,
    .card-classic {
        width: 570px !important;
        height: 350px !important;
        position: relative;
        left: 50%;
        transform: translateX(-50%) scale(0.6);
        transform-origin: center top;
        margin: 25px 0 -140px 0 !important;
    }

    .bloodCard {
        width: 100%;
        overflow: hidden !important;
        padding-bottom: 20px;
        position: relative;
    }

    .colors-premium {
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .style-selector-area {
        padding: 6px;
        margin-top: 10px;
    }

    .style-label {
        padding: 8px 15px;
        font-size: 13px;
        gap: 6px;
    }

    .style-label i {
        font-size: 15px;
    }

    .color-dot {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        border-width: 2px;
    }

    .colors-premium ul {
        gap: 10px;
    }

    .page-hero-premium {
        padding: 40px 15px 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .card-area.section-padding {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .download-btn-wrapper {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {

    .premium-card,
    .card-classic {
        transform: translateX(-50%) scale(0.55);
        margin-bottom: -160px !important;
    }
}

@media (max-width: 380px) {

    .premium-card,
    .card-classic {
        transform: translateX(-50%) scale(0.5);
        margin-bottom: -180px !important;
    }
}

.card-classic {
    width: 570px;
    background: #f0f0f0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23e8e8e8'/%3E%3Crect width='1' height='1' fill='%23d8d8d8'/%3E%3C/svg%3E");
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
}

.classic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px 15px;
}

.classic-avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.classic-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classic-blood-badge {
    width: 68px;
    height: 68px;
    background: #ED2224;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(237, 34, 36, 0.35);
}

.classic-blood-badge span {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.classic-logo-wrap {
    text-align: right;
}

.classic-logo-img {
    max-height: 80px;
    max-width: 130px;
    object-fit: contain;
}

.classic-info {
    padding: 5px 28px 20px;
}

.classic-name {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.classic-info p {
    font-size: 15px !important;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
}

.classic-info p b {
    color: #111;
}

.classic-footer {
    margin-top: auto;
}

.classic-footer p {
    background: #ED2224;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.style-selector-area {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 15px;
    display: inline-flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.style-btn-group {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.style-radio-btn {
    display: none;
}

.style-label {
    padding: 10px 25px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    font-size: 15px;
    white-space: nowrap;
}

.style-label i {
    color: #888;
    font-size: 18px;
    transition: color 0.3s;
}

.style-radio-btn:checked+.style-label {
    color: #fff;
    background: #ED2224;
    box-shadow: 0 5px 15px rgba(237, 34, 36, 0.3);
}

.style-radio-btn:checked+.style-label i {
    color: #fff;
}

#style-classic-container {
    display: block;
}

#style-premium-container {
    display: none;
}

.page-hero-premium {
    background: #ED2224;
    background: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(at 50% 100%, rgba(183, 28, 28, 0.8) 0%, transparent 100%),
        linear-gradient(135deg, #FF5252 0%, #D32F2F 50%, #B71C1C 100%);
    padding: 70px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 -15px 30px rgba(0, 0, 0, 0.05);
}

.page-hero-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 15s infinite ease-in-out;
}

.page-hero-premium::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s infinite ease-in-out reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation: float-shape 12s infinite ease-in-out;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    transform: rotate(-15deg);
    animation: float-shape 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 8%;
    transform: rotate(30deg);
    animation: float-shape 18s infinite ease-in-out;
}

.shape-4 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    right: 20%;
    transform: rotate(60deg);
    animation: float-shape 10s infinite ease-in-out reverse;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--rot, 0deg) + 10deg));
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    line-height: 1.1;
    font-family: 'Inter', 'Kalpurush', 'Roboto', sans-serif;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.6;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 22px;
}

.hero-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-dots span.active {
    background: rgba(255, 255, 255, 0.9);
    width: 22px;
    border-radius: 4px;
}

.support-alert-container {
    padding: 30px 15px;
    max-width: 500px;
    margin: 0 auto;
}

.support-alert-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.alert-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #FFEBEE;
    color: #ED2224;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

.btn-chrome-intent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4C46C1;
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none !important;
    margin: 25px 0;
    box-shadow: 0 10px 20px rgba(76, 70, 193, 0.2);
    transition: all 0.3s;
}

.btn-chrome-intent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(76, 70, 193, 0.3);
    color: #fff;
}

.alternative-instructions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* Blood Card Background Dots */
.dot-bg0 {
    background: linear-gradient(to right, #92FE9D, #00C9FF);
}

.dot-bg1 {
    background: url('../images/card/premium/bg1.png') center/cover;
}

.dot-bg2 {
    background: url('../images/card/premium/bg2.png') center/cover;
}

.dot-bg3 {
    background: url('../images/card/premium/bg3.png') center/cover;
}

.dot-bg4 {
    background: url('../images/card/premium/bg4.png') center/cover;
}

.dot-old1 {
    background: linear-gradient(45deg, #00C9FF, #92FE9D);
}

.dot-old2 {
    background: linear-gradient(45deg, #f5af19, #f12711);
}

.dot-old3 {
    background: linear-gradient(45deg, #8e44ad, #3498db);
}

.dot-old4 {
    background: linear-gradient(45deg, #1D976C, #93F9B9);
}

.dot-old5 {
    background: url('../images/card/bg.jpg') center/cover;
}

.hero-title,
.hero-subtitle,
.hero-dots {
    position: relative;
    z-index: 2;
}

.cropper-container-wrapper {
    max-height: 400px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.shop-product-card {
    border: none !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07) !important;
    border-radius: 25px !important;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shop-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(237, 34, 36, 0.12) !important;
}

.shop-product-card .product-img-wrapper {
    border-radius: 25px 25px 0 0;
    height: 300px;
}

.shop-product-card .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
}

.checkout-card-premium {
    background: #ffffff !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    color: #333 !important;
    width: 100% !important;
    height: auto !important;
}

.checkout-card-premium h4,
.checkout-card-premium h5,
.checkout-card-premium h6,
.checkout-card-premium label,
.checkout-card-premium p,
.checkout-card-premium span {
    color: #333 !important;
    text-shadow: none !important;
}

.order-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    color: #666 !important;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.total-price {
    color: #ED2224 !important;
}

.btn-confirm-order {
    background: #ED2224;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(237, 34, 36, 0.2);
    transition: all 0.3s;
}

}

.btn-confirm-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 34, 36, 0.3);
    color: #fff;
}

/* ========================================================================= */
/* Testimonials Section (Trustpilot Style / Masonry) */
/* ========================================================================= */

.testimonials-area {
    position: relative;
}

.trustpilot-overall {
    font-size: 16px;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .masonry-grid {
        column-count: 1;
    }
    .testimonial-carousel-mobile.owl-loaded {
        display: block;
        column-count: auto;
    }
    .testimonial-carousel-mobile .masonry-item {
        margin-bottom: 0;
    }
    .testimonial-carousel-mobile .owl-dots {
        margin-top: 20px;
        text-align: center;
    }
    .testimonial-carousel-mobile .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 7px;
        background: #D6D6D6;
        display: block;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 30px;
    }
    .testimonial-carousel-mobile .owl-dot.active span {
        background: #ED2224;
    }
    .testimonial-carousel-mobile .testimonial-card-premium {
        height: auto;
    }
}

.testimonial-card-premium {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.tp-quote {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tp-quote i {
    color: #ED2224;
    /* Roktobondhu Red */
    font-size: 28px;
    opacity: 0.2;
}

.tp-body {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
    margin-bottom: 0;
}

.tp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    margin-top: 20px;
    padding-top: 15px;
}

.tp-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-avatar {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.tp-user-info strong {
    display: block;
    font-size: 15px;
    color: #222;
}

.tp-user-info span {
    font-size: 12px;
    color: #777;
    text-transform: capitalize;
}

.tp-date {
    font-size: 13px;
    color: #888;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px !important;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #ccc !important;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
    background: #00B67A !important;
    transform: scale(1.3);
}

.testimonials-title {
    margin-bottom: 20px !important;
}