@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Professional Font for All Table TD & TH */
table td,
table th,
.table td,
.table th,
tbody td {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* ---------------------------
   SIDEBAR MENU
----------------------------*/

#myaccount {
  padding-top: 30px;
  padding-bottom: 30px;
}

#myaccount .list-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

#myaccount .list-categories li {
  margin-bottom: 12px;
}

#myaccount .list-categories a {
  display: block;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e5e5e5;
  transition: all .3s ease-in-out;
}

#myaccount .list-categories a:hover {
  background: #0069d9;
  border-color: #0069d9;
  color: #fff;
}

#myaccount .list-categories a.active {
  background: #0069d9;
  color: #fff;
  border-color: #0069d9;
}

/* ---------------------------
 PROFILE FORM
----------------------------*/
.myaccount-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.myaccount-form h4 {
  font-family: Roboto Condensed;
}

/* .form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form-group label {
  width: 25%;
  font-weight: 600;
  color: #444;
}

.form-group input {
  width: 75%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color .3s;
  font-size: 14px;
}

.form-group input:focus {
  border-color: #0069d9;
  box-shadow: 0 0 5px rgba(0, 105, 217, 0.2);
}

.form-text.text-danger {
  margin-left: 25%;
  font-size: 12px;
  margin-top: 5px;
} */

/* ---------------------------
 BUTTONS
----------------------------*/
.button {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background .3s, transform .2s;
}

.button-secondary {
  background: #0069d9;
  color: #fff;
  border: none;
}

.button-secondary:hover {
  background: #0053b3;
  transform: translateY(-2px);
}

.flexbox {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.flexbox .box {
  flex: 1;
}

/* ---------------------------
 RESPONSIVE DESIGN
----------------------------*/
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group.captcha {
    flex-direction: row !important;
  }

  .form-group label {
    width: 100%;
    margin-bottom: 6px;
  }

  .form-group input {
    width: 100%;
  }

  .flexbox {
    flex-direction: column;
  }

  #myaccount .col-sm-4,
  #myaccount .col-sm-8 {
    width: 100%;
    margin-bottom: 25px;
  }
}


/* ====== History ====== */
.history {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.history h5 {
  font-family: Roboto Condensed;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* ====== Table Styling ====== */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
}

thead {
  background: #f5f7fa;
}

thead th {
  font-family: Roboto Condensed;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
}

tbody td {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  padding: 15px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background: #f9fafc;
  transition: 0.3s ease;
}

/* ====== Status Labels ====== */
.table-status lable {
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
}

/* Status color style */
.lable-primary.Pending {
  background-color: #ff9800;
}

/* Add more statuses if needed */
.lable-primary.Success {
  background-color: #4caf50;
}

.lable-primary.Cancelled {
  background-color: #f44336;
}

/* ====== Buttons ====== */
.button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background: #007bff;
  transition: all 0.3s;
}

.button:hover {
  background: #0056d2;
  transform: translateY(-2px);
}

/* Secondary button style */
.button-secondary {
  background: #0b4a85;
}

.button-secondary:hover {
  background: #00796b;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  table {
    font-size: 13px;
  }

  thead {
    display: none;
  }

  tbody tr {
    display: block;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px dashed #ddd;
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(class);
    font-weight: 600;
    text-transform: capitalize;
    color: #555;
  }
}

/*Single Order details*/
/* ===========================
   GLOBAL CONTAINER
=========================== */
.single-history-details {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  margin: 25px auto;
  max-width: 1100px;
  font-family: Roboto Condensed;
}

.single-history-details h2 {
  font-family: Roboto Condensed;
  font-size: 26px;
  margin-bottom: 25px;
  color: #333;
}

.single-history-details h2 span {
  color: #007bff;
}

/* ===========================
 ORDER HEADER
=========================== */
.orderlist-head {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f5f7fa;
  border-radius: 10px;
  margin-bottom: 15px;
}

.orderlist-head h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ===========================
 ORDER TRACKING TIMELINE
=========================== */
.order-track {
  margin: 20px 0;
}

.order-track-list {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-left: 0;
}

.order-track-item {
  list-style: none;
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

.order-track-item i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 16px;
  color: #bbb;
}

.order-track-item.active i {
  color: #28a745;
}

.order-track-item.active span {
  color: #28a745;
  font-weight: 600;
  color: #fff;
}

/* ===========================
 ORDER DETAILS GRID
=========================== */
.orderlist-details {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.orderlist-details li {
  list-style: none;
  flex: 1 1 200px;
}

.orderlist-details h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #555;
}

.orderlist-details p {
  font-size: 14px;
  margin-top: 3px;
  color: #333;
}

