.form-subtitle {
  /* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do */
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  color: #000000;
}

.cursor-pointer {
  cursor: pointer !important;
}

form a {
  color: #06427b;
}

table {
  border-collapse: unset;
  border-color: #000000;
  overflow: hidden;
}

table thead tr {
  border-radius: 10px 10px 0 0;
}

section {
  border-radius: 2rem;
  padding: 10px;
}
/* Optional: Keep the burger-menu sizing */
.burger-menu {
  width: 50px;
}

/* Base state: nav-menu is hidden on mobile */
.nav-menu {
  position: absolute;
  top: 100%;   /* Place it right below the header */
  left: 0;
  width: 100%;
  opacity: 0 !important;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;

}
/* Default state: show burger-icon and hide close-icon */
.burger-menu .burger-icon {
  display: block;
}

.burger-menu .close-icon {
  display: none;
}

/* When the burger menu has the 'active' class, reverse the icons */
.burger-menu.active .burger-icon {
  display: none !important;
}

.burger-menu.active .close-icon {
  display: block !important;
}

/* For nav-menu (assuming it’s placed after the checkbox) */
#menu-toggle:checked ~ .nav-menu {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2 !important;
}
#nav-toggler:hover{
  opacity: 0.8;
  transform: translateY(-5px);
}
/* On larger screens, show nav-menu in normal flow */
@media (min-width: 1024px) {
  .nav-menu {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    z-index: 50000 !important;
  }
}
@media (max-width: 1024px) {
  .main-header .nav-menu {
      background-color: #ffb62c !important;
  }
}


.login-section,
.register-section,
.forget-section {
  background-color: #fff5e2;
}

.auth-container section h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 44px;
  line-height: 53px;
  text-transform: capitalize;
  color: #062a77;
  text-align: center;
}

.cart-page .filter-section ul li:first-child,
.cart-page .filter-section ul li:nth-child(2) {
  border-bottom: 1px solid #ababab;
}

