:root{
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #54b762;
  --bs-primary-rgb: 33, 92, 92;
  --bs-primary-hover: #863888;
  --bs-primary-hover-rgb: 20, 75, 75;
  --bs-secondary: #3a0256;
  --bs-secondary2: #863888;
  --bs-secondary3: #e9ff0d;
  --bs-secondary-rgb: 204, 232, 201;
  --bs-secondary2-rgb: 204, 232, 201;
  --bs-heading-color: #3a0256;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #fff;
  --nav-hover-color: #1f6bff;
  --dropdown-bg: #ffffff;
  --dropdown-color: #1f6bff;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
  --primary-gradient: linear-gradient(135deg, #863888 0%, #3a0256 100%);
  --mh-gradient: linear-gradient(135deg, #3a0256 0%, #764ba2 100%);
  --mh-gradient-reverse: linear-gradient(135deg, #764ba2 0%, #3a0256 100%);
}

body {
  font: 1rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-secondary);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
}

.container {
  max-width: 1140px;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

.text-heading-color {
  color: var(--bs-heading-color);
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.list-checked {
  padding: 0;
  margin: 0;
  color: var(--bs-body-color);
}
.list-checked li {
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.list-checked li i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-primary);
  font-size: 20px;
}
.list-checked li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  content: "";
  vertical-align: -0.125em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5625rem 1.5625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}

.btn {
  padding: 12px 20px;
  /* background-color: var(--bs-primary);
  color: var(--bs-white); */
  /* border: 1px solid transparent; */
  border-radius: 7px;
  font-weight: 600;
  position: relative;
}
.btn:hover, .btn:active, .btn:focus {
  color: var(--bs-white);
  background-color: var(--bs-primary-hover) !important;
  border: 1px solid var(--bs-primary-hover) !important;
}
.btn.btn-white.hover-outline {
  background-color: var(--bs-white) !important;
  color: var(--bs-black) !important;
  border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
  color: var(--bs-white) !important;
  background-color: transparent !important;
  border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
  color: var(--inverse-color) !important;
  background-color: transparent;
}
.btn.btn-white-outline:hover, .btn.btn-white-outline:focus, .btn.btn-white-outline:active {
  background-color: transparent !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
}
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary)  !important;
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
    border: 1px solid var(--bs-primary);
}



.block-squares {
  position: absolute;
  bottom: -12px;
  right: 0;
  z-index: 1;
  width: auto;
}
.bg-primary {
    background: var(--bs-primary) !important;
}
.bg-secondary {
    background: var(--bs-secondary) !important;
}

.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--bs-primary);
}