/* ===========================
 DELIVERY SECTION
=========================== */
.orderlist-deliver {
  background: #f9fafc;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.orderlist-deliver h6 {
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

/* ===========================
 PRODUCT TABLE
=========================== */
.table-responsive {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.cart_summary {
  width: 100%;
  border-collapse: collapse;
}

.cart_summary th {
  background: #eef0f4;
  padding: 12px;
  font-weight: 600;
  color: #444;
  font-size: 14px;
}

.cart_summary td {
  padding: 12px;
  vertical-align: middle;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

.cart_summary img {
  border-radius: 6px;
}

.price {
  font-weight: 600;
  color: #333;
}

/* ===========================
 TOTAL SUMMARY TABLE
=========================== */
.table-bordered {
  margin-top: 20px;
  font-size: 14px;
}

.table-bordered td {
  padding: 10px 15px !important;
}

.table-bordered strong {
  font-weight: 600;
}

/* ===========================
 BUTTONS
=========================== */
.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  background: #007bff;
  transition: 0.3s ease;
}

.button:hover {
  background: #0056d2;
  transform: translateY(-2px);
}

/* Secondary button */
.button-secondary {
  background: #0b4a85;
}

.button-secondary:hover {
  background: #05a3e3;
  color: #fff;
}

/* ===========================
 RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {

  .orderlist-head {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .order-track-list {
    flex-direction: column;
  }

  .orderlist-details {
    flex-direction: column;
  }

  .cart_summary th,
  .cart_summary td {
    font-size: 13px;
  }
}

/*Change Password*/
.change-password {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}



/*old Css*/
.product-action {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}

.decrement-btn,
.increment-btn {
  background-color: #0b0907;
  border: none;
  border-radius: 5px;
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
}

.decrement-btn:hover,
.increment-btn:hover {
  background-color: #000;

}

.decrement-btn:before {
  font-family: FontAwesome;
  content: "-";
  font-size: 22px;
  line-height: 26px;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 15px 8px 15px;
  color: #fff;

}

.increment-btn:before {
  font-family: FontAwesome;
  content: "+";
  font-size: 22px;
  line-height: 26px;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 15px 8px 15px;
  color: #fff;
}


.cartquantity {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.action-input {
  padding: 0 8px;
  vertical-align: middle;
  border-radius: 5px;
  width: 50px;
  min-height: 36px;
  background-color: #ffffff;
  border: 1px solid rgba(36, 28, 21, 0.3);
  transition: all 0.2s ease-in-out 0s;
  font-size: 15px;
  line-height: 18px;
  font-weight: normal;

  :focus {
    outline: none;
    border: 1px solid #007c89;
    box-shadow: inset 0 0 0 1px #007c89;
  }

  text-align: center;

}

/*header*/
.moto-widget-store_sign-link span {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  color: #eec2cc;
  text-decoration: none;
  margin-top: 8px;
  line-height: 26px;
}

/*register*/
.moto-widget-contact_form.moto-preset-2 .moto-widget-contact_form-form .moto-widget-contact_form-field:focus {
  border: 2px solid #f2b7c4;
}

#termsbox .form-check-label {
  margin-left: 50px;
}

.accept {
  margin-left: 22px;
}

/* #terms{
  position: absolute;
  left: 15px;
  bottom: -40px;
  width: 15px;
  line-height: 26px;
} */
/*p{
  font-size: 16px;
  color: #000;
}*/
.invalid-feedback strong {
  color: red;
  font-weight: 400;
  text-align: left;
}

.register-form .alert-success {
  font-size: 15px;
  margin-bottom: 15px;
  color: green;
}

.moto-widget-contact_form-form .alert-success {
  font-size: 15px;
  margin-bottom: 15px;
  color: green;
}

/*reset*/
.reset {
  text-align: center;
  color: #eec2cc;
}

/*Profile*/
.profile {
  font-size: 18px !important;
  color: #dd8b9e !important;
  font-weight: 400 !important;
  font-family: Roboto Condensed;
}

.welcome h4 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.quick_links {

  font-size: 19px;
  font-weight: 600;
  color: #000;
}

/* .quick_links li{

} */
.quick_links li:before {
  font-family: FontAwesome;
  content: "\f101" !important;
  font-size: 20px !important;
  line-height: 6px !important;
  display: table-cell !important;
  vertical-align: middle !important;

  list-style-type: none !important;
  background: none !important;
}

.quick_links li a {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.page-title {
  font-weight: 400;
  font-style: normal;
  font-family: Roboto Condensed;
  color: #e91e63;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 15px;
}

.cart-info a img {
  /*width: 100px!important;*/
  height: auto;
}

#profile .alert-success,
#guestlogin .alert-success {

  text-align: center;
  font-size: 18px;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  color: #3d4244;
  text-decoration: none;
  border-color: transparent;
  margin-bottom: 15px;
}

.normal {
  font-size: 17px;
  margin-left: 35px;
  font-weight: 599;
  color: #7b7878;
}

/*Product View Page*/
/* #carButton{
  background-color: #000;
  padding: 15px;
  color: #fff;
  border-radius: 5px;
} */
/*checkout*/
.bankdetail {
  margin-left: 30px;
}

.bankdetail h6 {
  font-size: 19px;
  margin-bottom: 5px;
  text-align: left;
  color: #65011b;
  line-height: 26px;
  font-weight: normal;
}

.bankdetail p {
  color: #7d7d7d;
  padding-bottom: 2px;
  margin-bottom: 0px;
}

/*paypal*/
.moto-widget-store-paypal-btns .moto-widget-button {
  display: flex;
  justify-content: center;
}

.moto-widget-store-confirmation .alert-success {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: green;
}

.moto-widget-store-confirmation .alert-danger {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: red;
}

/*stripe*/
#card-element {
  padding: 20px;
  border: 1px solid #dddada;
  border-radius: 32px;
}

#card-success {
  color: green;
  font-weight: bolder;
  text-align: center;
  font-size: 20px;
}