.filter-section {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.filter-section .shapes-wrapper {
  position: absolute;
  top: 42px;
  right: -32px;
  z-index: -1;
}

.filter-section .filter-header {
  display: flex;
  flex-direction: column;
  background-color: #014ddf;
  color: white;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.filter-section .filter-header h2 {
  font-weight: 500;
}

.filter-section ul {
  padding: 1rem;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.filter-section ul li {
  display: flex;
  justify-content: space-between;
}

.filter-section h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.filter-section .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #0056b3;
  /* Total Price */
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

.filter-section .form-select {
  border: 1px solid #062a77;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.filter-section .form-select:focus {
  border: 1px solid #062a77;
  box-shadow: none;
}

.filter-section .btn {
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #062a77;
}

.table-orders {
  border-spacing: 0.1px;
  border: 1px solid #000000;
  border-radius: 10px;
}

.table-orders tr {
  border-top: 1px solid #e0e0e0;
}

.table-orders thead {
  background-color: #014ddf;
  color: white;
  border-radius: 10px 10px 0 0;
}

.table-orders thead th {
  text-align: center;
  border: none;
  padding: 1.5rem;
}

.table-orders tbody tr {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
}

.table-orders tbody tr td {
  vertical-align: middle;
  padding: 10px;
  border: none;
}

.table-orders tbody tr td img.product-image {
  width: 50%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
  margin-right: 10px;
}

.table-orders tbody tr td button {
  border-radius: 5px;
}

.table-orders tbody .product-address .form-check-input {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  text-transform: lowercase;
  color: #062a77;
}

.table-orders tbody .cost {
  /* 101.23 $ */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-wrap: nowrap;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

@media (max-width: 768px) {
  .table-orders {
    font-size: 0.8rem;
  }

  .table-orders .cost {
    font-size: 0.8rem !important;
  }

  .table-orders th,
  .table-orders td {
    padding: 0.5rem;
  }

  .filter-section .form-label {
    font-size: 0.8rem;
  }

  .filter-section .field-value {
    font-size: 0.8rem;
  }

  .filter-section .btn {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .product-address {
    font-size: 12px !important;
    display: flex;
    flex-wrap: wrap;
    line-height: 15px !important;
  }

  .product-address .form-check-label {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    text-transform: lowercase;
    color: #062a77;
  }

  th {
    padding: 1.5rem 0.5rem !important;
  }

  tbody tr td {
    padding: 0.5rem !important;
  }
}

.quantity-selector__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  background: rgba(255, 182, 44, 0.1);
  border: 2px solid #ffb62c;
  border-radius: 10px;
}

.quantity-selector__controls input {
  justify-items: center;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 50px;
}

.quantity-selector__controls .quantity-selector__btn {
  width: 25px;
  /* Adjust the size as needed */
  height: 25px;
  /* Adjust the size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #06427b;
  border-radius: 0.5rem;
  font-size: x-large;
  margin: 0 5px;
  /* Adjust the margin as needed */
}

.filter-section {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.filter-section .shapes-wrapper {
  position: absolute;
  top: 42px;
  right: -32px;
  z-index: -1;
}

.filter-section .filter-header {
  display: flex;
  flex-direction: column;
  background-color: #014ddf;
  color: white;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.filter-section .filter-header h2 {
  font-weight: 500;
}

.filter-section ul {
  padding: 1rem;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.filter-section ul li {
  display: flex;
  justify-content: space-between;
}

.filter-section h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.filter-section .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #0056b3;
  /* Total Price */
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

.filter-section .form-select {
  border: 1px solid #062a77;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.filter-section .form-select:focus {
  border: 1px solid #062a77;
  box-shadow: none;
}

.filter-section .btn {
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #062a77;
}

.table-address {
  border-spacing: 0.1px;
  border: 1px solid #000000;
  border-radius: 10px;
}

.table-address tr {
  border-top: 1px solid #e0e0e0;
}

.table-address thead {
  background-color: #014ddf;
  color: white;
  border-radius: 10px 10px 0 0;
}

.table-address thead th {
  text-align: center;
  border: none;
  padding: 1.5rem;
}

.table-address tbody tr {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
}

.table-address tbody tr td {
  vertical-align: middle;
  padding: 10px;
  border: none;
}

.table-address tbody tr td img.product-image {
  width: 50%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
  margin-right: 10px;
}

.table-address tbody tr td button {
  border-radius: 5px;
}

.table-address tbody .product-part {
  display: inline-flex;
  align-items: center;
  /* Rounded Corner Gold Foil Matt Laminated 400gsm */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  /* or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.table-address tbody .cost {
  /* 101.23 $ */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-wrap: nowrap;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

.table-address .form-check-label {
  /* John Smith, 123 Main Street, Apt 4B, Springfield, IL 62704, United States */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  /* identical to box height, or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.table-address .form-check-input {
  min-width: 20px;
  min-height: 20px;
}

.dates-wrapper {
  border-bottom: 1px solid #e0e0e0;
}

.dates-wrapper .form-check-label {
  color: #000000 !important;
}

@media (max-width: 768px) {

  .table-address,
  .form-check-label {
    font-size: 0.8rem !important;
  }

  .table-address .cost,
  .form-check-label .cost {
    font-size: 0.8rem !important;
  }

  .table-address th,
  .table-address td,
  .form-check-label th,
  .form-check-label td {
    padding: 0.5rem;
  }

  .filter-section .form-label {
    font-size: 0.8rem;
  }

  .filter-section .field-value {
    font-size: 0.8rem;
  }

  .filter-section .btn {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .product-part {
    font-size: 12px !important;
    display: flex;
    flex-wrap: wrap;
    line-height: 15px !important;
  }

  .product-part img {
    width: 100% !important;
  }

  th {
    padding: 1.5rem 0.5rem !important;
  }

  tbody tr td {
    padding: 0.5rem !important;
  }
}

.quantity-selector__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  background: rgba(255, 182, 44, 0.1);
  border: 2px solid #ffb62c;
  border-radius: 10px;
}

.quantity-selector__controls input {
  justify-items: center;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 50px;
}

.quantity-selector__controls .quantity-selector__btn {
  width: 25px;
  /* Adjust the size as needed */
  height: 25px;
  /* Adjust the size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #06427b;
  border-radius: 0.5rem;
  font-size: x-large;
  margin: 0 5px;
  /* Adjust the margin as needed */
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.order-page {
  /* display: grid;
  grid-template-columns: 1fr auto; */
  min-height: 100vh;
}

.header {
  grid-column: 1/-1;
  padding: 1rem;
  border-bottom: 1px solid #cbcbcb;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  height: 2.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-grow: 1;
}

.nav__categories-btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #ffb62c;
  border-radius: 9999px;
  font-weight: 500;
}

.nav__categories-btn img {
  width: 1rem;
  height: 1rem;
}

.nav__links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav__link {
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  border: 1px solid #cbcbcb;
  color: #05112a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav__link--active {
  border-color: #ffb62c;
  border-width: 2px;
}

.nav__link:hover {
  border-color: #ffb62c;
}

/* main {
  padding: 2rem;
} */

.product__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: 3rem;
}

/* thumb slider */

swiper-container {
  /* width: 100%; */
  /* height: 100%; */
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

swiper-container {
  width: 100%;
  /* height: 300px; */
  /* margin-left: auto; */
  margin-right: auto;
}

swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
}

.mySwiper2 {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  width: 100%;
  max-width: 300px;
  max-height: 300px;
}

.mySwiper2 swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper2 .swiper-slide-thumb-active {
  opacity: 1;
}

swiper-slide img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* thumb slider */
.thumbs-slider-container {
  max-width: 500px;
  margin-inline: auto;
}

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

.product__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #06427b;
  font-family: "Inter";
  font-weight: 600;
  font-size: 25px;
  /* or 120% */
  color: #062a77;
}

.product__description {
  color: #000000;
  /* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Egestas purus viverra accumsan in nisl nisi. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  color: #000000;
}

.product__options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #ababab;
  padding: 0 0 1rem 0;
}

.product__toggles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product__toggles .toggle-group .nav-pills {
  border: 2px solid #06427b;
  padding: 1px;
  border-radius: 0.5rem;
  gap: 0.75rem;
}

.product__toggles .toggle-group .nav-pills .nav-link {
  opacity: 0.7;
  color: #868686;
  font-weight: 500;
  width: 140px;
  text-wrap: nowrap;
}

.product__toggles .toggle-group .nav-pills .nav-link.active {
  opacity: 0.7;
  color: white !important;
  font-weight: 500;
}

.product__toggles .toggle-group .active {
  background-color: #ffb62c;
  /* color: #05112a !important; */
  opacity: 1 !important;
}

.product .quantity-selector__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  gap: 0.75rem;
  background: rgba(255, 182, 44, 0.1);
  border: 2px solid #ffb62c;
  border-radius: 10px;
}

.product .quantity-selector__controls input {
  justify-items: center;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 80px;
}

.product .quantity-selector__controls .quantity-selector__btn {
  width: 30px;
  /* Adjust the size as needed */
  height: 30px;
  /* Adjust the size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #06427b;
  border-radius: 0.5rem;
  font-size: x-large;
  margin: 0 5px;
  /* Adjust the margin as needed */
}

.product .quantity-selector__controls .quantity-selector__btn span {
  transform: translateY(-3px);
  color: #062a77;
}

.product .quantity-selector__controls .quantity-selector__btn:hover span {
  transform: translateY(-3px);
  color: white;
}

.tables-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  display: flex;
  padding: 2rem 0;
  margin-inline: 2rem;
  gap: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #ececec;
  border-radius: 20px;
}

.dimensions {
  padding-top: 1.25rem;
}

.dimensions__container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1.25rem;
}

.dimensions__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
  padding: 5px 10px 21px;
  gap: 5px;
  width: 209px;
  /* height: 48px; */
  background: #d3d3d3;
  border: 1px solid #014ddf;
  border-radius: 10px;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: -18px 0px;
}

.dimensions__header h2 {
  font-size: 0.875rem;
  font-weight: 500;
}

.dimensions__table {
  overflow-x: auto;
  border: 1px solid #014ddf;
  border-radius: 1.25rem;
}

.dimensions__table table {
  width: 100%;
  border-collapse: collapse;
}

.dimensions__table table th,
.dimensions__table table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 2px dashed #cbcbcb;
  font-size: 12px;
  font-weight: 500;
}

.dimensions__table table td {
  color: #06427b;
}

.dimensions__table table th {
  background-color: #fff8ea;
  font-weight: 500;
}

.dimensions__table table tr:last-child td {
  border-bottom: none;
}

.upload {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 2rem;
}

@media (min-width: 768px) {
  .upload {
    flex-direction: row;
    font-size: small;
  }
}

.upload__container {
  max-width: 1200px;
  padding: 0 1rem;
}

.upload__content {
  margin-top: 2rem;
  text-align: center;
}

.stepper {
  position: relative;
  padding-left: 30px;
}

.upload-shape {
  position: absolute;
  left: -24px;
  width: 100px;
  top: 30px;
}

.upload__content .btn-primary {
  background-color: #014ddf;
}

.upload__content h2 {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.upload__dropzones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .upload__dropzones {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .upload-shape {
    display: none;
  }

  .upload {
    padding-left: 10px;
  }

  .stepper {
    padding-left: 0;
  }
  .stepper__content{
    font-size: 11px !important;
    padding: 11px 9px !important;
    svg{
      display: none !important;
    }
  }
  .stepper__steps{
    flex-grow: 1;
  }

  .btn-group-sm {
    justify-content: center;
  }
}

.dropzone {
  position: relative;
  border: 2px dashed #ccc;
  /* Change to your desired border color */
  border-radius: 8px;
  /* Adjust border radius */
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropzone .inner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.dropzone:hover {
  border-color: #007bff;
  /* Change to your desired hover color */
}

.dropzone__header {
  padding: 10px;
  /* Adjust padding */
  background-color: #ececec;
  /* Header background color */
  border-radius: 8px 8px 0 0;
  /* Adjust border radius */
  text-align: center;
  color: #007bff;
  /* Header text color */
}

.dropzone span {
  color: #007bff;
  /* Text color */
}

.next-button {
  background-color: #007bff;
  /* Button background color */
  color: white;
  /* Button text color */
  padding: 10px 20px;
  /* Button padding */
  border: none;
  /* Remove border */
  border-radius: 5px;
  /* Button border radius */
  cursor: pointer;
  margin-top: 20px;
  /* Space above button */
  transition: background-color 0.2s ease;
}

.next-button:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}

.stepper__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  white-space: nowrap;
  gap: 5px;
}

.stepper__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.stepper__step--active .stepper__number {
  background-color: #014ddf;
  color: #fff;
}

.stepper__step--active .stepper__content {
  background-color: #ffa500;
  color: #014ddf;
}

.stepper__step--active svg path {
  fill: #014ddf !important;
}

.stepper__step--passed .stepper__number {
  background-color: #014ddf;
  color: #fff;
}

.stepper__step--passed .stepper__content {
  background-color: #014ddf;
  color: white;
}

.stepper__step--passed .stepper__content svg path {
  fill: white !important;
}

.stepper__number {
  width: 30px;
  height: 30px;
  border-radius: 1rem;
  background-color: #8a8a8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.stepper__content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  transition: all 0.2s ease;
  font-size: 90%;
}

.stepper__content svg {
  width: 30px;
  height: 30px;
}

.stepper__content svg path {
  fill: #040404;
}

.stepper .connector {
  position: absolute;
  left: 75%;
  width: 75%;
}

.dropzone {
  position: relative;
  border: 1px dashed #cbcbcb;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropzone:hover {
  border-color: #06427b;
}

.dropzone__header {
  padding: 0.75rem;
  width: 100%;
  background-color: #ececec;
  border-radius: 1.25rem 1.25rem 0 0;
  text-align: center;
  color: #06427b;
}

.dropzone__preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
}

