/* ====== Colors ====== */
:root {
  --primary-color: #e8c468;
  --secondary-color: #332340;
  --dark: #000000;
  --white: #ffffff;
  --grey: #516263;
  --bg-color: #b9b3b354;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

iframe,
video {
  width: 100%;
}

strong {
  font-weight: 600;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 12px;
  height: 15px;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

::-webkit-scrollbar-corner {
  background-color: #c9a253;
}

a:hover {
  text-decoration: none;
}

body {
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* header-section-start */
.top-bar {
  background-color: var(--secondary-color);
}

.top-bar p {
  color: var(--white);
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

.top-bar .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.top-bar .marquee p {
  display: inline-block;
  position: absolute;
  left: 100%;
  animation: marquee 4s linear infinite;
}

@keyframes marquee {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}

/* header-section-start */

.header-section .menu-bar {
  width: 100%;
  background-color: var(--white);
  position: relative;
  z-index: 9999999;
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.4s ease-in;
  background-color: var(--white);
}

.header-section .navbar-brand img {
  width: 125px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 10px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  color: #9f7928;
}

.header-section .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.header-section .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  display: none;
  border: 1px solid white;
  overflow: hidden;
  border: 0;
  transition: 0.5s;
  position: absolute;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: 0.5s;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header-section .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.2s;
  z-index: 1;
  background-color: var(--primary-color);
}

.header-section .dropdown-menu .dropdown-item:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .navbar-toggler {
  color: var(--grey);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header {
  background-color: var(--secondary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sidbar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .sid .header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
  border: 1px solid var(--primary-color);
}

.header-section .conatact-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transition: ease-in-out 0.5s;
}

.header-section .conatact-link {
  color: var(--white);
  background-color: var(--dark);
  padding: 4px 10px;
  border-radius: 5px;
  display: none;
  margin-left: 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .offcanvas-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.header-section .menu-bar .search,
.header-section .menu-bar .cart-icon i {
  color: var(--grey);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 45px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  margin: 0px 10px;
  line-height: 0;
}

.header-section .menu-bar .modal.show .modal-dialog {
  transform: none;
  display: flex;
  align-items: center;
  animation: backInDown;
  animation-duration: 1s;
}

.header-section .menu-bar .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.63);
  transition: 1s;
}

.modal-header {
  padding: 10px 20px;
  border: none;
}

.modal-header .modal-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

.modal-header .btn-close {
  height: 20px;
  background-color: var(--primary-color);
  opacity: 1;
  width: 30px;
  color: var(--white);
  font-size: 20px;
  line-height: 0;
  box-shadow: none;
  background-image: none;
  margin-top: 10px;
}

.header-section .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
}

.header-section .widget .search-form {
  margin: 20px;
  padding-bottom: 20px;
}

.header-section.modal-body .search-field {
  padding: 15px 100px 15px 20px;
  border: none;
  box-shadow: none;
  background-color: var(--white);
  filter: drop-shadow(0 0 0.08rem rgba(0, 0, 0, 0.194));
  outline: none;
  color: var(--dark);
}

.header-section .modal-body .search-submit {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  border-radius: 0px 5px 5px 0px;
  padding: 15px 30px;
  font-size: 20px;
  filter: drop-shadow(0 0 0.08rem rgba(0, 0, 0, 0.194));
  outline: none;
}

/* header-section-end */

/* ===hero-section-start=== */

.hero-section .slide {
  padding: 90px 0px;
  height: 600px;
  background-size: cover;
  background-position: center;
  width: 100%;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0a0a0aaf;
  z-index: -1;
}

.hero-section .slide-content h2 {
  margin-bottom: 25px;
  font-size: 30px;
  color: var(--white);
}

.hero-section .slide-content h3 {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.hero-section .slide-content h3::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.hero-section .slide-content h3 i {
  font-size: 10px;
  margin-right: 5px;
  color: var(--primary-color);
}

.hero-section .owl-carousel .owl-nav button.owl-next {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 24px;
  color: var(--white);
  position: absolute;
  right: 25px;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .owl-carousel .owl-nav button.owl-next i {
  padding-left: 3px;
}

.hero-section .owl-carousel .owl-nav button.owl-prev i {
  padding-right: 3px;
}

.hero-section .owl-carousel .owl-nav button.owl-prev {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  border-radius: 5px;
  font-size: 24px;
  color: var(--white);
  position: absolute;
  left: 25px;
  top: 50%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .owl-dots {
  position: absolute;
  margin: auto;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, -50%);
}

.hero-section .owl-carousel button.owl-dot {
  color: inherit;
  height: 15px;
  width: 15px;
  border: 1px;
  background-color: #f7f5f5;
  border-radius: 50%;
  margin: 2px;
  font-size: 50px;
  line-height: 0;
  color: var(--white);
}

.hero-section .owl-carousel button.owl-dot.active {
  background-color: var(--primary-color);
  height: 15px;
  width: 40px;
  border-radius: 10px;
  transition: 0.2s;
}

/* ===hero-section-end=== */

/*===category-section-start=== */

.category-shop {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.category-shop .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.category-shop .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-shop .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.category-shop .category-item {
  margin-bottom: 25px;
}

.category-shop .category-item img {
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.category-shop .category-content {
  text-align: center;
  margin-top: 10px;
}

.category-shop .category-content span {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

/*===category-section-end=== */

/*===menswear-section-start=== */

.menswear-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.menswear-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.menswear-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menswear-section .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.menswear-section .mens-item {
  margin-bottom: 25px;
}

.menswear-section .category-content {
  text-align: center;
  margin-top: 10px;
}

.menswear-section .category-content a {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.menswear-section .Shop-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menswear-section .Shop-btn a {
  background-color: var(--primary-color);
  border-radius: 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
}

/*===menswear-section-end=== */

/* ===product-section-start=== */

.product-slider {
  padding: 45px 0px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.product-slider .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.product-slider .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-slider .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.product-slider .product-box {
  margin-bottom: 25px;
}

.product-slider .product-box img {
  width: 100%;
}

.product-slider .product-box .card {
  position: relative;
  display: inline-block;
  border: none;
  width: 100%;
  height: 400px;
}

.product-slider .product-box .card img {
  height: 400px;
  object-fit: cover;
}

.product-slider .product-box .card .img-top {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  transition: ease-in-out 0.3s;
}

.product-slider .product-box .card:hover .img-top {
  opacity: 1;
  transition: ease-in-out 0.3s;
}

.product-slider .slider-4 {
  position: relative;
}

.product-slider .slider-4 .owl-nav button.owl-next {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  font-size: 20px;
  color: var(--white);
  position: absolute;
  right: 0px;
  top: 35%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slider .slider-4 .owl-nav button.owl-next i {
  padding-left: 3px;
}

.product-slider .slider-4 .owl-nav button.owl-prev i {
  padding-right: 3px;
}

.product-slider .slider-4 .owl-nav button.owl-prev {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  left: 0px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  top: 35%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slider .owl-carousel .owl-dots.disabled,
.product-slider .owl-carousel .owl-nav.disabled {
  display: block;
}

.product-slider .Shop-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-slider .Shop-btn a {
  background-color: var(--primary-color);
  border-radius: 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
}

/* ===product-section-end=== */

/* ===service-section-start==== */

.service-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.service-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-section .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.service-section .service-card {
  background-color: var(--white);
  padding: 10px;
  box-shadow: #c9a2535e 0px 10px 20px, #c9a25356 0px 6px 6px;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-section .service-card:hover {
  transform: translateY(-5px);
}

.service-section .icon {
  font-size: 40px;
  color: #ff6347;
  margin-bottom: 15px;
  background-color: var(--secondary-color);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.service-section .service-title {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.service-section .service-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 10px;
  margin-bottom: 0;
}

.service-section .service-link {
  margin: 20px 0px;
}

.service-section .service-card a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 1px;
  transition: all 0.3s ease;
  color: var(--white);
  background-color: var(--secondary-color);
  padding: 10px 15px;
}

/* ===service-section-end==== */

/* ===whychoose-section-start=== */

.whychoose-section {
  padding: 45px 0px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.whychoose-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.whychoose-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whychoose-section .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.whychoose-section .whychoose-item {
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: #c9a2535e 0px 10px 20px, #c9a25356 0px 6px 6px;
  height: 100%;
  background-color: var(--white);
}

.whychoose-section .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 25px;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.whychoose-section .whychoose-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.whychoose-section .whychoose-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 10px;
  margin-bottom: 0;
  text-align: justify;
}

/* ===whychoose-section-end=== */

.fit-deliver-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.fit-deliver-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.fit-deliver-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  color: #9f7928;
}

.fit-deliver-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 20px;
}

.fit-deliver-section .fit-deliver-item {
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: #c9a2535e 0px 10px 20px, #c9a25356 0px 6px 6px;
  height: 100%;
  background-color: var(--white);
}

.fit-deliver-section .fit-deliver-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 25px;
}

.fit-deliver-section .fit-deliver-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}

/* ===testimonial-section-start=== */

.testimonial-section {
  padding: 45px 0px;
  background-image: url(../images/testimonial-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #09010a93;
  z-index: -1;
}

.testimonial-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.testimonial-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-section .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-item {
  margin-bottom: 25px;
  padding: 25px 20px;
  box-shadow: #c9a25327 0px 5px 10px, #c9a25327 0px 2px 2px;
}

.testimonial-section .slide-item {
  margin: 0px 15px;
}

.testimonial-section .testimonial-item img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-section .testimonial-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.testimonial-section .testimonial-item p i {
  font-size: 26px;
  color: var(--primary-color);
  margin: 0px 10px;
}

.testimonial-section .testimonial-item .testimonial-content h2 {
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 5px;
}

.testimonial-section .testimonial-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}

.testimonial-section .testimonial-content .star-rating {
  display: flex;
  list-style: none;
  padding: 0;
}

.testimonial-section .testimonial-item .testimonial-content .star-rating li {
  margin-right: 5px;
  font-size: 16px;
  color: #ffa217;
}

.testimonial-section .slider-5 {
  position: relative;
}

.testimonial-section .slider-5 .owl-nav button.owl-next {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  font-size: 20px;
  color: var(--white);
  position: absolute;
  right: 0px;
  top: 35%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .slider-5 .owl-nav button.owl-next i {
  padding-left: 3px;
}

.testimonial-section .slider-5 .owl-nav button.owl-prev i {
  padding-right: 3px;
}

.testimonial-section .slider-5 .owl-nav button.owl-prev {
  height: 40px;
  width: 40px;
  border: 1px;
  background-color: var(--primary-color);
  left: 0px;
  font-size: 20px;
  color: var(--white);
  position: absolute;
  top: 35%;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slider .owl-carousel .owl-dots.disabled,
.product-slider .owl-carousel .owl-nav.disabled {
  display: block;
}

/* ===testimonial-section-end=== */

/* footer-section-start */

.footer-section {
  z-index: 1;
  background-color: var(--secondary-color);
  padding: 45px 0px 0px 0px;
  overflow: hidden;
}

.footer-section .footer-item {
  padding: 10px;
}

.footer-section .footer-item .social-icons ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin-top: 30px;
}

.footer-section .footer-item span {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-transform: uppercase;
}

.footer-section .footer-item .service-links i,
.footer-section .footer-item .pages-links i,
.footer-section .footer-item .contact-kota i,
.footer-section .footer-item .contact-indore i {
  margin-right: 5px;
}

.footer-section .footer-item .social-icons ul li {
  margin-right: 10px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  color: var(--white);
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 25px;
  border-radius: 5px;
  line-height: 40px;
  transition: 1.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

.footer-section .footer-item .social-icons ul li a {
  color: var(--white);
}

.footer-section .footer-item .social-icons ul li::before {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 5px;
  inset: 0;
  z-index: -1;
  transform: translateY(-50px);
  transition: 1.5s;
}

.footer-section .footer-item .social-icons ul li:hover::before {
  transition: 1s;
  transform: translateY(-0px);
}

.footer-section .footer-item .social-icons ul li:hover a {
  color: var(--secondary-color);
  transition: 0.5s;
}

.footer-section .footer-item .services-link,
.footer-section .footer-item .page-link,
.footer-section .footer-item .contact-kota,
.footer-section .footer-item .contact-indore {
  list-style: none;
  padding: 0;
  margin: 15px 0px;
}

.footer-section .footer-item .services-link li,
.footer-section .footer-item .page-link li,
.footer-section .footer-item .contact-kota li,
.footer-section .footer-item .contact-indore li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li:hover,
.footer-section .footer-item .page-link li:hover,
.footer-section .footer-item .contact-kota li:hover,
.footer-section .footer-item .contact-indore li:hover {
  margin-left: 5px;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li a,
.footer-section .footer-item .page-link li a,
.footer-section .footer-item .contact-kota a,
.footer-section .footer-item .contact-indore a {
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.footer-section .footer-item .services-link li a::before,
.footer-section .footer-item .page-link li a::before,
.footer-section .footer-item .contact-kota a::before,
.footer-section .footer-item .contact-indore a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -5px;
  border-radius: 5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s;
}

.footer-section .footer-item .services-link li a:hover:before,
.footer-section .footer-item .page-link li a:hover:before,
.footer-section .footer-item .contact-kota a:hover:before,
.footer-section .footer-item .contact-indore a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1s;
}

.footer-section .copy-right {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  margin-top: 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.63);
}

.footer-section .copy-right p {
  padding: 20px 0px;
  margin: 0;
}

.footer-section .top-button .top {
  animation: bounce-in 2s ease infinite;
}

.footer-section .top-button .top {
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 1em;
  bottom: 0.1em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-section .instagram-button .instagram-chat {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1em;
  bottom: 4.2rem;
  position: fixed;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-section .whatsapp-button .whatsapp {
  background-color: #25d366;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1em;
  bottom: 6.2em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.footer-section .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 8px;
  color: white;
  right: 1em;
  bottom: 9em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

/* footer-section-end */

/* breadcrumb-section-start */

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-bg.jpg) center center repeat no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0d0b0f9f;
  z-index: -1;
}

.breadcrumb-section .breadcrumb-heading h1 {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  z-index: 1;
}

.breadcrumb-section .breadcrumb li i {
  padding: 0px 10px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

/* breadcrumb-section-end */

/* about-section-start */

.about-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.about-section .about-image img {
  margin-bottom: 25px;
}

.about-section .section-title {
  text-transform: capitalize;
}

.about-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.about-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section p {
  font-size: 16px;
  color: var(--white);
  text-align: justify;
  font-weight: 300;
  line-height: 30px;
}

.about-section .our-mission h3,
.about-section .our-vision h3 {
  font-size: 20px;
  font-weight: 700;

  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===about-section-end=== */

/* ===blouse-section-start=== */

.blouse-section,
.salwar-kameez-section,
.kurti-section,
.lehenga-section,
.dress-section,
.alterations-section,
.saree-section {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.blouse-section .section-title,
.salwar-kameez-section .section-title,
.kurti-section .section-title,
.lehenga-section .section-title,
.dress-section .section-title,
.alterations-section .section-title,
.saree-section .section-title {
  margin-bottom: 45px;
}

.blouse-section .section-title h2,
.salwar-kameez-section .section-title h2,
.kurti-section .section-title h2,
.lehenga-section .section-title h2,
.dress-section .section-title h2,
.alterations-section .section-title h2,
.saree-section .section-title h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.blouse-section .section-title h2 span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.blouse-section .blouse-item,
.salwar-kameez-section .kameez-item,
.kurti-section .kurti-item,
.lehenga-section .lehenga-item,
.dress-section .dress-item,
.alterations-section .alterations-item,
.saree-section .saree-item {
  box-shadow: #a5a5a50c 0px 3px 8px;
  margin-bottom: 25px;
  height: 100%;
}

.blouse-section .blouse-item img,
.salwar-kameez-section .kameez-item img,
.kurti-section .kurti-item img,
.lehenga-section .lehenga-item img,
.dress-section .dress-item img,
.alterations-section .alterations-item img,
.saree-section .saree-item img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.blouse-section .blouse-item .blouse-content,
.salwar-kameez-section .kameez-item .kameez-content,
.kurti-section .kurti-item .kurti-content,
.lehenga-section .lehenga-item .lehenga-content,
.dress-section .dress-item .dress-content,
.alterations-section .alterations-item .alterations-content,
.saree-section .saree-item .saree-content {
  background-color: var(--white);
  padding: 15px;
}

.blouse-section .blouse-item .blouse-content h3,
.salwar-kameez-section .kameez-content h3,
.kurti-section .kurti-item .kurti-content h3,
.lehenga-section .lehenga-item .lehenga-content h3,
.dress-section .dress-item .dress-content h3,
.alterations-section .alterations-item .alterations-content h3,
.saree-section .saree-item .saree-content h3 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
}

.blouse-section .blouse-item .blouse-content .name,
.salwar-kameez-section .kameez-content .name,
.kurti-section .kurti-item .kurti-content .name,
.lehenga-section .lehenga-item .lehenga-content .name,
.dress-section .dress-item .dress-content .name,
.alterations-section .alterations-item .alterations-content .name,
.saree-section .saree-item .saree-content .name {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
  font-weight: 600;
}

.blouse-section .blouse-item .blouse-content p,
.salwar-kameez-section .kameez-content p,
.kurti-section .kurti-item .kurti-content p,
.lehenga-section .lehenga-item .lehenga-content p,
.dress-section .dress-item .dress-content p,
.alterations-section .alterations-item .alterations-content p,
.saree-section .saree-item .saree-content p {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
  font-weight: 500;
}

.blouse-section .blouse-item .blouse-content .btn-div,
.salwar-kameez-section .kameez-content .btn-div,
.kurti-section .kurti-item .kurti-content .btn-div,
.lehenga-section .lehenga-item .lehenga-content .btn-div,
.dress-section .dress-item .dress-content .btn-div,
.alterations-section .alterations-item .alterations-content .btn-div,
.saree-section .saree-item .saree-content .btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blouse-section .blouse-item .blouse-content .btn-div a,
.salwar-kameez-section .kameez-content .btn-div a,
.kurti-section .kurti-item .kurti-content .btn-div a,
.lehenga-section .lehenga-item .lehenga-content .btn-div a,
.dress-section .dress-item .dress-content .btn-div a,
.alterations-section .alterations-item .alterations-content .btn-div a,
.saree-section .saree-item .saree-content .btn-div a {
  width: 100%;
  align-items: center;
  text-align: center;
  margin-top: 10px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: 0px;
  font-size: 16px;
  border-radius: 5px;
}

/* ===blouse-section-end=== */

/* ===boutiques-section-start=== */

.boutiques-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.boutiques-section .boutique-box {
  box-shadow: #a5a5a50c 0px 3px 8px;
  margin-bottom: 25px;
}

.boutiques-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.boutiques-section .section-title h2 {
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.boutiques-section .boutique-box {
  background-color: var(--white);
  height: 100%;
}

.boutiques-section .boutique-box img {
  height: 300px;
  width: 100%;
}

.boutiques-section .section-title img {
  height: 50px;
  margin-bottom: 10px;
}

.boutiques-section .content {
  background-color: var(--white);
  padding: 20px 10px;
}

.boutiques-section .content .Address {
  font-size: 14px;
  color: var(--grey);
  margin-top: 15px;
}

.boutiques-section .content h3 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  background-color: var(--white);
}

.boutiques-section .content P {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  background-color: var(--white);
}

.boutiques-section .button {
  margin-top: 20px;
}

.boutiques-section .button a {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: 5px;
}

/* ===boutiques-section-end=== */

.prize-chart {
  padding: 45px 0px;
  background-color: var(--secondary-color);
  position: relative;
}

.prize-chart .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.prize-chart .section-title h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prize-chart .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 150px;
  border: none;
  border-radius: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  bottom: 16em;
  right: -3em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
  transform: rotate(90deg);
  cursor: pointer;
}

.prize-chart .table-container {
  overflow-x: auto;
  color: var(--white);
}

.prize-chart .table-container h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  border: 1px solid #fcfcfc;
  padding: 10px;
}

th {
  background-color: #e2e2e2;
  color: var(--dark);
}

/* ===contact-section-start=== */

.contact-section-page {
  padding: 45px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.contact-section-page .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.contact-section-page .section-title h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-section-page .contact-item {
  background-color: var(--secondary-color);
  padding: 20px 10px;
  height: 100%;
  text-align: center;
}

.contact-section-page .contact-item h2 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-section-page .contact-item .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  transition: 0.5s;
  margin: 0 auto 20px auto;
}

.contact-section-page .contact-item:hover .icon {
  transform: scale(1.2);
  transition: 0.5s;
}

.contact-section-page .contact-item p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.contact-section-page .contact-item i {
  font-size: 24px;
  color: var(--secondary-color);
  line-height: 60px;
  transition: 1s;
}

.contact-section-page .contact-item a {
  color: var(--white);
  text-decoration: none;
}

/* ====contact-section-end=== */

/* ====table-container-section-start=== */

.table-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 650px;
  margin: 20px auto;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.table-container h3 {
  text-align: center;
  color: #9c27b0;
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
}

.address {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

th {
  background-color: #e1bee7;
  color: #4a148c;
  padding: 14px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #ba68c8;
}

td {
  padding: 12px 14px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f3e5f5;
}

.note {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  padding: 0 10px;
}

/* ====table-container-section-end=== */

/* ====customised-ladies-wear-section-start==== */

.customised-ladies-wear {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.customised-ladies-wear .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.customised-ladies-wear .section-title h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customised-ladies-wear .picture-box,
.customised-ladies-wear .picture-box img {
  height: 100%;
  object-fit: cover;
}

/* ====customised-ladies-wear-section-end==== */

/* ====code-quotation-start==== */

.code-quotation {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.code-quotation p {
  font-size: 16px;
  color: var(--white);
}

.code-quotation ul {
  list-style: none;
  padding: 0;
}

.code-quotation ul li {
  color: var(--white);
  margin-bottom: 10px;
}

.code-quotation .book-btn {
  margin-top: 40px;
}

.code-quotation .book-btn a {
  padding: 10px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s;
}

/* ====code-quotation-end==== */

/* ====quality-section-start==== */

.quality-section {
  background-color: var(--secondary-color);
  padding: 90px 0px;
}

.quality-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.quality-section .section-title h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quality-section .section-title p {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.quality-section .quality-card {
  background: var(--white);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.quality-section .quality-card:hover {
  transform: translateY(-10px);
}

.quality-section .icon {
  font-size: 40px;
  background-color: var(--secondary-color);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
}

.quality-section .quality-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 70px;
}

.quality-section .quality-card h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
}

.quality-section .quality-card p {
  color: var(--grey);
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(232, 196, 104, 0.3);
  border: 2px solid var(--primary-color);
}

.cta-button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 196, 104, 0.4);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }
}

/* ====quality-section-end==== */

/* ===pricacy-policy-section-start=== */

.privacy-policy {
  padding: 90px 0px;
  background-color: var(--secondary-color);
}

.privacy-policy h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
}

.privacy-policy h3 {
  color: var(--dark);
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eaeaea;
}

.privacy-policy p {
  margin-bottom: 15px;
}

.privacy-policy ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-policy li {
  margin-bottom: 8px;
}

.privacy-policy li a {
  color: var(--dark);
}

/* Policy Section Styles */

.policy-section {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.contact-info {
  background-color: #f1f9fe;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-section {
    padding: 15px;
  }
}

/* ===pricacy-policy-section-end=== */

/* ===order-section-start=== */

.order-section {
  padding: 45px 0px;
  background-color: var(--secondary-color);
}

.order-section header {
  background-color: var(--primary-color);
  color: white;
  padding: 20px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.order-section .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-section h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
}

.order-section .auth-buttons button {
  background-color: var(--dark);
  color: var(--primary-color);
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin-left: 10px;
}

.order-section .order-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.order-section .tab {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
}

.order-section .tab.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}

.order-section .guest-track {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  text-align: center;
}

.order-section .guest-track h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 600;
}

.order-section .track-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.order-section .track-form input {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 250px;
}

.order-section .track-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.order-section .login-prompt {
  font-size: 14px;
}

.order-section .login-prompt a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.order-section .orders-list {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.order-section .order-card {
  border-bottom: 1px solid #eee;
  padding: 20px;
  transition: all 0.3s ease;
}

.order-section .order-card:hover {
  background-color: #fafafa;
}

.order-section .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.order-section .order-id {
  font-weight: 600;
  color: var(--primary-color);
}

.order-section .order-status {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.order-section .status-placed {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.status-verified {
  background-color: #bbdefb;
  color: #0d47a1;
}

.order-section .status-stitching {
  background-color: #fff9c4;
  color: #f57f17;
}

.order-section .order-section .status-quality {
  background-color: #c8e6c9;
  color: var(--success-color);
}

.order-section .status-delivery {
  background-color: #d1c4e9;
  color: #4527a0;
}

.order-section .status-delivered {
  background-color: #b2dfdb;
  color: #00695c;
}

.order-section .order-details {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

.order-section .order-image {
  width: 120px;
  height: 120px;
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}

.order-section .order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-section .order-info {
  flex: 1;
}

.order-section .boutique-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.item-description {
  color: #666;
  margin-bottom: 10px;
}

.order-section .order-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
}

.order-section .order-meta div {
  margin-bottom: 5px;
}

.order-section .order-meta strong {
  color: var(--text-color);
}

.order-section .order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.order-section .order-actions button {
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.order-section .btn-track {
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.order-section .btn-track:hover {
  background-color: var(--secondary-color);
}

.order-section .btn-modify {
  background-color: white;
  border: 1px solid var(--warning-color);
  color: var(--warning-color);
}

.order-section .btn-modify:hover {
  background-color: #fff3e0;
}

.order-section .btn-cancel {
  background-color: white;
  border: 1px solid var(--error-color);
  color: var(--error-color);
}

.order-section .btn-cancel:hover {
  background-color: #ffebee;
}

.order-section .btn-invoice {
  background-color: white;
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.order-section .btn-invoice:hover {
  background-color: #e8f5e9;
}

.order-section .support-cta {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-section .support-cta h2 {
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.order-section .support-cta p {
  margin-bottom: 20px;
  color: #666;
}

.order-section .btn-support {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-section .btn-support a {
  color: var(--white);
}

.order-section .tracking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.order-section .modal-content {
  background-color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.order-section .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.order-section .tracking-header {
  margin-bottom: 20px;
}

.order-section .tracking-header h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.order-section .tracking-progress {
  margin: 30px 0;
  position: relative;
}

.order-section .progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.order-section .progress-line {
  position: absolute;
  height: 3px;
  background-color: #ddd;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1;
}

.order-section .progress-active {
  background-color: var(--primary-color);
  width: 75%;
  position: absolute;
  height: 3px;
  top: 15px;
  left: 0;
  z-index: 2;
}

.order-section .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.order-section .step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.order-section .step.active .step-icon {
  background-color: var(--primary-color);
  color: white;
}

.order-section .step.completed .step-icon {
  background-color: var(--success-color);
  color: white;
}

.order-section .step-label {
  font-size: 12px;
  text-align: center;
  color: #666;
}

.order-section .step.active .step-label,
.order-section .step.completed .step-label {
  color: var(--text-color);
  font-weight: 600;
}

.order-section .tracking-details {
  margin-top: 30px;
}

.order-section .detail-row {
  display: flex;
  margin-bottom: 15px;
}

.order-section .detail-label {
  width: 150px;
  color: #666;
}

.order-section .detail-value {
  flex: 1;
  font-weight: 500;
}

.order-section .delivery-estimate {
  background-color: var(--light-bg);
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}

.order-section .delivery-estimate strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .order-section .order-details {
    flex-direction: column;
    gap: 15px;
  }

  .order-section .order-meta {
    flex-direction: column;
    gap: 5px;
  }

  .order-section .order-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .order-section .progress-steps {
    flex-wrap: wrap;
    gap: 20px;
  }

  .order-section .step {
    width: calc(50% - 10px);
  }
}

/* ===order-section-end=== */

.help-hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.help-hero h1 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.help-hero p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.search-help {
  margin: 30px auto;
  max-width: 600px;
}

.search-help input {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--secondary-color);
}

.help-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.help-card {
  background: var(--secondary-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.help-card ul {
  list-style: none;
  padding: 0;
}

.help-card ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: var(--white);
}

.help-card ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.help-card ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}

.help-card ul li a:hover {
  color: var(--primary-color);
}

.contact-section {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}

.contact-section h2 {
  font-weight: 600;
  letter-spacing: 2.5px;
  background: radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-method {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--secondary-color);
}

.contact-method i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.contact-method h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
}

.contact-method p {
  color: var(--white);
  margin: 0;
  margin-bottom: 5px;
}

.contact-method a {
  color: var(--white);
  text-decoration: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}