#create_new {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: green;
  padding: 15px;
}

.moto-widget-store-stripe-btns .moto-widget-button {
  display: flex;
  justify-content: center;
}

.moto-widget-breadcrumbs__item:nth-child(2)::after {
  content: '\\';
  margin-left: 10px;
}

.moto-widget-breadcrumbs__item:nth-child(3)::after {
  content: '\\';
  margin-left: 10px;
}

#customers {
  font-family: Roboto Condensed;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}

#customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 18px;
  font-weight: normal;
}

#customers tr:nth-child(even) {
  background-color: #f2f2f2;
}

#customers tr:hover {
  background-color: #ddd;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #000;

  font-size: 16px;
  color: #fff;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
  font-weight: 600;
}

/*view Order By customer*/
.table-image img {
  width: 100px;
}

.orderlist-head h5 {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: left;
  color: #000;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: 600;
}

/* .order-track{

} */

.orderlist {
  width: 100%;
}

.order-track-list,
.orderlist-details,
.orderlist-deliver {
  display: flex;
  flex-direction: row;
  flex-flow: row;
  justify-content: space-between;
  border: 1px solid #f3f3f3;
}

/* .order-track-list li::before, .orderlist-details li::before{
  position: absolute;
  left: 0;
  top: 50%;
  content: " >>";
  width: 5px;
  height: 5px;

  background:none!important;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
} */
.order-track-list li {
  list-style-type: none;
  padding: 10px !important;
  border-radius: 2px !important;
  color: #f00;
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
}

.order-track-list li.active {
  background-color: #202d8d;
  color: #fff;
}

.orderlist-details li p {
  margin-bottom: 25px;
  color: #5b5b5b;
  font-weight: 500;
  text-align: center;
}

.orderlist-details h6 {
  font-family: Roboto Condensed;
  font-size: 18px;
  text-align: center;
  color: #0b4a85;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
}

.orderlist-deliver h6 {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: left;
  color: #000;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
  padding: 10px;
}

.orderlist-details {
  list-style-type: none;
}

.GT .total {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: right;
  color: #dd8b9e;
  line-height: 26px;
  font-family: Roboto Condensed;
  font-weight: normal;
}

.moto-widget-order-view-buttons {
  margin-top: 30px;
}

.contactus .alert-success {
  font-size: 20px;
  text-align: center;
  margin: 15px;
  color: green;
}

#view_product .product-action {
  display: flex;
  margin-bottom: 20px;
  justify-content: left !important;
}

.text-center h4 {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  color: #e91e63;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
}

/* .moto-widget-image .moto-widget-image-picture {
  max-width: 100%;
  height: 240px!important;
  width: 240px !important;
  border: 2px solid #e92769;
} */

.moto-widget-image-link {
  /* display: table-cell;*/
  display: -webkit-box;
  width: 245px;
  height: 300px;
  vertical-align: baseline;
  background: #f2f2f2;
}

.moto-widget-image .moto-widget-image-picture {
  transition: .3s;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  /* vertical-align: middle; */
  margin: 0 auto;
  display: block;
  float: none;
}

.paypal_logo {
  width: 150px !important;
  position: absolute;
  top: 0;
  left: 100px;
}

.success {
  text-align: center;
  color: #497b00;
  font-size: 19px;
  margin-bottom: 30px;
}

.continue-shopping-btn {
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  color: #fff;
  text-decoration: none;
  border-color: transparent;
  text-align: center;
  margin-top: 20px;
  display: block;
  width: 20% !important;
  margin: 20px auto;
}

#checkoutform .alert-danger {
  font-size: 14px;
  color: red;
  font-weight: 600;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-style: normal;
}

.moto-widget-contact_form-group span {
  color: #f00;
  font-size: 15px;
}

.form-group {
  margin-bottom: 15px;
  /* display: flex; */
}

.delivery-form-horizontal .form-group {
  display: flex;
}

/*carousel*/

.col-item {
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  background: #FFF;
}

.col-item .photo img {
  margin: 0 auto;
  width: 100%;
  height: 270px;
}

.col-item .info {
  padding: 10px;
  border-radius: 0 0 5px 5px;
  margin-top: 1px;
}

.col-item:hover .info {
  background-color: #F5F5DC;
}

.col-item .price {
  /*width: 50%;*/
  float: left;
  margin-top: 5px;
}

.col-item .price h5 {
  line-height: 20px;
  margin: 10px;
  font-size: 14px;
}

.price-text-color {
  color: #219FD1;
}

.col-item .info .rating {
  color: #777;
}

.col-item .rating {
  /*width: 50%;*/
  float: left;
  font-size: 17px;
  text-align: right;
  line-height: 52px;
  margin-bottom: 10px;
  height: 52px;
}

.col-item .separator {
  border-top: 1px solid #E1E1E1;
}

.clear-left {
  clear: left;
}

.col-item .separator p {
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
}

.col-item .separator p i {
  margin-right: 5px;
}

.col-item .btn-add {
  width: 50%;
  float: left;
}