.dropzone__preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 1rem;
}

.dropzone span {
  color: #06427b;
}

.order-page .order-summary {
  background-color: #fff;
  border: 1px solid #05112a;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  width: 100%;
}

@media (min-width: 768px) {
  .order-page .order-summary {
    width: 320px;
  }
}

.order-summary__header {
  display: flex;
  flex-direction: column;
  background-color: #014ddf;
  color: white;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.25rem 1.25rem 0 0;
}

.order-summary__header h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

.order-summary__content {
  padding: 1rem;
}

.order-summary__toggle {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffb62c;
}

.order-summary__toggle img {
  width: 16px;
  height: 16px;
}

.order-summary__section {
  padding: 0.5rem 0;
  border-bottom: 1px solid #cbcbcb;
}

.order-summary__section h3 {
  color: #06427b;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.order-summary__section p {
  color: #000000;
  margin-bottom: 0.5rem;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: #ffb62c;
  border-radius: 1.25rem;
  color: #06427b;
  font-weight: 500;
}

.preview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.preview-images__item span {
  display: block;
  margin-bottom: 0.5rem;
}

.preview-images__placeholder {
  border: 2px dashed #cbcbcb;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preview-images__placeholder img {
  width: 20px;
  height: 20px;
}

.preview-images__placeholder span {
  color: #06427b;
  font-size: 0.875rem;
}

.btn--primary {
  background-color: #06427b;
  color: #fff;
}

.btn--primary:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.btn-primary {
  background-color: #014ddf;
  color: #fff;
}

.btn-primary:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.btn img {
  width: 20px;
  height: 20px;
}

/* extended service content start*/
.extended-service-content {
  margin-top: 2rem;
  text-align: left;
}

.extended-service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #06427b;
  /* Header color */
}

.options-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.option-card {
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  padding: 5px;
  padding-bottom: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.option-card:hover {
  opacity: 0.9;
}

.option-card input[type="radio"] {
  appearance: auto !important;
  accent-color: #014ddf !important;
}

.option-card input[type="radio"]:checked {
  background-color: blue !important;
  border-color: blue !important;
}

.option-card label {
  display: flex;
  flex-direction: column;
}

.option-card__header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  color: white;
  padding: 10px;
  background-color: #8f8f8f;
  border-radius: 8px;
}

.option-card label span {
  font-weight: bold;
  color: white;
  /* Option title color */
}

.option-card label p {
  margin: 0.5rem 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  text-align: justified;

  color: #000;
  /* Option description color */
}

.option-card input[type="radio"]:checked+label {
  border: 2px solid #014ddf;
  /* Selected option border color */
  background-color: rgba(1, 77, 223, 0.1);
  /* Selected option background color */
}

.option-card input:checked+.option-card {
  background-color: red !important;
}

.selected {
  background-color: #014ddf;
}

.selected .option-card__header {
  background-color: white;
  color: #06427b;
}

.selected .option-card__content p {
  color: white !important;
}

/*  */

/* extended service content end*/

/* confirm details step start  */
.confirm-details {
  margin-top: 3rem;
  padding: 1rem;
  /* background-color: #f9f9f9;  */
  border-radius: 8px;
}

.confirm-details__container {
  max-width: 800px;
  margin: 0 auto;
}

.confirm-details__header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #06427b;
  /* Header color */
  text-align: center;
}

.product-summary {
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  /* White background for product summary */
  margin-bottom: 1rem;
  z-index: 2;
}

.product-summary__header {
  background-color: #FFB62C;
  /* Header background color */
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  margin: -5px 0px;
  z-index: 1;
  width: fit-content;
  margin-left: 20px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  border: 1px solid #014DDF;
}

.product-summary__item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #cbcbcb;
  /* Dashed line between items */
}

/* first span  */
.product-summary__item span:first-child {
  padding: 5px;
  background: #fff8ea;
  border-radius: 8px;
  width: 30%;
}

.product-summary__item span:last-child {
  color: #062a77;
  font-weight: 500;
}