.a-link i {
  font-size: 26px;
  margin-left: 10px;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.a-link:hover i {
  margin-left: 15px;
}

.page-title {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
  background-color: rgba(var(--inverse-color-rgb), 0.03);
}

.text-primary{
    color: var(--bs-primary) !important;
}
.text-secondary{
    color: var(--bs-secondary) !important;
}
.text-secondary2{
    color: var(--bs-secondary2) !important;
}
.text-secondary3{
    color: var(--bs-secondary3) !important;
}

.logo img{
    max-height: 50px;
}

.hero {
    padding: 1rem 0;
    background-image: linear-gradient(144deg, #8961f7 0, #260c57 100%);
}

.hero h1, .hero h2, .hero p{
    color: #fff;
}
.hero h1{
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}
.hero h2{
    font-weight: 500;
    text-transform: capitalize;
}
.navbar_pg {
    background: var(--bs-secondary) !important;
    color: #fff;
}

.hero_sub2 a{
    color: #fff;
}

.navbar_pg .nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #fff;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar_pg .navbar-nav .nav-link.active {
    /* background: #4d1c65;
    color: #fff; */
    background: #fff;
    color: #4d1c65;
    font-weight: 600;  
    border-radius: 5px;
}
.btn-secondary {
    background: #863888 !important;
    --bs-btn-border-color: #863888;
}

@media (max-width: 576px) {

    /* HEADER STACK CLEAN */
    .order-mobile-header > div {
        width: 100%;
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    /* Order ID section compact */
    .order-mobile-header .col-md-4 .d-flex {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .order-mobile-header i.fs-3 {
        font-size: 16px !important;
    }

    .order-mobile-header h6 {
        font-size: 14px;
    }

    /* Date + Amount inline */
    .order-mobile-header .col-md-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .order-mobile-header .col-md-2 small {
        font-size: 11px;
    }

    .order-mobile-header .col-md-2 p {
        font-size: 12px;
        margin: 0;
    }

    /* Status badge */
    .order-status {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Button full width */
    .order-mobile-header .btn {
        width: 100%;
        font-size: 12px;
        padding: 6px;
    }

    /* ===== BOTTOM SECTION CLEAN ===== */
    .order-mobile-bottom {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    /* items + courier */
    .order-mobile-bottom > .d-flex:first-child {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .order-mobile-bottom small {
        font-size: 12px;
    }

    /* buttons */
    .order-mobile-bottom > .d-flex:last-child {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .order-mobile-bottom .btn {
        width: 100%;
        font-size: 12px;
        padding: 6px;
    }

    /* DELIVERY BOX */
    .col-lg-4 {
        margin-top: 10px;
    }

    .col-lg-4 .bg-light {
        padding: 10px !important;
    }

    /* TIMELINE SCROLL */
    .timeline-progress {
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px !important;
    }

    .timeline-step {
        min-width: 100px;
        flex-shrink: 0;
    }

    .order-page-header .breadcrumb {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .order-page-header h2 {
        font-size: 18px;
    }

    .order-page-header p {
        font-size: 12px;
    }

    /* Stack layout */
    .order-page-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    /* Search box full width */
    .order-page-header form {
        width: 100%;
    }

    .search-box {
        width: 100%;
        position: relative;
    }

    .search-box input {
        width: 100%;
        padding-left: 35px;
        height: 36px;
        font-size: 13px;
    }

    .search-box i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #888;
    }

    /* Tight spacing */
    .order-page-header {
        margin-bottom: 15px !important;
    }

    /* Navbar padding */
    .navbar_pg {
        padding: 8px 0;
    }

    /* Logo size */
    .navbar_pg .logo img {
        max-height: 40px;
    }

    /* Toggle button clean */
    .navbar-toggler {
        border: none;
        padding: 4px 6px;
    }

    /* Mobile menu box */
    .mobile-nav {       
        padding: 10px 0;
        margin-top: 10px;
    }

    /* Nav links vertical */
    .mobile-nav .navbar-nav {
        flex-direction: column;
        /* gap: 5px; */
        text-align: left;
    }

    .mobile-nav .nav-item {
        width: 100%;
    }

    .mobile-nav .nav-link {
        padding: 5px 15px;
        font-size: 14px;
        border-radius: 6px;
    }

    .mobile-nav .nav-link:hover {
        background: #f5f5f5;
    }

    /* Buttons section */
    .mobile-nav .d-flex {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        padding: 0 15px;
    }

    /* Full width buttons */
    .mobile-nav .btn {
        width: 100%;
        font-size: 14px;
        padding: 8px;
    }
}

.qet_quote_box {
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin: 2rem 0 1.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}
.qet_quote_box .tab-content{
    background: #fff;
    padding: 0px 0 5px 0;
    border-radius: 0px 0 5px 5px;
}
.qet_quote_box .nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.qet_quote_box .nav-link {
    display: block;
    padding: 10px 5px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--bs-secondary);
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


.qet_quote_box .nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.quote_box_inputs {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 5px;
}
.quote_box_inputs  label{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mh-text);
    margin-bottom: 0.5rem;
    display: block; 
}

.quote_box_inputs .form-select, .quote_box_inputs .form-control{
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.quote_box_inputs .form-control:focus,
.quote_box_inputs .form-select:focus {
    border-color: var(--mh-primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.get_quote_btn {
    min-height: auto;
}


/* Hero Section */
.mh-hero {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    overflow: hidden;
    padding: 2rem 0 3rem;
}

.mh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(102,126,234,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mh-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mh-gradient);
}

.mh-hero-content {
    position: relative;
    z-index: 2;
}

.mh-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mh-primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.mh-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mh-title-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mh-description {
    font-size: 1.1rem;
    color: var(--mh-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.mh-hero-image {
    position: relative;
    animation: mh-float 3s ease-in-out infinite;
}

@keyframes mh-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Quote Box */
.mh-quote-box {
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    padding: 1.8rem;
    margin: 2rem 0 1.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.mh-quote-box:hover {
    box-shadow: 0 30px 60px -12px rgba(102,126,234,0.25);
}

.mh-nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1.8rem;
    gap: 0.5rem;
}

.mh-nav-tabs .nav-link {
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: var(--mh-text-light);
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.mh-nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mh-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mh-nav-tabs .nav-link.active {
    color: var(--mh-primary);
    background: transparent;
}

.mh-nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.mh-input-group {
    margin-bottom: 1rem;
}

.mh-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mh-text);
    margin-bottom: 0.5rem;
    display: block;
}

.mh-input-group .form-control,
.mh-input-group .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.mh-input-group .form-control:focus,
.mh-input-group .form-select:focus {
    border-color: var(--mh-primary);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.mh-dimension-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.mh-dimension-input input {
    text-align: center;
}

.mh-dimension-input span {
    color: var(--mh-text-light);
    font-weight: 600;
}

.mh-get-quote-btn {
    background: var(--mh-gradient);
    border: none;
    border-radius: 14px;
    padding: 0.85rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mh-get-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.mh-get-quote-btn:hover::before {
    left: 100%;
}

.mh-get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(102,126,234,0.4);
}

/* Quick Links */
.mh-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.mh-quick-link {
    color: var(--mh-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mh-quick-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mh-quick-link:hover {
    color: var(--mh-primary);
    transform: translateX(5px);
}

.mh-quick-link:hover i {
    transform: translateX(3px);
}

/* Features Section */
.mh-features {
    padding: 5rem 0;
    background: #f8fafc;
}

.mh-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mh-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mh-primary);
    margin-bottom: 1rem;
}

.mh-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mh-dark);
    margin-bottom: 1rem;
}

.mh-feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mh-feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mh-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.mh-feature-card:hover::before {
    transform: scaleX(1);
}

.mh-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mh-feature-icon i {
    font-size: 32px;
    background: var(--mh-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mh-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--mh-dark);
}

.mh-feature-text {
    color: var(--mh-text-light);
    line-height: 1.6;
}

/* Stats Section */
.mh-stats {
    padding: 4rem 0;
    background: var(--mh-gradient);
    color: white;
}

.mh-stat-item {
    text-align: center;
    padding: 1.5rem;
}

.mh-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mh-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.mh-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.mh-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102,126,234,0.1) 0%, transparent 50%);
}

.mh-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.mh-cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.mh-cta-btn {
    background: white;
    color: #494b5b;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.mh-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: var(--mh-primary-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .mh-title {
        font-size: 2.5rem;
    }
    
    .mh-description {
        max-width: 100%;
    }
    
    .mh-hero-image {
        margin-top: 2rem;
    }
    
    .mh-quote-box {
        padding: 1.5rem;
    }
    
    .mh-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mh-title {
        font-size: 2rem;
    }
    
    .mh-get-quote-btn {
        margin-top: 1rem;
    }
    
    .mh-stat-number {
        font-size: 2rem;
    }
}

.comparison_result_head {
    background: var(--bs-secondary);
    padding: 10px 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
}
.comparison_head_text {
    font-size: 16px;
}
.view_cheap_btn {
    background: var(--bs-secondary3);
    font-size: 13px;
    color: #000;
    padding: 5px;
}
.refine_search_btn{
    background: var(--bs-secondary3);
    color: #000;
}

.courier-compar-result{
    background:#f7f7f7;
    border:1px solid #e6e6e6;
    transition:0.2s;
    font-size: 14px;
    border-radius: 5px;
    padding: 1rem;
}

.courier-compar-result:hover{
    background:#ffffff;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}
.courier-compar-result h4{
    color: var(--bs-secondary);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.courier-compar-result small{
    color: var(--bs-secondary);
    margin: 0;
}

.book1_parcel_box {
    width: 70% !important;
}
.book1_parcel_box label{
    color: var(--bs-secondary);
    font-size: 14px;
    font-weight: 700;
}
.book1_parcel_box .form-control {
    padding-top: 5px;
    padding-bottom: 5px;
    border-width: 1px;
    font-size: 14px;
    background-color: white;
    border-color: rgba(var(--inverse-color-rgb), 0.1);
}


.book2_parcel_box label{
    color: var(--bs-secondary);
    font-size: 14px;
    font-weight: 700;
}
.book2_parcel_box .form-control {
    padding-top: 5px;
    padding-bottom: 5px;
    border-width: 1px;
    font-size: 14px;
    background-color: white;
    border-color: rgba(var(--inverse-color-rgb), 0.1);
}
.book2_parcel_box h4{
    color: var(--bs-secondary);
    font-size: 19px;
    font-weight: 700;
}

.book2_parcel_box_right h4{
    color: var(--bs-secondary);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.book2_parcel_box_right h5{
    color: var(--bs-secondary);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.book2_parcel_box_right p{
    font-size: 11px;
    margin: 10px 0;
}
.login_payment_banner {
    margin-top: 9.9rem;
}

.payment-card-split {
            background: var(--bs-primary);
            overflow: hidden;
            border: none;
            transition: transform 0.2s ease;
        }
       
        /* Header with gradient and total amount */
        .card-header-gradient {
            background: linear-gradient(105deg, #863888 0%, #863888 100%);
            padding: 0.4rem 1.8rem;
            border-bottom: none;
        }
        .total-badge {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            color: #fff;
            background: rgba(255,255,255,0.12);
            padding: 0.3rem 0.8rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .total-amount-large {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        .total-amount-large small {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
        }
        /* Left column - payment methods list */
        .methods-sidebar {
            background: #fefefe;
            border-right: 1px solid #edf2f7;
            padding: 1.5rem 1rem 1.5rem 1.2rem;
            height: 100%;
        }
        .section-title-sm {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #6c7e9e;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .method-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 0.85rem 0.9rem;
            margin-bottom: 0.7rem;
            border-radius: 1.2rem;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            background: transparent;
            border: 1.5px solid transparent;
        }
        .method-item:hover {
            background: #f8fafd;
            border-color: #e2eaf5;
        }
        .method-item.selected {
            background: linear-gradient(98deg, #f0f6ff, #ffffff);
            border-color: var(--bs-secondary);
            box-shadow: 0 4px 12px rgba(44, 123, 229, 0.08);
        }
        .method-icon-circle {
            width: 46px;
            height: 46px;
            background: #f3f6fc;
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #1f4973;
            transition: all 0.2s;
        }
        .method-item.selected .method-icon-circle {
            background: #e9f0fe;
            color: var(--bs-secondary);
        }
        .method-info {
            flex: 1;
        }
        .method-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: #1a2c3e;
        }
        .method-desc {
            font-size: 0.65rem;
            color: #7a8aa8;
            margin-top: 2px;
        }
        .radio-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #cfddee;
            background: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: 0.15s;
        }
        .method-item.selected .radio-indicator {
            border-color: var(--bs-secondary);
            background: var(--bs-secondary);
            box-shadow: inset 0 0 0 3px white;
        }
        /* Right column - dynamic payment details */
        .payment-details-area {
            background: #ffffff;
            padding: 1.5rem 1.5rem 1.5rem 1.2rem;
            height: 100%;
        }
        .detail-header {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: #5c6f93;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .input-group-modern {
            margin-bottom: 1rem;
        }
        .input-label-sm {
            font-size: 0.7rem;
            font-weight: 600;
            color: #4a5b7c;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .form-control-payment {
            background: #ffffff;
            border: 1.5px solid #e5ecf3;
            border-radius: 1rem;
            padding: 0.7rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        .form-control-payment:focus {
            border-color: var(--bs-secondary);
            box-shadow: 0 0 0 3px rgba(44, 123, 229, 0.15);
            outline: none;
        }
        .card-badge-icons {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.5rem;
            font-size: 1.3rem;
            color: #7c8ea8;
        }
        .pay-button {
            background: linear-gradient(95deg, #863888, #3b1656);
            border: none;
            border-radius: 2rem;
            padding: 0.8rem 1rem;
            font-weight: 700;
            font-size: 1rem;
            width: 100%;
            color: white;
            transition: all 0.25s;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }
        /* .pay-button:hover {
            background: linear-gradient(95deg, #234a6e, #0e1f32);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
        } */
        .pay-button:active {
            transform: translateY(1px);
        }
        .security-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 0.65rem;
            color: #7f8ea8;
            margin-top: 1.2rem;
            padding-top: 0.5rem;
            border-top: 1px solid #edf2f8;
        }
        hr {
            margin: 0.5rem 0;
            opacity: 0.4;
        }
        @media (max-width: 768px) {
            .methods-sidebar {
                border-right: none;
                border-bottom: 1px solid #edf2f7;
                padding: 1rem;
            }
            .payment-details-area {
                padding: 1.2rem;
            }
            .total-amount-large {
                font-size: 2rem;
            }
        }
        /* custom wallet / paypal / stripe inner styling */
        .wallet-preview, .paypal-preview, .stripe-preview {
            background: #fafcff;
            border-radius: 1.2rem;
            padding: 0.8rem;
        }
        .bi-credit-card-fill, .bi-wallet2, .bi-paypal, .bi-stripe {
            font-size: 1.2rem;
        }

.payment_left p{
    font-size: 13px;
}


.thankyou-card {
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
            border: none;
            text-align: center;
            padding: 2.5rem 2rem;
            max-width: 520px;
            width: 100%;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: #10b981;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .success-icon i {
            font-size: 2.8rem;
            color: white;
        }
        .subtitle {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
        }
        
        .receipt-card {
            background: #f8f9fc;
            border-radius: 1rem;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border: 1px solid #e9ecef;
            text-align: left;
        }
        
        .receipt-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .receipt-row:last-child {
            border-bottom: none;
        }
        
        .receipt-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .receipt-label i {
            margin-right: 0.4rem;
            font-size: 0.75rem;
        }
        
        .receipt-value {
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.9rem;
        }
        
        .order-badge {
            background: #eef2ff;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-family: monospace;
            font-size: 0.8rem;
            font-weight: 600;
            color: #4f46e5;
        }
        
        .amount-large {
            font-size: 1.6rem;
            font-weight: 800;
            color: #1f2d3d;
        }
        
        .amount-large small {
            font-size: 0.8rem;
            font-weight: 500;
            color: #6c757d;
        }
        
        
        .btn-primary-custom {
            background: var(--bs-primary);
            border: none;
            border-radius: 2rem;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary-custom:hover {
            background: #2c3e50;
            color: white;
        }
        
        .btn-outline-custom {
            border: 1px solid #dee2e6;
            border-radius: 2rem;
            padding: 0.7rem 1.5rem;
            background: white;
            font-weight: 600;
            color: #495057;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-outline-custom:hover {
            border-color: #1f2d3d;
            background: #f8f9fa;
            color: #1f2d3d;
        }
        
        .footer-note {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
            font-size: 0.7rem;
            color: #8b9abb;
        }
        
        .footer-note i {
            margin: 0 0.2rem;
        }
        
        @media (max-width: 480px) {
            .thankyou-card {
                padding: 1.8rem 1.2rem;
            }
            .amount-large {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .btn-primary-custom, .btn-outline-custom {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
        }



.account-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.3s ease;
}

.account-avatar:hover {
    transform: scale(1.05);
}

.account-menu-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.account-menu-item:hover {
    background-color: #f8f9fa;
    border-left-color: #667eea;
    transform: translateX(5px);
}

.account-menu-item i {
    transition: transform 0.2s ease;
}

.account-menu-item:hover i {
    transform: scale(1.1);
}

.logout-btn {
    transition: all 0.3s ease;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.user-info-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
}


.stat-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
/* Mobile view */
@media (max-width: 576px) {

    /* LEFT SIDE inner cards → FORCE 2 per row */
    .row.g-4.mb-5 .col-md-6.col-lg-6 .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* STAT CARD */
    .stat-card {
        padding: 0.9rem;
        border-radius: 14px;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }
  
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Navigation Cards */
.nav-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.nav-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.nav-card:hover::after {
    transform: scaleX(1);
}

.nav-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.nav-card:hover .nav-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
}

.nav-icon i {
    font-size: 28px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Recent Activity */
.activity-item {
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.activity-item:hover {
    background: #f8f9fa;
    border-left-color: #667eea;
    transform: translateX(5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #54b762 0%, #863888 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
/* Mobile view */
@media (max-width: 768px) {

    /* MAIN SECTION compact */
    .welcome-section {
        padding: 1rem !important;
    }

    .myaccount-avatar {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .welcome-section h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .welcome-section p {
        font-size: 0.75rem;
    }

    /* 3 cards → 2 per row look */
    .welcome-section .col-sm-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* WALLET CARD */
    .welcome-section .col-lg-5 {
        margin-top: -15px;
    }

    .welcome-section .bg-white {
        padding: 12px !important;

    }

    .welcome-section .fw-bold {
        font-size: 0.9rem;
    }

    .welcome-section small {
        font-size: 0.7rem;
    }

   
}
/* Quick Actions */
.quick-action {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Status Badge */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-transit {
    background: #cce5ff;
    color: #004085;
}

.myaccount-avatar {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    color: var(--bs-secondary);
}
.myaccount-avatar2 {
    width: 80px;
    height: 80px;
    color: #fff;
    transition: transform 0.3s ease;
    color: var(--bs-secondary);
}


/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {

    .row.g-3 > [class*="col-"] {
        width: 50%;
        flex: 0 0 50%;
    }

    .stats-card {
        padding: 0.5rem;
        border-radius: 12px;
    }

    .stats-card h3 {
        font-size: 1.1rem;
    }

    .stats-card small {
        font-size: 0.7rem;
    }

    .stats-card .badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
}
/* Order Cards */
.order-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.order-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-status {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-delivered {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.status-processing {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.status-shipped {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    color: #004085;
}

.status-pending {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.order-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.timeline-progress {
    position: relative;
    padding: 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 25px;
    right: -30px;
    height: 2px;
    background: linear-gradient(90deg, #dee2e6 0%, #dee2e6 50%, transparent 100%);
}

.timeline-step.completed:not(:last-child)::after {
    background: linear-gradient(90deg, #28a745 0%, #28a745 50%, #dee2e6 100%);
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step.completed .step-icon {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.timeline-step.active .step-icon {
    border-color: #667eea;
    background: white;
    color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.step-label {
    font-size: 11px;
    font-weight: 500;
    color: #6c757d;
}

.timeline-step.completed .step-label,
.timeline-step.active .step-label {
    color: #212529;
    font-weight: 600;
}

/* Filter Tabs */
.filter-tab {
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e9ecef;
    color: #6c757d;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}


@media (max-width: 768px) {

    .d-flex.flex-wrap.gap-2.mb-4 {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .d-flex.flex-wrap.gap-2.mb-4::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 20px;
        white-space: nowrap;
    }
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    padding-left: 40px;
    border-radius: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-box input:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}


/* Status Timeline */
.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.timeline-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.timeline-step {
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-step.completed .step-circle {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
}

.timeline-step.active .step-circle {
    border-color: #667eea;
    background: white;
    color: #667eea;
    box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.2);
}

.step-circle i {
    font-size: 20px;
}

.step-label {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
}

.step-date {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 5px;
}

.timeline-step.completed .step-label,
.timeline-step.active .step-label {
    color: #212529;
    font-weight: 600;
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Product Items */
.product-item {
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

/* Price Summary */
.price-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.price-row.total {
    border-bottom: none;
    padding-top: 15px;
    margin-top: 5px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Tracking Info */
.tracking-info {
    background: var(--primary-gradient);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
}

/* Status Badges */
.status-badge {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-delivered {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.status-shipped {
    background: linear-gradient(135deg, #cce5ff 0%, #b8daff 100%);
    color: #004085;
}

.status-processing {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}


.address-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: transparent;
}

.default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}


.transaction-card {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.transaction-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left-color: #667eea;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-failed {
    background: #f8d7da;
    color: #721c24;
}

.payment-method-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.filter-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}


@media print {
    .no-print {
        display: none !important;
    }
    
    .print-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
    }
    
    .invoice-header {
        margin-bottom: 20px !important;
    }
    
    @page {
        size: auto;
        margin: 15mm;
    }
}

.invoice-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.invoice-header {
    background: linear-gradient(135deg, #3b1656 0%, #764ba2 100%);
    color: white;
    padding: 30px;
}

.status-paid {
    background: #d4edda;
    color: #155724;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
}

.invoice-detail-row {
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
}

.total-amount {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.pm-whyuse-section {
    width: 100%;
    padding: 70px 0;
    background: #f8fafc;
}

.pm-whyuse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-whyuse-title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #494b5b;
}

.pm-whyuse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pm-whyuse-card {
    width: 100%;
}

.pm-whyuse-card-inner {
   text-align: center;
    height: 100%;
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    transition: 0.3s;
    overflow: hidden;
}
.pm-whyuse-card-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mh-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pm-whyuse-card-inner:hover::before {
    transform: scaleX(1);
}

.pm-whyuse-image-box {
    /* background: #555247; */
    padding: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.pm-whyuse-image-box img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
}

.pm-whyuse-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.pm-whyuse-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .pm-whyuse-grid {
        grid-template-columns: 1fr;
    }
}


.pm-popular-section {
    width: 100%;
    padding: 70px 0;
    background: var(--bs-secondary);
}

.pm-popular-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-popular-title {
    text-align: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 50px;
}

.pm-popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pm-popular-card a {
    text-decoration: none;
}

.pm-popular-card-inner {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.pm-popular-card-inner:hover {
    transform: translateY(-5px);
}

.pm-popular-image-box {
    background: #fff;
    padding: 30px;
    text-align: center;
}

.pm-popular-image-box img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.pm-popular-content {
    padding: 25px;
}

.pm-popular-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.pm-popular-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.pm-popular-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #2d2d2d;
}

.pm-popular-more {
    text-align: center;
    margin-top: 40px;
}

.pm-popular-more a {
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .pm-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pm-popular-grid {
        grid-template-columns: 1fr;
    }
}

/*  footer css hari */


.footer {
    background: var(--bs-secondary);
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer__main {
    padding: 30px 0;
}

.footer .container {
    max-width: 1250px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

.footer__wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: start;
}

.footer__links ul {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__content {
    border-left: 1px solid #7d3a95;
    padding-left: 25px;
}

.footer__content p {
    font-size: 14px;
    line-height: revert;
    margin-bottom: 15px;
}

.footer__bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.footer__logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer__logos img {
    max-height: 80px;
    width: auto;
}

.footer__main-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

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

    .footer__content {
        border-left: none;
        border-top: 1px solid #7d3a95;
        padding-left: 0;
        padding-top: 30px;
    }

    .footer__links ul {
        grid-template-columns: 1fr 1fr;
    }

    .footer__bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    .activity-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .activity-icon {
        margin-bottom: 10px;
    }

    .activity-header {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .delivery-text {
        font-size: 12px;
        margin-top: 2px;
    }

    .card-body {
        padding: 15px !important;
    }

    .card-header {
        padding: 15px !important;
    }
}
.custom-anatomy-section {
    width: 100%;
    padding: 70px 0;
    background: #f8fafc;
}

.custom-anatomy-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #494b5b;
}

.custom-anatomy-section .home__carriers {
    width: 100%;
    overflow: hidden;
}

.custom-anatomy-section .horiz-scroller__mask {
    width: 100%;
}

.custom-anatomy-section .horiz-scroller__mask ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.custom-anatomy-section .horiz-scroller__mask ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-anatomy-section .horiz-scroller__mask ul li img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.custom-anatomy-section .horiz-scroller__mask ul li img:hover {
    transform: scale(1.05);
}

.custom-anatomy-section .text-center {
    margin-top: 35px;
}

.custom-anatomy-section .more {
    color: #494b5b;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
}

.custom-anatomy-section .more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .custom-anatomy-section h2 {
        font-size: 24px;
    }

    .custom-anatomy-section .horiz-scroller__mask ul {
        gap: 20px;
    }

    .custom-anatomy-section .horiz-scroller__mask ul li img {
        max-width: 100px;
    }
}


/* contact Us */

.pm-support-page {
    width: 100%;
    min-height: 100vh;
    background: #f3f3f3;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.pm-support-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}



.pm-support-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.pm-support-postbox {
     background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pm-support-postbox h3 {
    font-size: 30px;
    color: #3a0256;
    margin-bottom: 25px;
}

.pm-support-postbox p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}



/* About Us */

.pm-about-page {
    width: 100%;
    min-height: 100vh;
    background: #f6f9fc;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.pm-about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-title {
    font-size: 52px;
    font-weight: 600;
    color: #494b5b;
    margin-bottom: 40px;
}

.pm-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pm-box h1 {
    font-size: 30px;
    color: #3a0256;
    margin-bottom: 25px;
}

.pm-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pm-list {
    padding-left: 20px;
    margin-top: 20px;
}

.pm-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .pm-title {
        font-size: 36px;
    }

    .pm-box {
        padding: 30px;
    }

    .pm-box h3 {
        font-size: 24px;
    }

    .pm-box p,
    .pm-list li {
        font-size: 16px;
    }
}
.loader-wrapper {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: all;
}