.col-item .btn-add {
  border-right: 1px solid #E1E1E1;
}

.col-item .btn-details {
  width: 100%;
  float: left;
  padding-left: 10px;
}

.controls {
  margin-top: 20px;
}

[data-slide="prev"] {
  margin-right: 10px;
}

/*17-9-2024*/

.cart-img img {
  width: 50px;
}

.product-image img {
  width: 100px;
}

/* .bg-success {
  background-color: #28a745 !important;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
}

.bg-danger {
  background-color: #dc3545 !important;
  padding: 4px 15px;
  border-radius: 5px;
  color: #fff;
} */

.size-variation,
.color-variation {
  display: flex;
}

/*my account PAGE*/
.text-danger {
  color: #dc3545 !important;
  text-align: left;
  margin-bottom: 15px;
}

.order-preview h4 {
  color: #000;
  font-size: 20px;
  text-align: left;
  font-weight: 600;
  margin: 0 auto 30px auto;
}

.cart_summary th {
  background-color: #0b4a85;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
}

.myaccount {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-align: left;
}

.title h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

#prostock-out {
  color: #fff;
  margin: 10px auto;
  font-weight: 600;
  position: absolute;
  right: 0;
  background-color: #ff0000;
  border-radius: 3px;
  padding: 4px;
  top: -10px;
}

#prostock {
  color: #fff;
  margin: 10px auto;
  font-weight: 600;
  position: absolute;
  right: 0;
  background-color: #016210;
  border-radius: 3px;
  padding: 5px 15px;
  top: -10px;
}

.account_section__welcome li.active a {
  color: #000;
}

.my_title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.Pending {
  font-size: 14px;
  font-weight: 600;
  color: red;
}

.Processing {
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 167, 0);
}

.Shipping {
  font-size: 14px;
  font-weight: 600;
  color: rgb(125, 178, 105);
}

.Completed {
  font-size: 14px;
  font-weight: 600;
  color: rgb(125, 178, 105);
}

.ajax-loader {
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  z-index: +100 !important;
  /* width: 100%;
  height:100%; */
  width: 41%;
  height: 65%;
}

.ajax-loader img {
  position: relative;
  top: 50%;
  left: 50%;
}

.empty-img {
  width: 300px;
}

.swal2-popup,
div:where(.swal2-container) div:where(.swal2-popup) {
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 210px !important;
  max-width: 90vw;
  padding: 0.5rem 0.5rem 0.75rem !important;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: hsl(0, 0%, 33%);
  font-family: inherit;
  font-size: 12px !important;
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474;
}

.swal2-title,
div:where(.swal2-container) h2:where(.swal2-title) {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: .4em .5em 0 !important;
  color: inherit;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1.3 !important;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-html-container,
.swal2-content,
div:where(.swal2-container) div:where(.swal2-html-container) {
  font-size: 11px !important;
  line-height: 1.3 !important;
  margin: 0.3em 0.4em 0 !important;
}

.swal2-icon,
div:where(.swal2-icon) {
  transform: scale(0.55) !important;
  margin: 0.2em auto 0 !important;
}

.swal2-actions,
div:where(.swal2-container) div:where(.swal2-actions) {
  margin: 0.4em auto 0 !important;
}

.swal2-actions button,
.swal2-styled {
  font-size: 11px !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 4px !important;
}

/*4-02-2025*/
.invalid-feedback {
  text-align: left;
}

.account .form-group {
  margin-bottom: 15px;
  /* display: flex; */

}

.account .flexbox {
  display: flex;
  justify-content: space-between;
}

.account table {
  font-weight: normal;
  width: 100%;
}

.account table thead tr {
  background: #fafafa;
}

.account table thead tr th {
  color: #000;
  padding: 15px;
  border-right: 1px solid #efefef;
}

.account table thead tr th:first-child {
  text-align: center;
}

.account table tbody tr {
  border-bottom: 1px solid #efefef;
  border-right: none;
  border-left: none;
  border-top: none;
}

.account table tbody tr td {
  align-items: center;
}

.account table tbody tr td {
  padding: 10px;
  border: none;
  border-right: 1px solid #efefef;
}

@media (min-width: 768px) {
  .account table tbody tr td {
    padding: 5px;
  }
}


.stock {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.category-content {
  font-size: 17px;
  font-weight: 600;
}

.subcategory-content {
  font-size: 17px;
  font-weight: 600;
}

.cart-top h2 {
  margin: 0px 20px;
  padding: 15px 10px;
  text-align: center;
}

.add-cart-variable {


  line-height: 40px;
  text-align: center;
  font-size: 15px;
  color: #efefef;
  background: #fff;
  display: inline-block;

  border: 1px solid #efefef;
  border-top-color: rgb(239, 239, 239);
  border-right-color: rgb(239, 239, 239);
  border-bottom-color: rgb(239, 239, 239);
  border-left-color: rgb(239, 239, 239);
  -webkit-border-radius: 5%;
  -moz-border-radius: 5%;
  border-radius: 5%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-item .product-inner:hover .add-cart-variable,
.product-item .product-inner.active .add-cart-variable {
  background: #000;
  border-color: #000;
}

.price-range input[type="text"] {
  border: medium none;
  float: none;
  height: 30px;
  letter-spacing: 3px;
  text-align: center;
  width: 56%;
  word-spacing: 7px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: #d19e66;
  line-height: 23px;
}

/*side search box*/
.header-form {
  width: calc(100% - 0px);
  justify-content: space-between;
}

.header-form input {
  width: calc(100% - 70px);
  border: none;
  margin-bottom: 0;
}

.header-form button {
  border: none;
  padding: 14.5px 20.2px;
  color: #fff;
  background: #000;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
}

.price {
  /* background-color: #f3f3f3; */
  padding: 5px 20px;
  margin-top: 10px;
  font-size: 15px;
  color: #f00;
  font-weight: normal;
  width: 100%;
  text-align: center;
  line-height: 26px;
  margin: 10px auto;
}

.filter_products p {
  font-size: 14px;
  margin-left: 10px;
  color: #000;
}

.pro-size,
.pro-color {
  padding: 10px 0px;
}

.pro-size label,
.pro-color label {
  font-size: 16px;
  color: #181818;
  font-weight: 700
}

.success h3 {
  text-align: center;
  margin: 10px 10px;
}

.success h5,
.failed h5 {
  text-align: center;
  margin: 10px 10px;
}

.success h6,
.failed h5 {
  text-align: center;
  margin: 10px 10px;
}

#myBtn1 {
  cursor: pointer;
}

/*Product Special Image*/
.wrapper,
img {
  display: inline-block;
}

#two {
  display: none;
}

.wrapper:hover #two {
  display: inline-block;
}