.product-summary__item span {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

.product-summary__item:last-child {
  border-bottom: none;
  /* Remove border from the last item */
}

.total-price {
  display: flex;
  font-weight: 500;
  gap: 10px;
  border-radius: 8px;
}

.total-price__amount {
  color: #ffb62c;
  /* Total price color */
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 22px;

}

.btn-group-sm {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* confirm details step  end*/

.profile-section {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 0.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.profile-section .shapes-wrapper {
  position: absolute;
  bottom: -20px;
  left: -32px;
  z-index: -1;
}

.profile-section .profile-avatar-wrapper {
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.profile-section .profile-avatar-wrapper .avatar-img {
  border: 2px solid #062a77;
  max-width: 120px;
}

.profile-section .profile-avatar-wrapper h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  /* identical to box height, or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.profile-section .profile-avatar-wrapper h2 {
  font-weight: 500;
}

.profile-section .nav {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: unset;
}

.profile-section .nav .nav-link {
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  color: #05112a;
  display: flex;
}

.profile-section .nav .nav-link.active {
  background-color: rgba(255, 182, 44, 0.1);
  border: 1px solid #ffb62c;
  border-radius: 10px;
}

.profile-section .nav .nav-link:hover {
  border: 1px solid #ffb62c;
  border-radius: 10px;
  font-weight: 500;
}

.profile-section h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.profile-section .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #0056b3;
  /* Total Price */
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

.profile-section .form-select {
  border: 1px solid #062a77;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.profile-section .form-select:focus {
  border: 1px solid #062a77;
  box-shadow: none;
}

.profile-section .btn {
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #062a77;
}

.table-address {
  border-spacing: 0.1px;
  border: 1px solid #000000;
  border-radius: 10px;
}

.table-address tr {
  border-top: 1px solid #e0e0e0;
}

.table-address thead {
  background-color: #014ddf;
  color: white;
  border-radius: 10px 10px 0 0;
}

.table-address thead th {
  text-align: center;
  border: none;
  padding: 1rem;
}

.table-address tbody tr {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
}

.table-address tbody tr td {
  vertical-align: middle;
  padding: 10px;
  border: none;
}

.table-address tbody tr td img.product-image {
  width: 50%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
  margin-right: 10px;
}

.table-address tbody tr td button {
  border-radius: 5px;
}

.table-address tbody .product-part {
  display: inline-flex;
  align-items: center;
  /* Rounded Corner Gold Foil Matt Laminated 400gsm */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 26px;
  /* or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.table-address tbody .cost {
  /* 101.23 $ */
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-wrap: nowrap;
  /* identical to box height, or 129% */
  text-transform: capitalize;
  color: #000000;
}

.table-address .form-check-label {
  /* John Smith, 123 Main Street, Apt 4B, Springfield, IL 62704, United States */
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  /* identical to box height, or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.table-address .form-check-input {
  min-width: 20px;
  min-height: 20px;
}

.table-address .address-details .item {
  padding: 0.5rem;
}

.table-address .address-details img {
  margin-right: 3px;
}

.table-address .address-details span {
  /* Mehrdad Seyfi Nikababdi */
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-transform: lowercase;
  color: #05112a;
}

.dates-wrapper {
  border-bottom: 1px solid #e0e0e0;
}

.dates-wrapper .form-check-label {
  color: #000000 !important;
}

.table-orders {
  width: 100%;
  border-spacing: 0.1px;
  border: 1px solid #000000;
  border-radius: 10px;
}

.table-orders thead {
  background-color: #014ddf;
  color: white;
}

.table-orders thead th {
  text-align: center;
  border: none;
  padding: 1rem;
}

.table-orders tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.table-orders tbody tr td {
  padding: 1rem;
  border: none;
}

.table-orders tbody tr .order-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
}

.table-orders tbody tr .order-details .order-info {
  margin-bottom: 0.5rem;
  display: flex;
  row-gap: 0.5rem;
  column-gap: 1.5rem;
}

.table-orders tbody tr .order-details .order-info .order-date {
  font-weight: 500;
  color: #05112a;
}

.table-orders tbody tr .order-details .order-info .order-code,
.table-orders tbody tr .order-details .order-info .order-pay {
  color: #05112a;
  /* Order Code: 40612598 */
}

.table-orders tbody tr .order-details .order-images {
  display: flex;
  gap: 0.5rem;
}

.table-orders tbody tr .order-details .order-images .order-image {
  max-width: 120px;
  height: auto;
  border-radius: 5px;
}

.table-order-details {
  border-spacing: 0.1px;
  border: 1px solid #000000;
  border-radius: 10px;
  margin-top: 1rem;
}

.table-order-details thead {
  background-color: #014ddf;
  color: white;
}

.table-order-details thead th {
  text-align: start;
  padding: 1rem;
}

.table-order-details tbody tr td {
  padding: 10px;
  vertical-align: middle;
}

.table-order-details tbody tr td .order-summary {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 5px;
}

.table-order-details tbody tr td .order-summary .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.table-order-details tbody tr td .order-summary .summary-item .order-info {
  margin-bottom: 0.5rem;
  display: flex;
  row-gap: 0.5rem;
  column-gap: 1.5rem;
}

.table-order-details tbody tr td .order-summary .summary-item .order-info .order-date {
  font-weight: 500;
  color: #05112a;
}

.table-order-details tbody tr td .order-summary .summary-item .order-info .order-code,
.table-order-details tbody tr td .order-summary .summary-item .order-info .order-pay {
  color: #05112a;
  /* Order Code: 40612598 */
}

.table-order-details tbody tr td .order-summary .summary-item .summary-label {
  font-weight: 500;
  color: #05112a;
}

.table-order-details tbody tr td .order-summary .order-address {
  /* John Smith, 123 Main Street, Apt 4B, Springfield, IL 62704, United States */
  font-weight: 600;
  /* identical to box height, or 153% */
  text-transform: lowercase;
  color: #062a77;
}

.table-order-details tbody tr td .order-summary .customer-info {
  display: flex;
  flex-direction: column;
}

.table-order-details tbody tr td .order-summary .customer-info .customer-name {
  font-weight: 600;
  color: #05112a;
}

.table-order-details tbody tr td .order-summary .customer-info .customer-email,
.table-order-details tbody tr td .order-summary .customer-info .customer-phone {
  font-size: 0.9rem;
  color: #6c757d;
}

.table-order-details tbody tr td .product-items {
  display: flex;
  flex-direction: column;
}

.table-order-details tbody tr td .product-items .product-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.table-order-details tbody tr td .product-items .product-item .product-image {
  width: 150px;
  height: auto;
  margin-right: 10px;
}

.table-order-details tbody tr td .product-items .product-item .product-details {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.table-order-details tbody tr td .product-items .product-item .product-details .product-description {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  text-transform: lowercase;
  color: #062a77;
}

.table-order-details tbody tr td .product-items .product-item .product-details .product-price {
  font-weight: 600;
  color: #05112a;
}

.table-order-details tbody tr td .product-items .product-item .product-details .product-quantity span {
  background-color: rgba(255, 182, 44, 0.1);
  border-radius: 10px;
  padding: 5px 15px;
  border: 1px solid #ffb62c;
  /* Frame 1000006590 */
}

@media (max-width: 768px) {

  .table-address,
  .form-check-label {
    font-size: 0.8rem !important;
  }

  .table-address .cost,
  .form-check-label .cost {
    font-size: 0.8rem !important;
  }

  .table-address th,
  .table-address td,
  .form-check-label th,
  .form-check-label td {
    padding: 0.5rem;
  }

  .table-address .address-details item,
  .form-check-label .address-details item {
    font-size: 12px;
  }

  .profile-section .form-label {
    font-size: 0.8rem;
  }

  .profile-section .field-value {
    font-size: 0.8rem;
  }

  .profile-section .btn {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .product-part {
    font-size: 12px !important;
    display: flex;
    flex-wrap: wrap;
    line-height: 15px !important;
  }

  .product-part img {
    width: 100% !important;
  }

  th {
    padding: 1rem 0.5rem !important;
  }

  tbody tr td {
    padding: 0.5rem !important;
  }

  .order-details {
    font-size: 0.8rem !important;
  }
}

.quantity-selector__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  background: rgba(255, 182, 44, 0.1);
  border: 2px solid #ffb62c;
  border-radius: 10px;
}

.quantity-selector__controls input {
  justify-items: center;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 50px;
}

.quantity-selector__controls .quantity-selector__btn {
  width: 25px;
  /* Adjust the size as needed */
  height: 25px;
  /* Adjust the size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #06427b;
  border-radius: 0.5rem;
  font-size: x-large;
  margin: 0 5px;
  /* Adjust the margin as needed */
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.order-page {
  /* display: grid;
  grid-template-columns: 1fr auto; */
  min-height: 100vh;
}

.header {
  grid-column: 1/-1;
  padding: 1rem;
  border-bottom: 1px solid #cbcbcb;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  height: 2.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-grow: 1;
}

.nav__categories-btn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #ffb62c;
  border-radius: 9999px;
  font-weight: 500;
}

.nav__categories-btn img {
  width: 1rem;
  height: 1rem;
}

.nav__links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav__link {
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  border: 1px solid #cbcbcb;
  color: #05112a;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav__link--active {
  border-color: #ffb62c;
  border-width: 2px;
}

.nav__link:hover {
  border-color: #ffb62c;
}

/* main {
  padding: 2rem;
} */

.product__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: 3rem;
}

.product__container .img-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-left: 20px;
}

.product__container .product-shape {
  position: absolute;
  z-index: -1;
  left: -20px;
  top: -20px;
}

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

.product__category {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  /* identical to box height, or 157% */
  text-align: justify;
  color: #062a77;
}

.product__description .title {
  /* Description */
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  text-transform: capitalize;
  color: #014ddf;
}

.product__description p {
  /* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Egestas purus viverra accumsan in nisl nisi. Arcu cursus vitae congue mauris rhoncus aenean vel elit scelerisque. In egestas erat imperdiet sed euismod nisi porta lorem mollis. Morbi tristique senectus et netus. Mattis pellentesque id nibh tortor id aliquet lectus proin. Sapien faucibus et molestie ac feugiat sed lectus vestibulum. Ullamcorper velit sed ullamcorper morbi tincidunt ornare massa eget. Dictum varius duis at consectetur lorem. Nisi vitae suscipit tellus mauris a diam maecenas sed enim. Velit ut tortor pretium viverra suspendisse potenti nullam. Et molestie ac feugiat sed lectus. Non nisi est sit amet facilisis magna. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  /* or 157% */
  text-align: justify;
  color: #000000;
}

.product__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ececec;
  padding: 1rem;
  border-radius: 1.25rem;
}

.product__features .title {
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  text-transform: capitalize;
  color: #014ddf;
}

.product__features ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product__features ul li {
  display: flex;
  gap: 0.75rem;
  position: relative;
  padding-left: 20px;
  /* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Egestas purus viverra accumsan in nisl nisi. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  color: #000000;
}

.product__features ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffb62c;
  border-radius: 50%;
  left: 0;
  top: 0;
  transform: translateY(50%);
}

.product__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #06427b;
  font-family: "Inter";
  font-weight: 600;
  font-size: 25px;
  /* or 120% */
  color: #062a77;
}

.product__description {
  color: #000000;
  /* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Egestas purus viverra accumsan in nisl nisi. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  color: #000000;
  border-bottom: 1px solid #ababab;
  padding-bottom: 1rem;
}

.product__toggles {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product__toggles .toggle-group .nav-pills {
  border: 2px solid #06427b;
  padding: 1px;
  border-radius: 0.5rem;
  gap: 0.75rem;
}

.product__toggles .toggle-group .nav-pills .nav-link {
  opacity: 0.7;
  color: #868686;
  font-weight: 500;
}

.product__toggles .toggle-group .active {
  background-color: #ffb62c;
  color: #05112a !important;
  opacity: 1 !important;
}

.product .quantity-selector__controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2px;
  gap: 0.75rem;
  background: rgba(255, 182, 44, 0.1);
  border: 2px solid #ffb62c;
  border-radius: 10px;
}

.product .quantity-selector__controls input {
  justify-items: center;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 80px;
}

.product .quantity-selector__controls .quantity-selector__btn {
  width: 30px;
  /* Adjust the size as needed */
  height: 30px;
  /* Adjust the size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #06427b;
  border-radius: 0.5rem;
  font-size: x-large;
  margin: 0 5px;
  /* Adjust the margin as needed */
}

.product .quantity-selector__controls .quantity-selector__btn span {
  transform: translateY(-3px);
}

.related_products {
  padding: 3rem 2rem;
}

.related_products .section-title {
  font-size: 2.75rem;
  font-weight: 600;
  text-align: center;
}

.related_products .section-title .highlight {
  color: #ffb62c;
}

.related_products .swiper {
  overflow: hidden;
}

.related_products .swiper-slide {
  display: flex;
  justify-content: center;
}

.related_products .swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.related_products .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ed9122;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.related_products .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed9122;

  opacity: 1;
}

