:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme-color: #6C57D2;
    --theme-color-2: #FF792E;
    --header: #003566;
    --header-2: #ff6600;
    --text: #656565;
    --border: #E6EFFF;
    --ratting: #F8BC26;
    --bg: #FFF9ED;
    --bg-2: #6C57D21A;
    ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
input,
button,
select,
textarea,
li {
    font-family: 'DM Sans', 'Noto Sans Gujarati', sans-serif !important;
}

/* Category List Css */
.category-item-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.category-item-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 121, 46, 0.2);
    border-color: #ff792e;
}

.category-item-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff792e, #ffb380);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.category-item-box:hover::before {
    transform: scaleX(1);
}

.category-item-img {
    width: 85px;
    height: 85px;
    padding: 10px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.category-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item-box:hover .category-item-img {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 121, 46, 0.35);
}

.category-item-name {
    margin-top: 25px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.3px;
    word-break: break-word;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .category-item-img {
        width: 110px;
        height: 110px;
    }

    .category-item-name {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .category-item-box {
        padding: 25px 15px;
    }

    .category-item-img {
        width: 90px;
        height: 90px;
    }

    .category-item-name {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .row {
        row-gap: 20px;
    }

    .category-item-img {
        width: 80px;
        height: 80px;
    }

    .category-item-name {
        font-size: 1rem;
    }
}

/* End Category List Css */

/* City List CSS */
.city-body {
    color: #003566;
    display: flex;
    justify-content: center;
}

.city-list {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 40px;
    max-width: 1050px;
    width: 100%;
    border: 1px solid #eee;
}

.city-title {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    color: #003566;
    margin-bottom: 25px;
}

.city-item {
    background: #fafafa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    color: #6c57d2;
    transition: all 0.35s ease;
    cursor: pointer;
}

.city-item:hover {
    background: #ffffff;
    border-color: #ff792e;
    color: #ff792e;
    box-shadow: 0 0 12px rgba(255, 121, 46, 0.25);
    transform: translateY(-3px);
}

/* End City List CSS */

.header-1 .header-right .theme-btn {
    border-width: 2px !important;
}

@media (max-width: 1199px) {
    .header-1 .header-right .theme-btn {
        display: none !important;
    }

    .header-1 .header-right .theme-btn-custom {
        display: none !important;
    }
}

.header-1 .header-right .theme-btn i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 5px;
    line-height: 0;
}

.header-1 .header-right .theme-btn-custom {
    background-color: var(--white);
    border: 2px solid var(--theme-color-2);
    color: var(--theme-color-2);
}

.header-1 .header-right .theme-btn-custom i {
    background-color: var(--theme-color-2);
    color: var(--white);
}

.header-1 .header-right .theme-btn-custom:hover {
    color: var(--white);
}

.theme-btn-custom {
    background: var(--theme-color-2);
    color: var(--white);
    display: inline-block;
    font-size: 15px;
    font-weight: 900;
    padding: 7px 30px;
    padding-right: 5px;
    border-radius: 0;
    line-height: 1;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    font-family: "DM Sans", sans-serif;
    overflow: hidden;
}

.theme-btn-custom i {
    width: 28px;
    height: 28px;
    line-height: 0;
    text-align: center;
    background-color: var(--white);
    color: var(--theme-color-2);
    margin-left: 5px;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.theme-btn-custom::before {
    content: "";
    background-color: var(--header-2);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 6px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.theme-btn-custom::after {
    content: "";
    background-color: var(--header-2);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 6px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.theme-btn-custom:hover::before,
.theme-btn-custom:hover::after {
    width: 100%;
}

.theme-btn-custom:hover i {
    background-color: var(--theme-color-2);
    color: var(--white);
}

.theme-btn-custom.bg-header {
    background-color: var(--header-2);
}

.theme-btn-custom.bg-header::before,
.theme-btn-custom.bg-header::after {
    background-color: var(--white);
}

.theme-btn-custom.bg-header i {
    background-color: var(--theme-color-2);
    color: var(--white);
}

.theme-btn-custom.bg-header:hover {
    color: var(--header-2);
}

/* Prevent offcanvas and wide rows from causing scroll */
html,
body {
    overflow-x: hidden;
}

/* Aboutus Page Style */

.card-custom {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.card-custom h5,
.card-custom h6 {
    color: #003566;
}

.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 30px;
    border-left: 3px solid #6c57d2;
}

.timeline .event {
    margin-bottom: 1.5rem;
}

.timeline .event h5 {
    color: #6c57d2;
    font-weight: 600;
}

/* End Aboutus page style */

/* Home page whychoose us style */
.choose-us-section {
    padding: 80px 0;
}

.feature-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px 40px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.06); */
    box-shadow: 0px 0px 4px #6c57d254;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px #6c57d24d;
}

.feature-img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    border: 3px solid #6c57d2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img-wrapper .img-tag {
    width: 45px;
    /* smaller size */
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-img-wrapper .img-tag img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.feature-card:hover .feature-img-wrapper .img-tag {
    transform: scale(1.06) rotate(-4deg);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #111;
    margin-top: 20px;
}

.feature-sub {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* End Home page whychoose us style */

/* Prakash printer card style */
.news-box-items {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.news-box-items:hover {
    transform: translateY(-5px);
}

.news-img {
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.news-box-items:hover .news-img img {
    transform: scale(1.05);
}

.download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.news-box-items:hover .download-btn {
    opacity: 1;
    transform: translateY(0);
}

.download-btn:hover {
    background: #6c57d2;
    color: #fff;
}

/* End Prakash printer card style */

.btn-primary {
    background-color: #6c57d2;
    border-color: #6c57d2;
}

.btn-warning {
    background-color: #ff792e;
    border-color: #ff792e;
}

/* product gallery view product detail page */
/* Main Images */
.main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    background-color: #f8f8f8;
    cursor: pointer;
}

/* Thumbnails */
.thumbs-wrapper {
    position: relative;
}

.thumbs-swiper .swiper-slide {
    height: auto;
    opacity: 0.5;
    cursor: pointer;
}

.thumbs-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #fff;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #6c57d2;
    border-radius: 8px;
}

/* Thumbnail arrows */
.thumbs-wrapper .swiper-button-next,
.thumbs-wrapper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.8);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.thumbs-wrapper .swiper-button-next:after,
.thumbs-wrapper .swiper-button-prev:after {
    font-size: 12px;
    color: #333;
}

/* Fade effect for hint */
.thumbs-wrapper::before,
.thumbs-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.thumbs-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.thumbs-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .main-swiper .swiper-slide img {
        max-height: 300px;
    }

    .thumbs-swiper .swiper-slide img {
        max-height: 60px;
    }
}

/* End product gallery view product detail page */

/* wave home page */
.wave-divider {
    z-index: 99;
    position: relative;
    margin-top: -60px;
}

.wave-container {
    /* transform: rotate(180deg); */
    position: relative;
    height: 60px;
    overflow: hidden;
}

.wave-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0e7eff, #4074d9, #ff6b6b, #ffb53d);
    opacity: 1;
    /* background: linear-gradient(-45deg, #067aff, #4073d9f4, #ff6b6bf4, #ffb53df5); */
    background-size: 400% 400%;

    animation: gradientAnimation 15s ease infinite;

    /* Mask the gradient to the wave shape */
    mask-image: url(#waveMask);
    -webkit-mask-image: url(#waveMask);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: bottom;
    -webkit-mask-position: bottom;
}

@media (max-width: 991px) {
    .wave-divider {
        z-index: 99;
        position: relative;
        margin-top: -50px;
        top: 5px;
    }

    .wave-container {
        /* transform: rotate(180deg); */
        position: relative;
        height: 30px;
        overflow: hidden;
    }

    .wave-background {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #ff6e6e, #9b6fa2);
        opacity: 1.5;
        /* background: linear-gradient(-45deg, #067aff, #4073d9f4, #ff6b6bf4, #ffb53df5); */
        background-size: 400% 400%;

        animation: gradientAnimation 15s ease infinite;

        /* Mask the gradient to the wave shape */
        mask-image: url(#waveMask);
        -webkit-mask-image: url(#waveMask);
        mask-size: 100% 100%;
        -webkit-mask-size: 100% 100%;
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: bottom;
        -webkit-mask-position: bottom;
    }
}

@media (max-width: 768px) {
    .wave-divider {
        z-index: 99;
        position: relative;
        margin-top: -50px;
        top: 5px;
    }

    .wave-container {
        /* transform: rotate(180deg); */
        position: relative;
        height: 30px;
        overflow: hidden;
    }

    .wave-background {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #ff6e6e, #9b6fa2);
        opacity: 1.5;
        /* background: linear-gradient(-45deg, #067aff, #4073d9f4, #ff6b6bf4, #ffb53df5); */
        background-size: 400% 400%;

        animation: gradientAnimation 15s ease infinite;

        /* Mask the gradient to the wave shape */
        mask-image: url(#waveMask);
        -webkit-mask-image: url(#waveMask);
        mask-size: 100% 100%;
        -webkit-mask-size: 100% 100%;
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: bottom;
        -webkit-mask-position: bottom;
    }
}

/* SLider mobile view Css */
.hero-section {
    position: relative;
    padding: 0;
}

.carousel-inner,
.carousel-item,
.carousel-item img {
    height: 100vh;
    /* Full height */
    max-height: 100vh;
    object-fit: cover;
}

@media (max-width: 768px) {

    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 70vh;
        /* Slightly shorter on small screens */
    }
}

/* End SLider mobile view Css */

/* Home page Category Section */

.animated-bg {
    background: linear-gradient(-45deg, #1f87ff, #0077ff, #ff6b6b, #ffd93d);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    padding: 50px 0;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Divider Line */
.category-divider {
    width: 0;
    height: 2px;
    margin: 50px auto;
    background: linear-gradient(to right, #ffcc70, #ffffff, #ffcc70);
    animation: dividerExpand 1s forwards 0.5s;
}

@keyframes dividerExpand {
    to {
        width: 100%;
    }
}

/* Category Title */
.category-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 36px;
}

/* Cards */
.working-process-box-items-3 {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    color: #fff;
}

.working-process-box-items-3 img,
.working-process-box-items-3 i {
    width: 60px;
    font-size: 40px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.working-process-box-items-3:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Blood Page Styles */
:root {
    --gradient-primary: linear-gradient(135deg, #6C57D2 0%, #FF792E 100%);
    --gradient-hover: linear-gradient(135deg, #FF792E 0%, #6C57D2 100%);
}

.btn-gradient-theme {
    background: var(--gradient-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 87, 210, 0.3);
}

.btn-gradient-theme:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 121, 46, 0.4);
    color: white;
}

.text-gradient-theme {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blood-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(108, 87, 210, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 121, 46, 0.15);
    border-color: rgba(255, 121, 46, 0.3);
}

.watermark-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.05;
    color: #6C57D2;
    pointer-events: none;
}

/* General Page Styles */
.about-text {
    text-align: justify;
}

.offcanvas-backdrop {
    margin-top: 0px !important;
}

/* Prakash Printers Page Styles */
.news-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.working-process-box-items-3:hover img,
.working-process-box-items-3:hover i {
    transform: scale(1.1);
}

/* Paid highlight */
.paid-box {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* End Homepage Category section */

/* Logo Effect CSS */
.logo-wrapper {
    display: inline-block;
    opacity: 0;
    transform: scale(0.8);
    animation: logoLoad 1.5s ease-out forwards;
}

.logo-img {
    width: 85px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: blur(0px);
}

/* Hover works perfectly now */
.logo-img:hover {
    transform: scale(1.12);
    filter: brightness(1.1) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Page load animation on wrapper only */
@keyframes logoLoad {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* End Logo Effect CSS */

/* Start Range Slider CSS */
#slider-range {
    margin: 40px auto;
    max-width: 600px;
}

/* Slim track */
.noUi-target {
    background: #ccc;
    border-radius: 5px;
    height: 6px;
    box-shadow: none;
}

/* Selected range */
.noUi-connect {
    background: #5c5fe1;
}

/* Rounded handles */
.noUi-handle {
    box-shadow: 0px 0px 3px 2px #0045ba91 !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    /* Make it perfectly round */
    background: #4f50b9;
    /* Match your color */
    top: -4px;
    /* Vertically center it on 8px track */
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.noUi-tooltip {
    display: none !important;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
    /* Hide default bars */
}

/* End Range Slider CSS */


.mean-expand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px;
    /* adjust spacing between text and icon */
}

/* Language Dropdown CSS */
.language-selector {
    padding: 20px;
    position: relative;
    display: inline-block;
}

.language-selector .fa-globe {
    font-size: 22px;
    color: #333;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.language-dropdown {
    margin-top: 5px;
    position: absolute;
    top: 100%;
    left: -35px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    overflow: hidden;
    z-index: 1000;
    transform-origin: top center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.language-dropdown div {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.language-selector:hover>i {
    color: #ff792e !important;
    transition: all 0.4s ease-in-out;
}

.language-dropdown div:hover {
    font-weight: 600;
    background-color: #ffffff;
    color: #ff792e;
}

.language-selector:hover .fa-globe {
    color: #ff792e;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* End Language Dropdown CSS */

/* Product Card CSS */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover .product-overlay {
    opacity: 1;
}

/* End Product Card CSS */

/* Business Profile Design Styles (Round 1-8) */
/* Using Site Theme Variables */
:root {
    --theme-primary: #6C57D2;
    --theme-primary-dark: #5a48b0;
    --theme-secondary: #FF792E;
    --theme-dark: #0f172a;
    --theme-text: #475569;
    --theme-bg-light: #f8fafc;
    --card-radius: 24px;
}

body {
    background-color: #f8fafc;
    font-family: 'Outfit', sans-serif;
}

/* 1. Hero Slider (Separated) */
.hero-slider-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 70px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: auto !important;
        min-height: auto !important;
    }

    .hero-swiper {
        height: auto !important;
    }

    .hero-slide img {
        height: auto !important;
        object-fit: contain !important;
    }
}

/* 2. Business Profile Header (Modern & Classy) */
.business-profile-header {
    position: relative;
    background: #fff;
    padding-bottom: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-content-wrapper {
    transform: translateY(-80px);
    /* Significant overlap */
    z-index: 10;
    position: relative;
}

/* Glassy Profile Image Container */
.profile-img-container {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 30px;
    /* Squircle */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    margin: 0 auto;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.business-info-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Decorative minimalist background element */
.business-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--theme-secondary) 0%, transparent 70%);
    opacity: 0.05;
    border-bottom-left-radius: 100%;
}

.business-name-title {
    color: var(--theme-dark);
    font-weight: 800;
    font-size: 2.8rem;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(45deg, var(--theme-dark), var(--theme-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-theme-modern {
    background: rgba(255, 121, 46, 0.1);
    color: var(--theme-secondary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid rgba(255, 121, 46, 0.2);
}

/* Refined Meta List */
.meta-list-modern {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.meta-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--theme-text);
    font-size: 1.05rem;
    font-weight: 500;
}

.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(108, 87, 210, 0.08);
    /* Light purple bg */
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.meta-list-modern li:hover .icon-box {
    background: var(--theme-primary);
    color: #fff;
    transform: rotate(10deg);
}

/* Modern Buttons */
.btn-theme-modern {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 10px rgba(108, 87, 210, 0.12);
}

.btn-primary-modern {
    background: var(--theme-primary);
    color: #fff;
}

.btn-primary-modern:hover {
    background: var(--theme-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 87, 210, 0.3);
    color: #fff;
}

.btn-secondary-modern {
    background: #fff;
    color: var(--theme-dark);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.btn-secondary-modern:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
    color: var(--theme-dark);
}

.btn-whatsapp-modern {
    background: #dcfce7;
    color: #15803d;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
}

.btn-whatsapp-modern:hover {
    background: #bbf7d0;
    color: #14532d;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--theme-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-dark);
    position: relative;
    display: inline-block;
}

/* Product Cards (Classy) */
.product-card-classy {
    border: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
}

.product-card-classy:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft classy shadow */
}

.card-img-wrapper {
    height: 280px;
    /* Taller elegant image */
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-classy:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-overlay-actions {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card-classy:hover .card-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.action-btn-sm:hover {
    background: var(--theme-primary);
    color: #fff;
}

.card-body-classy {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 5px;
}

.product-category {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--theme-primary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag small {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

/* Modern Tabs */
.tabs-pill-modern {
    display: inline-flex;
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.tabs-pill-modern .nav-link {
    border-radius: 40px;
    padding: 10px 25px;
    font-weight: 600;
    color: var(--theme-text);
    border: none;
    transition: all 0.3s;
}

.tabs-pill-modern .nav-link.active {
    background: var(--theme-dark);
    color: #fff;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
}

/* End Business Profile Design Styles */

/* Fix Icon Vertical Alignment in Premium Features */
.working-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px;
}

.working-icon img {
    margin-bottom: 0 !important;
    width: 50% !important;
    /* Adjust icon size if needed */
    height: auto !important;
    object-fit: contain;
}

/* Banner Styles & Overlay */
.breadcrumb-section {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    z-index: 1;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for better text contrast */
    z-index: -1;
}

.breadcrumb-section .page-heading {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h2,
.breadcrumb-section .breadcrumb-list li,
.breadcrumb-section .breadcrumb-list li a {
    color: #ffffff !important;
}

/* ULTRA-AGGRESSIVE BANNER FIX - CONSOLIDATED */
html,
body {
    overflow-x: hidden;
}

.breadcrumb-section.fix {
    overflow: visible !important;
}

.breadcrumb-section {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Blood banner uses its own dedicated class, not the base breadcrumb-section styles */
.blood-banner-section {
    min-height: unset;
}

.breadcrumb-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Dark overlay for readability */
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-heading {
    padding: 100px 0 !important;
    width: 100%;
}

/* MODERN PREMIUM PILL MENU - CINEMATIC WHITE TEXT */
.header-1 {
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%); */
    background: #0E1445;
    /* Cinematic Fade */
    backdrop-filter: blur(2px);
    /* Subtle blur */
    -webkit-backdrop-filter: blur(2px);
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
    /* Slightly taller for cinematic feel */
    display: flex;
    align-items: center;
}

/* Sticky: Solid Dark Blue (Theme) */
.header-1.sticky {
    background: #0E1445;
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-main {
    padding: 0 !important;
    width: 100%;
}

/* Menu Items - White & Classy */
.header-1 .header-main .main-menu>nav>ul>li>a {
    position: relative;
    padding: 8px 16px;
    margin: 0 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    /* Keep User's Preference from Manual Edit */
    letter-spacing: 0.3px;
    color: #ffffff !important;
    /* REVERTED TO WHITE */
    border-radius: 8px;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Legibility shadow */
}

/* Hover Effect: Soft Pill + Orange Text */
.header-1 .header-main .main-menu>nav>ul>li:hover>a {
    color: var(--theme-color-2) !important;
    /* Restore Orange */
    background-color: rgba(255, 255, 255, 0.15);
    /* Subtle pill */
}

/* Remove Old Underline */
.header-1 .header-main .main-menu>nav>ul>li>a::after {
    display: none;
}

/* --- MODERN FLOAT DROPDOWN --- */
.header-main .main-menu ul li .submenu {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 250px;
    top: 100%;
    margin-top: 10px;
}

/* Dropdown Items (Dark text on white bg) */
.header-main .main-menu ul li .submenu li a {
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    padding: 6px 15px;
    /* Reduced from 10px 15px */
    text-transform: capitalize;
    border-radius: 8px;
    transition: all 0.2s;
    border-bottom: none !important;
    text-shadow: none;
}

/* Fix for excessive submenu spacing - Override main.css */
.header-main .main-menu ul li .submenu li {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
    padding-bottom: 0 !important;
    margin-bottom: 2px !important;
    /* Minimal gap */
}

/* Dropdown Hover */
.header-main .main-menu ul li .submenu li a:hover {
    background: #f5f5f5;
    padding-left: 15px;
    color: var(--theme-color-2) !important;
}

/* Reset transforms/shadows */
.header-1:not(.sticky) .header-main .main-menu>nav>ul>li>a:hover {
    transform: none;
}

/* FIX LANGUAGE ICON COLOR (Override inline style) */
.header-1 .language-selector i {
    color: #ffffff !important;
    /* White on Dark Gradient */
    transition: color 0.3s ease;
}

/* Ensure it stays white on Sticky too */
.header-1.sticky .language-selector i {
    color: #ffffff !important;
}

/* Optional: Hover effect for language icon */
.header-1 .language-selector i:hover {}

/* =========================================
   Extracted from: purchase_sale.blade.php
   ========================================= */

.page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.page-link {
    color: var(--theme-color);
    border-radius: 5px;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.page-link:hover {
    background-color: var(--theme-color-2);
    color: #fff;
    border-color: var(--theme-color-2);
}

/* Price Slider CSS */
.price-slider-wrapper {
    position: relative;
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    margin: 25px 0 15px 0;
}

.price-slider-track {
    position: absolute;
    height: 100%;
    background: var(--theme-color);
    border-radius: 5px;
    z-index: 1;
}

.range-input {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    top: 0;
    z-index: 2;
}

.range-input::-webkit-slider-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: var(--theme-color);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-input::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border: none;
    border-radius: 50%;
    background: var(--theme-color);
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

/* Filter Sidebar Aesthetic */
.modern-sidebar {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-sidebar:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.filter-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
    border-radius: 2px;
}

/* Custom Checkboxes */
.custom-checkbox {
    position: relative;
    padding: 8px 12px 8px 35px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 8px;
}

.custom-checkbox:hover {
    color: var(--theme-color);
    background-color: #f8f9fa;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dcdcdc;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--theme-color);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Modern Search Input */
.modern-search-input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 20px 12px 45px;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 0.95rem;
    color: #333 !important;
}

.modern-search-input:focus {
    background: #fff;
    border-color: var(--theme-color);
    box-shadow: 0 4px 15px rgba(var(--theme-color-rgb), 0.1);
    color: #000 !important;
}

/* Price Range Inputs */
.price-input-group span {
    background: transparent;
    border: none;
    color: #777;
    font-weight: 500;
    padding-right: 5px;
}

.price-input-group .input-group-text {
    background: none;
    border: none;
}

.price-input-group input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333;
    font-weight: 600;
    border-radius: 50px !important;
    padding: 5px 15px;
    text-align: center;
    transition: all 0.2s;
}

.price-input-group input:focus {
    background: #fff;
    border-color: var(--theme-color);
    box-shadow: none;
}

/* Scrollbar for categories */
.category-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

.category-scroll::-webkit-scrollbar {
    width: 4px;
}

.category-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.category-scroll::-webkit-scrollbar-thumb:hover {}

/* =========================================
   Extracted from: layout/app.blade.php
   ========================================= */
body {}

/* =========================================
   Extracted from: home.blade.php
   ========================================= */

.hero-slider-section {
    position: relative;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 10;
    pointer-events: none;
}

/* Minimalist Navigation */
.swiper-nav-btn {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.swiper-nav-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-color, #6C57D2);
}

.gradient-box {
    width: 100%;
    height: 7px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
}

/* Use a pseudo-element to fake the gradient shadow */
.gradient-box::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: inherit;
    background: linear-gradient(-45deg, #0b7dff, #0048ff, #ff5757, #f6ca17);
    background-size: 400% 400%;
    filter: blur(10px);
    animation: gradientMove 15s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991px) {
    .gradient-box::before {
        content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: inherit;
        background: linear-gradient(223deg, #8072b6, #8e71ac, #ff5757, #f6ca17);
        background-size: 400% 400%;
        filter: blur(10px);
        animation: gradientMove 15s ease infinite;
        z-index: -1;
    }
}

/* =========================================
   Extracted from: about_us.blade.php
   ========================================= */

/* PWA Install Button Styles */
.pwa-install-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10000;
}

.pwa-install-btn {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pwa-install-btn:hover {
    background-color: var(--header);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pwa-install-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .pwa-install-container {
        bottom: 100px;
        /* Adjust for mobile bottom bars if any */
        right: 20px;
    }

    .pwa-install-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Fix Desktop Menu Wrapping */
@media (min-width: 1200px) and (max-width: 1450px) {
    .header-right {
        gap: 15px !important;
    }

    .header-main .main-menu ul li {
        margin-inline-end: 15px !important;
    }

    .header-main .main-menu ul li a {
        font-size: 15px !important;
        padding: 10px 5px !important;
    }

    /* Explicitly fix submenu spacing in this range */
    .header-main .main-menu ul li .submenu li a {
        padding: 10px 15px !important;
        height: auto !important;
        line-height: 1.5 !important;
    }

    .header-logo1 img {
        max-width: 140px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1180px !important;
    }
}

/* Fix Desktop Menu Wrapping */
@media (min-width: 1450px) {
    .header-right {
        gap: 17px !important;
    }

    .header-main .main-menu ul li {
        margin-inline-end: 17px !important;
    }

    .header-main .main-menu ul li a {
        font-size: 15px !important;
        padding: 10px 10px !important;
    }

    /* Explicitly fix submenu spacing in this range */
    .header-main .main-menu ul li .submenu li a {
        padding: 10px 15px !important;
        height: auto !important;
        line-height: 1.5 !important;
    }

    .header-logo1 img {
        max-width: 140px;
    }
}

/* Prevent Nice Select from appearing in SweetAlert modals */
.swal2-container .nice-select {
    display: none !important;
}

/* Prevent Nice Select from appearing in SweetAlert modals */
.swal2-container .nice-select {
    display: none !important;
}

/* Responsive Banner Styles for Mobile */
@media (max-width: 767.98px) {
    .breadcrumb-section {
        min-height: auto !important;
        aspect-ratio: 1024 / 435 !important;
    }

    .page-heading {
        padding: 0 !important;
    }
}

/* WebView / Header Visibility Margin-Top Fixes */
body:has(.header-section) .breadcrumb-section {
    margin-top: 70px !important;
}

body:not(:has(.header-section)) .breadcrumb-section {
    margin-top: 0px !important;
}

.header-section[style*="display: none"]~main .breadcrumb-section,
.header-section[style*="display:none"]~main .breadcrumb-section {
    margin-top: 0px !important;
}

/* =========================================================
   Blood Banner — img tag approach (universally reliable)
   Mobile WebView: full image, zero crop, natural height
   Desktop: max-height 280px, centered cover crop
   ========================================================= */
.blood-banner-wrapper {
    width: 100%;
    display: block;
    line-height: 0;
    /* remove gap below img */
    margin-top: 70px;
}

.blood-banner-img {
    width: 100%;
    height: auto;
    /* natural proportions — zero crop on mobile */
    display: block;
    max-height: 475px;
    object-fit: cover;
    object-position: center center;
}

/* WebView: header hidden — remove top gap */
body:not(:has(.header-section)) .blood-banner-wrapper {
    margin-top: 0 !important;
}