.wrapper:hover #one {
  display: none;
}


/*Products All Page*/
.wrapper {
  /*width: 240px;
  height: 220px;*/
  width: 260px;
  height: 220px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.wrapper:hover #two {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.porduct-thumb .product-cate {
  width: 351px;
  height: 275px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.product-cate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.porduct-thumb a {
  width: 351px;
  height: 275px;
  display: table-cell;
  vertical-align: middle;
  background: #f2f2f2;
}

.porduct-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  text-align: center;
  vertical-align: middle;
  margin: 0 auto;
  display: block;
  float: none;
}

.product-grid-item .product-item {
  border: 1px solid #efefef;
  margin-top: -1px;
  margin-left: -1px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

#order-review {}

/* Add this to your CSS */

/* Initially hide the user menu */
.user-content {
  opacity: 0;
  /* Hidden by default */
  visibility: hidden;
  /* Prevents interaction when hidden */
  pointer-events: none;
  /* Prevents interaction when hidden */
  transition: opacity 0.3s ease, visibility 0s 0.3s, pointer-events 0s 0.3s;
}

/* Show the user menu with smooth transition */
.user-content.show {
  opacity: 1;
  /* Make it visible */
  visibility: visible;
  /* Enable visibility */
  pointer-events: all;
  /* Enable interaction */
  transition: opacity 0.3s ease, visibility 0s 0s, pointer-events 0s;
}

.user-prof {
  position: absolute;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  margin-top: -20px;
}

#user-toggle-btn {
  cursor: pointer;
  font-size: 17px;
}

#user-menu-content {
  background-color: #448ee4;
  padding: 15px;
  width: 150px;
  border-radius: 5px;
  margin-top: 0px;
}

#user-menu-content li {
  color: #fff;
  font-size: 16px;
}

.form {
  background: #fff;
  padding: 30px 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form {
  width: 500px;
  margin: 0 auto;
}

.form .form-header {
  margin-bottom: 30px;
}

.form form-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #06002E;
}

.form .form-group {
  margin-bottom: 25px;
}

.form .form-group .form-control {
  padding: 12px 18px;
  border-radius: 0px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.register-form {
  width: 500px;
  margin: 0 auto;
}

.captcha {
  display: flex;
  justify-content: space-evenly;
  justify-content: start;
  gap: 15px;
}

.myaccount li a:hover {
  padding-left: 10px;
  color: #659494;
}

.myaccount li a {
  font-size: 16px;
  font-weight: 500;
  color: #343535;
  line-height: 45px;
  transition: all .5s ease-in-out;
}

.flexbox {
  display: flex;
  justify-content: space-between;
}

.nav-item {}

.nav-item p {
  font-size: 14px;
}


.myaccount li a.active {
  color: #448ee4;
}

.add-cart-variable {
  background-color: #0e2a86;
  color: #fff;
  padding: 0px 10px;
  border-radius: 5px;
}

.amount {
  margin-bottom: 10px;
}

/* .loading-img {
  width: 20px;  
  height: 20px;  
  margin-right: 10px;  
  vertical-align: middle;  
} */

/*Quantum Tonics 31-10-25*/
.table-cart-stepper {
  display: flex !important;
}

.fa-trash::before {
  content: "\f1f8";
  font-size: 20px;
  font-style: normal;
  color: red;
}

#social-links ul {
  display: inline-flex;
}