.related_products .card-title {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  text-transform: lowercase;
  color: #062a77;
}

.next-button {
  background-color: #007bff;
  /* Button background color */
  color: white;
  /* Button text color */
  padding: 10px 20px;
  /* Button padding */
  border: none;
  /* Remove border */
  border-radius: 5px;
  /* Button border radius */
  cursor: pointer;
  margin-top: 20px;
  /* Space above button */
  transition: background-color 0.2s ease;
}

.next-button:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}

.preview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.preview-images__item span {
  display: block;
  margin-bottom: 0.5rem;
}

.preview-images__placeholder {
  border: 2px dashed #cbcbcb;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preview-images__placeholder img {
  width: 20px;
  height: 20px;
}

.preview-images__placeholder span {
  color: #06427b;
  font-size: 0.875rem;
}

.btn {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  border-color: #06427b;
  padding: 0;
  margin: 0;
  /* display: inline-flex;
   */
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border-radius: 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: #06427b;
  color: #fff;
}

.btn--primary:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.btn-primary {
  background-color: #014ddf;
  color: #fff;
}

.btn-primary:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.btn img {
  width: 20px;
  height: 20px;
}

body {
  font-family: "inter", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-section {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.filter-section .filter-header {
  display: flex;
  flex-direction: column;
  background-color: #014ddf;
  color: white;
  align-items: center;
  padding: 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.filter-section .filter-header h2 {
  font-weight: 500;
}

.filter-section form {
  padding: 1rem;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.filter-section h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-section .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #0056b3;
}

.filter-section .form-range {
  --bs-form-range-track-fg: $primary-color;
}

.filter-section .form-select {
  border: 1px solid #062a77;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.filter-section .form-select:focus {
  border: 1px solid #062a77;
  box-shadow: none;
}

.filter-section .btn {
  font-weight: 600;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: #062a77;
}

.product-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-section .sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-section .sort-bar .form-select {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.product-section .card-title {
  /* Rounded Corner Gold Foil Matt Laminated 400gsm */
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  text-transform: lowercase;
  color: #062a77;
}

/* === Sort By Section === */
.sort-by {
  padding: 1rem 1.5rem 0 1.5rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sort-by .sort-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
  text-wrap: nowrap;
}

.sort-by .sort-options {
  display: flex;
  gap: 1.5rem;
}

.sort-by .sort-options .sort-item {
  position: relative;
  font-size: 0.875rem;
  padding-bottom: 1rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: color 0.3s ease;
  text-wrap: nowrap;
}

.sort-by .sort-options .sort-item:hover {
  color: #0056b3;
}

.sort-by .sort-options .sort-item.active {
  color: #0056b3;
  font-weight: 600;
}

.sort-by .sort-options .sort-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #ffc107;
  border-radius: 1px;
}

@media (max-width: 576px) {
  .sort-by {
    padding: 0.5rem 0.75rem 0 0.75rem !important;
  }

  .sort-by .sort-label {
    font-size: 0.7rem;
    font-weight: 700;
  }

  .sort-by .sort-options {
    gap: 0.8rem;
  }

  .sort-by .sort-options .sort-item {
    font-size: 0.7rem;
    padding-bottom: 0.5rem;
  }

  .sort-by .sort-label {
    display: none;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pagination .page-item .page-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d6efd;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
}

.pagination .page-item .page-link:hover {
  background-color: #0d6efd;
  color: #ffffff;
}

.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
}

@media (max-width: 768px) {
  .filter-section {
    margin-bottom: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: 0.75rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 1.25rem;
}

.bg-primary {
  background-color: #06427b;
}

.bg-secondary {
  background-color: #ffb62c;
}

.text-primary {
  color: #06427b;
}

.text-secondary {
  color: #ffb62c;
}

.text-light {
  color: #000000;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #05112a;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #06427b;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-header {
  padding: 0 0;
  position: relative;
}

.main-header .nav-menu {
  opacity: 1;
  transform: translateY(0);
}

.main-header .dropdown-menu {}

.main-header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .main-header .nav-container {
    gap: 1.5rem;
  }
}

.main-header .company-logo {
  width: 114px;
  height: auto;
}

@media (min-width: 768px) {
  .main-header .nav-menu {
    gap: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .main-header .dropdown-menu {
    position: sticky !important;
    transform: none !important;
    background-color: #ffb62c !important;
  }

  .main-header .nav-menu {
    background-color: #ffb62c;
  }


  .main-header .dropdown-menu a {
    text-align: center
  }
}

.main-header .categories-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #ffb62c;
  border-radius: 9999px;
  font-weight: 500;
  justify-content: center;
}

.main-header .nav-links {
  display: flex;
  align-items: center;
}

.main-header .nav-link {
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-wrap: nowrap;
}

.main-header .nav-link span {
  text-wrap: nowrap;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
  background-color: #ffb62c;
}

.main-header .nav-actions {
  display: flex;
  align-items: center;
}

.main-header .cart-link,
.main-header .signup-btn {
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  gap: 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.main-header .cart-link:hover,
.main-header .signup-btn:hover {
  /* background-color: #ffb62c; */
  background-color: #ffb62c !important;
  color: #05112a;
}

.main-header .cart-link img,
.main-header .signup-btn img {
  width: 24px;
  height: 24px;
}

.main-header .signup-btn {
  border: 1px solid #05112a;
  text-wrap: nowrap;
}

.main-header .signup-btn:hover {
  border: 1px solid #ffb62c !important;
  color: #05112a;
}

@media (max-width: 768px) {

  .main-header .cart-link,
  .main-header .signup-btn {
    font-size: 12px;
  }

  .main-header .cart-link img,
  .main-header .signup-btn img {
    width: 18px;
    height: 18px;
  }
}

.main-header .dropdown-item:focus,
.main-header .dropdown-item:hover,
.main-header .dropdown-item:active {
  opacity: 0.7;
  color: black;
  text-decoration: none;
  background-color: transparent;
}

/* start index */
/* hero */
.hero-section {
  padding: 1rem 0;
}

.hero-section .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-section .hero-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-section .hero-content {
    text-align: left;
  }
}

.hero-section .hero-title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-section .hero-title .highlight {
  color: #ffb62c;
}

.hero-section .hero-subtitle {
  font-size: 1.5rem;
  color: #000000;
  /* digital print agency */

  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  /* identical to box height */
  letter-spacing: 0.22em;
  text-transform: capitalize;

  color: #05112a;
}

.hero-section .search-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-radius: 9999px;
  border: 1px solid #cbcbcb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-section .search-bar .categories-select {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 1rem;
  border-right: 1px solid #cbcbcb;
  display: none;
}

@media (min-width: 640px) {
  .hero-section .search-bar .categories-select {
    display: flex;
  }
}

.hero-section .search-bar .categories-select select {
  border: none;
  outline: none;
  border-radius: 9999px;
  background-color: #fff;
  color: #05112a;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-section .search-bar .categories-select select:hover {
  background-color: white;
}

.hero-section .search-bar .categories-select select option {
  color: #05112a;
  padding: 0.5rem 1rem;
}

.hero-section .search-bar .categories-select select option:hover {
  background-color: #ffb62c;
}

.hero-section .search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.5rem;
}

.hero-section .search-bar input::placeholder {
  color: #000000;
}

.hero-section .search-bar button {
  display: flex;
  padding: 0.75rem 0.75rem;
  background-color: #06427b;
  color: #fff;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.hero-section .search-bar button:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.hero-section .hero-description {
  color: #000000;
  max-width: 60ch;
}

.hero-section .hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-section .hero-actions {
    flex-direction: row;
  }
}