#social-links ul li {
  font-size: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.cart-qty:focus-within {
  border-color: #000;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

.cart-qty button {
  background: #f8f8f8;
  border: none;
  color: #333;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.cart-qty button:hover {
  background: #000;
  color: #fff;
}

.cart-qty button:active {
  transform: scale(0.95);
}

.cart-qty .qty-input {
  width: 50px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 16px;
  color: #333;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
}

.cart-qty .qty-input:focus {
  background: #f0f8ff;
}

/* Overlay covering the div */
.loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  /* semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Spinner styling */
.spinner {
  border: 5px solid #f3f3f3;
  /* light gray */
  border-top: 5px solid #3498db;
  /* blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*auth*/
/* Base container */
.rd-navbar-auth {
  display: flex;
  align-items: center;
}

/* User menu wrapper */
.user-menu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
}

/* Toggle link */
.user-menu>a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.user-menu>a:hover {
  color: #000;
}

/* Dropdown menu */
.user-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  display: none !important;
  z-index: 1000;
  border-radius: 4px;
}

/* Show dropdown on hover */
.user-menu:hover .user-dropdown {
  display: block !important;
}

/* Dropdown links */
.user-dropdown li {
  border-bottom: 1px solid #eee;
}

.user-dropdown li:last-child {
  border-bottom: none;
}

.user-dropdown a {
  display: inline-block;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #1a228a !important;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
  font-size: 15px;
  font-weight: normal;
}

.user-dropdown a:hover {
  background: #248ae3;
  color: #fff;
}

.user-dropdown i {
  width: 20px;
  text-align: center;
}

.fa-user::before {
  content: "\f007";
  font-size: 27px;
  font-style: initial;
}

/* Custom CSS for alert-success */
.alert {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 16px;
}

.alert-success {
  background-color: #d4edda;
  /* Light green background */
  color: #155724;
  /* Dark green text */
  border: 1px solid #c3e6cb;
  /* Green border */
}

.alert-success a {
  color: #155724;
  /* Dark green links */
}

.alert-success .close {
  color: #155724;
}

.alert-danger {
  padding: 15px;
  border: 1px solid #f5c2c7;
  background-color: #f8d7da;
  color: #842029;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  margin: 10px 0;
}

.alert-danger strong {
  font-weight: bold;
}

.bi-person::before {
  content: "\f4e1";
  font-size: 28px;
}

.badge {
  padding: 10px 10px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: normal;
}

/*28-4-26*/
.stats-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
}

.stats-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c2b4a;
  margin-bottom: 12px;
}

.stats-label {
  font-size: 16px;
  color: #5a6b82;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight {
  color: #2b7cff;
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  /* background: #2b7cff; */
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1s ease forwards 0.5s;
}

@keyframes underline {
  to {
    transform: scaleX(1);
  }
}

/* Button upgrade */
.btn-neon {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #2b7cff, #00c2ff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(43, 124, 255, 0.25);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(43, 124, 255, 0.35);
}

/*Section 2*/
.virtual-patient-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #eef5ff, #ffffff);
}

.vp-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* TEXT SIDE */
.vp-text {
  flex: 1;
  min-width: 300px;
}

.vp-text h2 {
  font-size: 36px;
  color: #1c2b4a;
  margin-bottom: 12px;
}

.vp-subtitle {
  font-size: 18px;
  color: #2b7cff;
  font-weight: 600;
  margin-bottom: 10px;
}

.vp-description {
  font-size: 15px;
  color: #5b6b82;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.vp-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2b7cff, #00c2ff);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(43, 124, 255, 0.25);
  transition: 0.3s ease;
}

.vp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(43, 124, 255, 0.35);
}

/* VISUAL SIDE */
.vp-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

/* AI CARD */
.ai-card {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* pulsing effect */
.pulse-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(43, 124, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* AI avatar */
.ai-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2b7cff, #00c2ff);
  color: white;
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-bottom: 15px;
}

/* status */
.ai-status {
  font-size: 13px;
  color: #5b6b82;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #2b7cff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/*Section 3*/
.mtt-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f7faff, #ffffff);
  text-align: center;
}

.mtt-header h2 {
  font-size: 34px;
  color: #1c2b4a;
  margin-bottom: 10px;
}

.mtt-header p {
  font-size: 16px;
  color: #5b6b82;
  margin-bottom: 50px;
}

/* GRID */
.mtt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.mtt-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid transparent;
}

.mtt-card:hover {
  transform: translateY(-6px);
  border-color: #2b7cff;
  box-shadow: 0 18px 45px rgba(43, 124, 255, 0.15);
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* TITLE */
.mtt-card h3 {
  font-size: 18px;
  color: #1c2b4a;
  margin-bottom: 8px;
}

/* TEXT */
.mtt-card p {
  font-size: 14px;
  color: #5b6b82;
  line-height: 1.6;
}

/*section 4*/
.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f1c33, #1c2b4a);
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* soft glow background effect */
.final-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 124, 255, 0.25), transparent 60%);
  top: -100px;
  right: -100px;
  filter: blur(40px);
}

.cta-container {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.cta-container h2 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-container p {
  font-size: 16px;
  color: #c9d6ea;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2b7cff, #00c2ff);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(43, 124, 255, 0.3);
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(43, 124, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/*Page 2 Platform Page*/
.platform-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.hero-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 40px;
  color: #1c2b4a;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #5b6b82;
  margin-bottom: 25px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
}

/*setion 2*/
.ptp-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* STEP CARDS */
.ptp-step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.ptp-step:hover {
  transform: translateX(6px);
}

/* NUMBER BADGE */
.ptp-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2b7cff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

/* IMAGE */
.ptp-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/*section 3*/
.levels-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #25335e 30%, #0010ff 100%);
}

/* TITLE */
/* .levels-section h2 {
  font-size: 34px;
  color: #fff;
} */

/* CARD */
.level-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  margin-bottom: 20px;
}

.level-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43, 124, 255, 0.15);
  border: 1px solid #2b7cff;
}

/* IMAGE */
.level-card img {
  width: 70px;
  margin-bottom: 12px;
}

/* TEXT */
.level-card h3 {
  font-size: 18px;
  color: #1c2b4a;
}

/*section 4*/
.insight-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* IMAGE */
.insight-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.insight-text h2 {
  font-size: 32px;
  color: #1c2b4a;
  margin-bottom: 20px;
}

/* LIST STYLE */
.insight-text ul {
  list-style: none;
  padding: 0;
}

.insight-text li {
  background: #ffffff;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  color: #5b6b82;
  transition: 0.3s ease;
}

.insight-text li:hover {
  transform: translateX(6px);
  border-left: 4px solid #2b7cff;
}

/*section 5*/
.scale-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  overflow: hidden;
}

/* glow effect */
.scale-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 124, 255, 0.25), transparent 60%);
  top: -150px;
  right: -150px;
  filter: blur(40px);
}

/* content */
.scale-content {
  position: relative;
}

.scale-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.scale-content p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.7;
}

/*Page 3 Solution*/
.solutions-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  text-align: center;
}

.solutions-hero h1 {
  font-size: 42px;
  color: #1c268b;
  margin-bottom: 15px;
}

.solutions-hero p {
  font-size: 18px;
  color: #5b6b82;
}

/*section 2 */
.solution-section {
  padding: 90px 0;
}

/* TITLE */
.solution-section h2 {
  font-size: 32px;
  color: #1c2b4a;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.solution-section p {
  color: #5b6b82;
  line-height: 1.7;
}

/* SUB TITLE */
.solution-section h4 {
  margin-top: 20px;
  color: #fbcf04;
}

/* ✅ FIX LIST VISIBILITY */
.solution-section ul {
  margin-top: 15px;
  padding-left: 20px;
  color: #1c2b4a;
  /* IMPORTANT FIX */
}

.solution-section ul li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #1c2b4a;
  list-style: none;

  display: flex;
  align-items: center;
  gap: 15px;

  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

  /* important for smooth movement */
  transform: translateX(0);
}

.solution-section ul li:hover {
  transform: translateX(10px);
  /* moves right */
  box-shadow: 0 15px 30px rgba(43, 124, 255, 0.15);
  border-left: 4px solid #2b7cff;
}

/* HIGHLIGHT TEXT */
.solution-section .highlight {
  margin-top: 15px;
  font-weight: 600;
  color: #2b7cff;
}

/*section 3*/
.bg-light {
  background: #f8fafc;
}

.solution-section h2 {
  font-size: 34px;
  color: #212d8d;
  margin-bottom: 15px;
}

.solution-section ul {
  padding-left: 18px;
  color: #5b6b82;
}

/*AI Companion Page*/
.ai-hero {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #25335e 30%, #0010ff 100%);
}

.ai-hero h1 {
  font-size: 44px;
  color: #ffffff;
}

.ai-hero p {
  color: #aab4c5;
  font-size: 18px;
}

/*section 1*/
.ai-features {
  padding: 90px 0;
  background: #fff;
}

.ai-features::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  filter: blur(80px);
  top: -100px;
  left: -100px;
}

.ai-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  color: #2d4293;
  transition: 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

/*section 2*/
.ai-beyond {
  padding: 100px 0;
  background: #0f172a;
}

.ai-beyond h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.ai-beyond ul {
  list-style: none;
  padding: 0;
}

.ai-beyond ul li {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #cbd5e1;

  transition: all 0.35s ease;
  transform: translateX(0);
  position: relative;
}

.ai-beyond ul li:hover {
  transform: translateX(12px);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

/*section 3*/
.ai-cta {
  padding: 90px 0;
  background: #f8fafc;
}

.ai-cta h2 {
  color: #1c2b4a;
  margin-bottom: 15px;
}

.btn-neon {
  background: linear-gradient(135deg, #00c2ff, #2b7cff);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(43, 124, 255, 0.35);
  transition: 0.35s ease;
  border: none;
}

.btn-neon:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(43, 124, 255, 0.55);
}

/*About Page*/
.about-hero {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #25335e 30%, #0010ff 100%);
}

.about-hero h1 {
  font-size: 44px;
  color: #ffffff;
}

.about-hero p {
  font-size: 18px;
  color: #aab4c5;
}

/*Section 2*/
.about-principles {
  padding: 90px 0;
  background: #f2f2f2;
}

.about-card {
  background: rgb(26, 34, 138);
  border: 1px solid rgb(28, 37, 139);
  padding: 40px 20px;
  border-radius: 16px;
  color: #fff;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.about-card h3 {
  font-size: 18px;
}

/*header cart*/
.header_account a,
.cart a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.cart {
  position: relative;
}

/* Cart badge */
.cart-count {
  background: #2b7cff;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50px;
  margin-left: 4px;
}

/*currency*/
.currency-form select {
  width: 90px;
  border-radius: 6px;
  cursor: pointer;
}

.currency-form {
  margin-left: 0px;
}

/*enquiry page*/
input[readonly] {
  cursor: not-allowed;
  background-color: #f1f5f9;
}

/*Checkout Page*/
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-badges .badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 8px 12px;
  border-radius: 30px;
  font-size: 14px;
  color: #25348f;
}