.hero-section .hero-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 250px;
}

.hero-section .hero-actions .btn img {
  width: 24px;
  height: 24px;
}

.hero-section .hero-actions .btn-primary {
  background-color: #06427b;
  color: #fff;
}

.hero-section .hero-actions .btn-primary:hover {
  background-color: rgb(4.8139534884, 52.9534883721, 98.6860465116);
}

.hero-section .hero-actions .btn-secondary {
  background-color: #ffb62c;
}

.hero-section .hero-actions .btn-secondary:hover {
  background-color: rgb(255, 173.1777251185, 18.5);
}

.hero-section .hero-slider {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-section .hero-slider {
    max-width: 500px;
  }
}

.hero-section .hero-slider .swiper-wrapper {
  padding: 2rem 0;
}

.hero-section .hero-slider .hero-image {
  border: 10px solid black;
  position: relative;
  border-radius: 20px;
  z-index: 5;
}

.here-shapes {
  position: absolute;
  max-width: 120%;
  max-height: 120%;
  transform: translate(-10%, -90%);
}

.hero-section .hero-slider .swiper-slide {
  height: auto;
}

.hero-section .hero-slider .swiper-slide .img-wrapper {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  max-width: 500px;
  position: relative;
}

.hero-section .hero-slider .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: static;
}

.hero-section .hero-slider .pagination .bullet {
  width: 15px;
  height: 10px;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.hero-section .hero-slider .pagination .bullet.active {
  width: 32px;
  opacity: 1;
  background-color: #ffb62c !important;
}

.hero-section .hero-slider .pagination .swiper-pagination-bullet-active {
  background: #ffb62c !important;
}

.swiper {
  overflow: hidden !important;
}

.products-section {
  padding: 1rem 0;
}

.products-section .section-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
}

.products-section .section-title {
  font-size: 2.75rem;
  font-weight: 600;
}

.products-section .section-title .highlight {
  color: #ffb62c;
}

.products-section .filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border-radius: 9999px;
  border: 1px solid #cbcbcb;
  flex-wrap: nowrap;
}

.products-section .filter-tabs button {
  padding: 0.5rem 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-wrap: nowrap;
  /* last week */

  color: rgba(6, 42, 119, 0.56);

  order: 1;
  flex-grow: 0;
  z-index: 1;
}

.products-section .filter-tabs button.active,
.products-section .filter-tabs button:hover {
  color: #06427b;
}

.products-section .filter-tabs button.active {
  position: relative;
}

.products-section .filter-tabs button.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 2px;
  background-color: #ffb62c;
}

.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .products-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.products-section .product-card {
  border-radius: 1.25rem;
  border: 1px solid #cbcbcb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.products-section .product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1215686275);
  box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 32px 19px 0px rgba(0, 0, 0, 0.0588235294);
  box-shadow: 0px 57px 23px 0px rgba(0, 0, 0, 0.0196078431);
  box-shadow: 0px 89px 25px 0px rgba(0, 0, 0, 0);
  background-color: #ffb62c;
}

.products-section .product-card .product-image {
  position: relative;
  aspect-ratio: 1.4;
  overflow: hidden;
  padding: 5px;
}

.products-section .product-card .product-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: all 0.3s ease;
  border-radius: 1.25rem;
}