/* Home Page Feature Cards */
.feature-card {
  display: block !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06) !important;
  border: 1px solid #e2e8f0 !important;
}

.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12) !important;
  border-color: #cbd5e1 !important;
}

/* Header */
.feature-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card h3,
.feature-title {
  color: #0f172a !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0.35rem !important;
}

.feature-desc,
.short-text {
  color: #475569 !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  margin: 8px 0 0 0 !important;
}

/* Expand content */
.extra-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Active state */
.feature-card.active .extra-content {
  margin-top: 10px;
}

/* Button */
.expand-btn {
  margin-top: 10px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* Modern Dropdown styles */
.custom-modern-dropdown {
  position: relative;
}

/* Base style for both dropdowns */
.modern-dropdown-menu,
.user-dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  /* Align to the right */
  min-width: 240px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  padding: 12px 8px !important;
  margin-top: 12px !important;
  z-index: 1000 !important;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
  /* use opacity/visibility for transition */
}

/* Hover triggering for user-menu */
.user-menu:hover .user-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Show class for bootstrap interactive dropdown */
.modern-dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Dropdown User Info Header */
.dropdown-header-container {
  padding: 8px 16px 12px 16px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 8px !important;
  list-style: none !important;
}

.dropdown-user-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.dropdown-user-info .user-name {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.2 !important;
}

.dropdown-user-info .user-email {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  color: #64748b !important;
  margin-top: 4px !important;
}

/* Menu links styling */
.modern-dropdown-menu li,
.user-dropdown li {
  list-style: none !important;
  margin: 2px 0 !important;
  border-bottom: none !important;
  /* remove old borders */
}

.modern-dropdown-menu .dropdown-item,
.user-dropdown a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 16px !important;
  color: #334155 !important;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
  justify-content: flex-start !important;
}

/* Icons inside dropdown items */
.modern-dropdown-menu .dropdown-item i,
.user-dropdown a i {
  font-size: 16px !important;
  color: #64748b !important;
  transition: color 0.2s ease !important;
  width: 20px !important;
  text-align: center !important;
  display: inline-block !important;
}

/* Hover effects */
.modern-dropdown-menu .dropdown-item:hover,
.user-dropdown a:hover {
  background: rgba(36, 138, 227, 0.08) !important;
  color: #248ae3 !important;
}

.modern-dropdown-menu .dropdown-item:hover i,
.user-dropdown a:hover i {
  color: #248ae3 !important;
}

/* Danger / Logout item custom styling */
.modern-dropdown-menu .dropdown-item.text-danger:hover,
.user-dropdown a.text-danger:hover {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #ef4444 !important;
}

.modern-dropdown-menu .dropdown-item.text-danger:hover i,
.user-dropdown a.text-danger:hover i {
  color: #ef4444 !important;
}

/* Divider styling */
.modern-dropdown-menu .dropdown-divider,
.user-dropdown .dropdown-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  margin: 6px 8px !important;
  height: 0 !important;
  padding: 0 !important;
}

/* Dark mode theme overrides */
body.dark .modern-dropdown-menu,
body.dark .user-dropdown {
  background: rgba(15, 23, 42, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

body.dark .dropdown-header-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.dark .dropdown-user-info .user-name {
  color: #f1f5f9 !important;
}

body.dark .dropdown-user-info .user-email {
  color: #94a3b8 !important;
}

body.dark .modern-dropdown-menu .dropdown-item,
body.dark .user-dropdown a {
  color: #cbd5e1 !important;
}

body.dark .modern-dropdown-menu .dropdown-item i,
body.dark .user-dropdown a i {
  color: #94a3b8 !important;
}

body.dark .modern-dropdown-menu .dropdown-item:hover,
body.dark .user-dropdown a:hover {
  background: rgba(36, 138, 227, 0.15) !important;
  color: #38bdf8 !important;
}

body.dark .modern-dropdown-menu .dropdown-item:hover i,
body.dark .user-dropdown a:hover i {
  color: #38bdf8 !important;
}

body.dark .modern-dropdown-menu .dropdown-divider,
body.dark .user-dropdown .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Remove bootstrap default dropdown indicator arrow */
.no-chevron::after {
  display: none !important;
}

/* ==========================================================================
   GLOBAL MOBILE RESPONSIVE SAFETY & ENHANCEMENT RULES
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Table Responsiveness for Mobile Screens */
.table-responsive, 
.table-container,
.cart-table-wrapper,
#cart-page-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .myaccount-form {
    padding: 16px !important;
    margin: 10px auto !important;
  }

  .form-control, .form-select, .form-input {
    font-size: 15px !important; /* Prevents auto-zoom on iOS Safari */
  }

  .modal-dialog {
    margin: 0.5rem !important;
  }
}