.products-section .product-card .product-image .overlay {
  position: absolute;
  inset: 5px;
  background-color: rgba(5, 17, 42, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.products-section .product-card .product-image .overlay .btn {
  display: flex;
  padding: 0.75rem 2rem;
  background-color: rgba(255, 182, 44, 0.1490196078);
  border-color: #ffb62c;
  border: 1px solid #ffb62c;
  color: #ffb62c;
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  justify-content: center;
}

.products-section .product-card:hover .overlay {
  opacity: 1;
}

.products-section .product-card .product-image:hover .overlay .btn {
  transform: translateY(0);
}

.products-section .product-card .product-content {
  padding: 1rem;
}

.products-section .product-card .product-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #06427b;
  margin-bottom: 0.75rem;
}

.products-section .product-card .product-meta {
  padding-top: 1rem;
  border-top: 1px solid #cbcbcb;
}

.products-section .product-card .product-meta .available-sizes {
  text-align: center;
  color: #000000;
  margin-bottom: 0.75rem;
}

.products-section .product-card .product-meta .sizes-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-section .product-card .product-meta .sizes-list .size {
  color: #05112a;
}

.products-section .product-card .product-meta .sizes-list .divider {
  width: 1px;
  height: 10px;
  background-color: #05112a;
  opacity: 0.3;
}

.about-section {
  padding: 3rem 0;
}

.about-section .about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-section .about-container {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 3rem; */
  }
}

.about-section .about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
  max-width: 400px;
}

.about-section .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2rem;
}

.about-section .about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* padding: 2rem 0; */
}

.about-section .about-content .section-title {
  font-size: 2.75rem;
  font-weight: 600;
}

.about-section .about-content .section-title .highlight {
  color: #ffb62c;
}

.about-section .about-content .about-description {
  color: #000000;
  margin-bottom: 1.5rem;
}

.about-section .about-content .read-more {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: #ffb62c;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.about-section .about-content .read-more:hover {
  background-color: rgb(255, 173.1777251185, 18.5);
}

.about-section .about-content .read-more img {
  width: 24px;
  height: 24px;
}

.about-section .decorative-shapes {
  position: relative;
}
.contact-submit{
  background-color:#06427b !important;
}
.contact-submit:hover{
  opacity: 0.9 !important;
}
.about-section .decorative-shapes .shape {
  position: absolute;
  border: 1px solid;
}

.about-section .decorative-shapes .shape.circle {
  border-radius: 50%;
}

.about-section .decorative-shapes .shape.rounded {
  border-radius: 47px 0 47px 0;
}

.about-section .decorative-shapes .shape.primary {
  border-color: #06427b;
}

.about-section .decorative-shapes .shape.secondary {
  border-color: #ffb62c;
}

.about-section .decorative-shapes .shape.neutral {
  border-color: #cbcbcb;
}

.bottom-right-shape {
  width: 250px;
  margin-left: auto;
  transform: translateY(-50px);
}

.services-section {
  padding: 1rem 0;
  background-color: #fff5e2;
  border-radius: 2rem;
  position: relative;
}

.services-section .left-top-shapes {
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 2rem;
  max-width: 100px;
  /* transform: translateX(100%); */
}

.services-section .right-bottom-shapes {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 2rem;
  max-width: 80px;
  /* transform: translateX(100%); */
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.services-section .section-header .section-title {
  font-size: 2.75rem;
  font-weight: 600;
  margin: 0.75rem;
  margin-inline: 3rem;
}

.services-section .section-header .section-title .highlight {
  color: #ffb62c;
}

.services-section .services-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .services-section .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.services-section .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.services-section .service-card .service-icon {
  margin-bottom: 0.75rem;
}

.services-section .service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-section .service-card .service-title {
  color: #06427b;
  font-weight: 500;
}

.services-section .decorative-elements {
  position: relative;
}

.services-section .decorative-elements .element {
  position: absolute;
}

.services-section .decorative-elements .element.top-left {
  top: 0;
  left: 0;
}

.services-section .decorative-elements .element.top-right {
  top: 0;
  right: 0;
}

.services-section .decorative-elements .element.bottom-left {
  bottom: 0;
  left: 0;
}

.services-section .decorative-elements .element.bottom-right {
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .left-top-shapes {
    max-width: 60px !important;
  }

  .right-bottom-shapes {
    max-width: 50px !important;
  }
}

.blog-section {
  padding: 1rem 0;
}

.blog-section .section-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
  text-align: center;
}

.blog-section .section-header .section-title {
  font-size: 2.75rem;
  font-weight: 600;
}

.blog-section .section-header .section-title .highlight {
  color: #06427b;
}

.blog-section .section-header .see-all {
  color: #000000;
}

.blog-section .blog-slider {
  overflow-y: visible !important;
}

.blog-section .blog-slider .swiper-wrapper {
  padding: 1rem 0;
}

.blog-section .blog-slider .swiper-slide {
  height: auto;
  padding: 2px;
}

.blog-section .blog-card {
  border-radius: 1.25rem;
  border: 1px solid #06427b;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-width: 330px;
  margin: auto;
}

.blog-section .blog-card .blog-image {
  position: relative;
  aspect-ratio: 1.5;
}

.blog-section .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section .blog-card .blog-image .date {
  position: absolute;
  bottom: -12px;
  right: 1.5rem;
  padding: 0.5rem 0.75rem;
  background-color: #06427b;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.blog-section .blog-card .blog-content {
  padding: 1.5rem;
}

.blog-section .blog-card .blog-content .blog-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.blog-section .blog-card .blog-content .blog-excerpt {
  color: #000000;
  margin-bottom: 1.5rem;
  max-height: 250px;
  /* Set your desired maximum height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* Number of lines before truncating */
  line-height: 1.5;
  /* Adjust based on your font size */
}

.blog-section .blog-card .blog-content .divider {
  height: 1px;
  background-color: #ffb62c;
  margin: 1rem 0;
  opacity: 0.5;
}

.blog-section .blog-card .blog-content .read-more {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #ffb62c;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.blog-section .blog-card .blog-content .read-more:hover {
  background-color: rgb(255, 173.1777251185, 18.5);
}

.blog-section .blog-card .blog-content .read-more img {
  width: 24px;
  height: 24px;
}

.blog-section .slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-section .slider-navigation .nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.blog-section .slider-navigation .nav-button:hover {
  opacity: 0.7;
}

.blog-section .slider-navigation .nav-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-section .slider-navigation .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 50px !important;
}

.blog-section .slider-navigation .pagination .bullet {
  width: 20px;
  height: 10px;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.blog-section .slider-navigation .pagination .bullet.active {
  width: 32px;
  opacity: 1;
  background-color: #ffb62c !important;
}

.blog-section .slider-navigation .pagination .swiper-pagination-bullet-active {
  background: #ffb62c !important;
}

.blog-section .swiper-pagination {
  position: static;
  bottom: -50px !important;
}

.blog-section .swiper-pagination .bullet {
  background: #000000;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-section .swiper-pagination .bullet.active {
  background: #ffb62c;
  opacity: 1;
}

.blog-section .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffb62c;
}

.testimonials-section {
  padding: 6rem 0;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  margin-inline: auto;
  width: fit-content;
}

.testimonials-section .section-header .four-shapes {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-80%, -70%);
}

.testimonials-section .section-header .section-title {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.testimonials-section .section-header .section-title .highlight {
  color: #ffb62c;
}

.testimonials-section .section-header .section-title .highlight::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  left: 0;
  background-image: url("../assets/images/line-yellow.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 10px;
}

.testimonials-section .circle-shapes {
  display: inline !important;
  max-height: 100px;
}

.highlight {
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  left: 0;
  background-image: url("../assets/images/line-yellow.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 10px;
}

.testimonials-section .testimonials-slider {
  overflow-y: visible !important;
  overflow-x: hidden !important;
}

.testimonials-section .testimonials-slider .swiper-wrapper {
  align-items: center;
  padding-bottom: 70px;
}

.testimonials-section .testimonials-slider .swiper-slide {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .testimonial-card {
  position: relative;
  /* Add this */
  text-align: center;
  /* Center text */
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-section .testimonial-card:hover .testimonial-content {
  display: block !important;
  transition: all 0.3s ease;
}

.testimonials-section .testimonial-card .client-image {
  /* width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem; */
  margin-bottom: 1rem;
  /* Adjust spacing */
}

.testimonials-section .testimonial-card .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .testimonial-card .testimonial-content {
  display: none;
  /* Change this */
  position: absolute;
  top: 70%;
  transform: translateY(-35%);
  margin-top: 1rem;
  /* Add some space above */
  padding: 1rem;
  background-color: rgba(5, 17, 42, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 1.25rem;
  color: #fff;
}

.testimonials-section .testimonial-card .testimonial-content:hover {
  display: block;
}

.testimonials-section .slider-navigation {
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem; */
  margin-top: 1.5rem;
  /* Adjust spacing */
}

.testimonials-section .slider-navigation .nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.testimonials-section .slider-navigation .nav-button:hover {
  opacity: 0.7;
}

.testimonials-section .slider-navigation .nav-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonials-section .slider-navigation .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials-section .slider-navigation .pagination .bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}

.testimonials-section .slider-navigation .pagination .bullet.active {
  width: 32px;
  opacity: 1;
  background-color: #ffb62c !important;
}

.testimonials-section .slider-navigation .pagination .swiper-pagination-bullet-active {
  background: #ffb62c !important;
}

.testimonials-section .slider-navigation .pagination .swiper-pagination {
  position: static;
  bottom: -50px !important;
}

.testimonials-section .slider-navigation .pagination .swiper-pagination .bullet {
  background: #000000;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonials-section .slider-navigation .pagination .swiper-pagination .bullet.active {
  background: #ffb62c;
  opacity: 1;
}

.testimonials-section .slider-navigation .pagination .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffb62c;
}

/* index responsive styles */
@media (max-width: 768px) {

  .hero-section .hero-title,
  .products-section .section-title,
  .about-section .section-title,
  .services-section .section-title,
  .blog-section .section-title,
  .testimonials-section .section-title {
    font-size: 2rem !important;
    /* Adjust the size as needed */
  }

  .circle-shapes {
    max-height: 60px !important;
  }

  .testimonials-section {
    padding: 3rem 0;
  }

  .four-shapes {
    max-width: 80px;
    display: none;
  }
}

/* add a larger @media */
@media (max-width: 1200px) {
  .four-shapes {
    max-width: 100px;
  }
}

.main-footer {
  padding: 3rem 3.5rem;
  padding-bottom: 5rem;
  background-color: #fff5e2;
  position: relative;
}

.footer-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 200px;
}

.main-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .main-footer .footer-content {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .main-footer{
    padding: 2rem 1.5rem !important;
    font-size: 14px !important;
  }
  .main-footer .footer-content {
    grid-template-columns: 1fr;
  }
  .main-footer .footer-content > :first-child {
    grid-column: span 2;
  }
  .main-footer .footer-content > :nth-child(n+2) {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .main-footer .contact-info .contact-list .contact-item{
    white-space: nowrap !important;
  }
}

@media (max-width: 350px) {
  .main-footer .footer-content > :first-child {
    grid-column: span 1;
  }
  .main-footer{
    padding: 2rem 1.5rem !important;
    font-size: 13px !important;
  }
}

.main-footer .footer-brand .logo {
  width: 114px;
  margin-bottom: 1rem;
}

.main-footer .footer-brand .description {
  color: #06427b;
  margin-bottom: 1.5rem;
}

.main-footer .footer-brand .social-links {
  display: flex;
  gap: 1.5rem;
}

.main-footer .footer-brand .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.main-footer .footer-brand .social-links a:hover {
  opacity: 0.7;
}

.main-footer .footer-brand .social-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-footer .footer-links .title {
  font-size: 1.5rem;
  color: #06427b;
  margin-bottom: 1.5rem;
}

.main-footer .footer-links .links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-footer .footer-links .links-list a {
  color: #06427b;
  transition: all 0.3s ease;
}

.main-footer .footer-links .links-list a:hover {
  color: #ffb62c;
}

.main-footer .footer-links .links-list a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffb62c;
  margin-right: 0.5rem;
}

.main-footer .contact-info .title {
  font-size: 1.5rem;
  color: #ffb62c;
  margin-bottom: 1.5rem;
}

.main-footer .contact-info .title::after {
  content: "";
  display: block;
  width: 126px;
  height: 6px;
  background-image: url("../assets/images/title-decoration.svg");
  margin-top: 0.5rem;
}

.main-footer .contact-info .contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-footer .contact-info .contact-list .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #06427b;
}

.main-footer .contact-info .contact-list .contact-item img {
  width: 24px;
  height: 24px;
}

.main-footer .decorative-shapes {
  position: relative;
}

.main-footer .decorative-shapes .shape {
  position: absolute;
  border: 1px solid;
}

.main-footer .decorative-shapes .shape.circle {
  border-radius: 50%;
}

.main-footer .decorative-shapes .shape.rounded {
  border-radius: 47px 0 47px 0;
}

.main-footer .decorative-shapes .shape.primary {
  border-color: #06427b;
}

.main-footer .decorative-shapes .shape.secondary {
  border-color: #ffb62c;
}

.main-footer .decorative-shapes .shape.neutral {
  border-color: #cbcbcb;
}

.app-container,
main {
  max-width: 1440px;
  margin: 0 auto;
}

.app-container .swiper,
main .swiper {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #05112a;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn {
  border-radius: 2rem;
  width: 200px;
  height: 50px;
  /* color: #05112A; */
}

.btn:hover {
  background-color: #06427b;
  color: #fff;
}

.btn-secondary {
  background-color: #ffb62c;
  border: none;
}

.btn-secondary:hover {
  background-color: rgb(248, 162.1990521327, 0);
}

.btn-secondary:focus {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-outline-secondary {
  color: #ffb62c;
  border: 1px solid #ffb62c;
}

.btn-outline-secondary:hover {
  background-color: #ffb62c;
  color: #fff;
  border: 1px solid #ffb62c;
}

.btn-outline-secondary:focus {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Frame 1000006481 */
.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #fff;
  background-color: #ffb62c;
  border-color: #ffb62c;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-check:focus {
  box-shadow: none !important;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #05112a;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cbcbcb;
  border-radius: 2rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #05112a;
  background-color: #fff;
  border-color: #06427b;
  outline: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
  color: #000000;
  opacity: 0.7;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s, border-color 0.3s;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #ffb62c;
  border-color: #ffb62c;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
  border-color: #ffb62c;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shape-container {
  max-width: 15%;
}

.shape-container img {
  border-top-right-radius: 2rem;
}

/*# sourceMappingURL=main.css.map */