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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fafafa;
  color: #010102;
  line-height: 1.6;
  font-size: 14px;
}

a:hover {
  text-decoration: none !important;
}

.preview-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 80px;
  margin-top: 12px;
}

.preview-box img {
  width: 100%;
  max-height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

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


.section-space {
  padding: 50px 0;
  background: #FFF;
}

img {
  width: 100%;
  display: block;
}

.main-header {
  background: #010102;
  position: sticky;
  top: 0;
  z-index: 999;
}

.topbar {
  background: #010102;
  padding: 12px 0;
}

.bottom-bar {
  background: #FFF;
  padding: 16px 0;
}

.search-box input {
  width: 100%;
  padding: 8px 55px 9px 18px;
  border: none;
  outline: none;
  border-radius: 5px;
  height: 45px;
}

.search-box input::placeholder {
  color: #545252;
}

.search-box .go-icon {
  position: absolute;
  display: flex;
  right: 10px;
  top: 50%;
  align-items: center;
  transform: translateY(-50%);
  line-height: 60px;
  width: 51px;
  height: 50px;
  justify-content: center;
  border: none;
  outline: none;
  color: #010102;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */

.nav-content .links li:hover>ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.nav-content .links ul li a {
  color: #fff;
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}

.nav-content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.nav-content .links ul li {
  position: relative;
}

.nav-content .links ul li:hover ul {
  top: 0;
}

.wrapper .menu-icon {
  display: none;
  font-size: 20px;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }

  nav .nav-content .links {
    margin-left: 30px;
  }

  .nav-content .links li a {
    color: #010102;
    padding: 8px 13px;
    font-size: 17px;
  }
}

@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
  }

  .nav-content .logo a {
    font-size: 25px;
  }

  .wrapper #show-menu:checked~.menu-icon i::before {
    content: "\f00d";
  }

  nav .nav-content .links {
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.nav-content .links {
    left: 0%;
  }

  .nav-content .links li {
    margin: 15px 20px;
  }

  .nav-content .links li a,
  .nav-content .links li label {
    line-height: 20px;
    font-size: 17px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
    color: #fff;
  }

  .nav-content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .nav-content .links ul,
  .nav-content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .nav-content .links #show-features:checked~ul,
  .nav-content .links #show-services:checked~ul,
  .nav-content .links #show-items:checked~ul {
    max-height: 100vh;
  }

  .nav-content .links ul li {
    margin: 7px 20px;
  }

  .nav-content .links ul li a {
    font-size: 17px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}


.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  width: 200px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  overflow: visible;
  max-width: 560px;
  height: 45px;
  border: 1px solid #e5e5e5;
  position: relative;
}

.search-category {
  width: 170px;
  height: 100%;
  border-radius: 0;
  border: none;
  outline: none;
  padding: 0 15px;
  background: #f7f7f7;
  font-size: 14px;
  border-right: 1px solid #e5e5e5;
}

.search-input-area {
  flex: 1;
  position: relative;
  height: 100%;
  width: 333px;
}

.search-input-area input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-box button {
  width: 60px;
  height: 100%;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.search-box button:hover {
  background: #ec5a21;
}

.search-suggestions {
  position: absolute;
  top: 58px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: none;
  z-index: 999;
}

.search-suggestions div {
  padding: 14px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.search-suggestions div:hover {
  background: #f7f7f7;
  color: #ff7a00;
}

.login-btn {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.login-btn a {
  color: #FFF;
  text-decoration: none;
  transition: 0.3s;
}

.right-box {
  display: flex;
  gap: 40px;
}

.login-btn a:hover {
  color: #ff7a00;
  transition: 0.3s;
}

.hero {
  background: #fbf9f8 url(../images/hero-man.webp) no-repeat;
  padding: 80px 0;
  background-size: contain;
  background-position-x: right 143px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.tagline {
  color: #ff7a00;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.hero-content h1 {
  font-size: 62px;
  line-height: 72px;
  margin: 18px 0;
  font-weight: 700;
}

.hero-content h1 span {
  color: #ff7a00;
  font-style: italic;
}

.hero-content p {
  line-height: 1.8;
  max-width: 420px;
  font-size: 15px;
}

.booking-box {
  background: linear-gradient(135deg, #09111d, #121f30);
  padding: 24px;
  border-radius: 10px;
  margin-top: 35px;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.booking-grid input,
.booking-grid select {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.booking-grid select {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
}

.date-field {
  position: relative;
  width: 100%;
}

.date-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 5;
  pointer-events: none;
}

.date-field input[type="date"] {
  width: 100%;
  height: 54px;
  padding: 0 15px 0 45px;

  background: rgba(255, 255, 255, 0.03);
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;

  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  position: relative;
}

/* CHROME */

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  cursor: pointer;
}

/* FIREFOX */

.date-field input[type="date"]::-moz-focus-inner {
  border: 0;
}

/* EXTRA COVER FOR FIREFOX RIGHT ICON */

.date-field::after {
  content: '';
  position: absolute;
  right: 5px;
  top: 6px;
  width: 50px;
  height: 80%;
  background: rgb(19, 29, 42);
  border-radius: 0 5px 5px 0;
  pointer-events: none;

  z-index: 2;
}

.location-field {
  position: relative;
  width: 100%;
}

.location-field i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  z-index: 2;
}

.location-field input {
  width: 100%;
  height: 54px;

  padding: 0 15px 0 45px;

  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.03);

  color: #fff;
  outline: none;
}

.location-field input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.location-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: inherit;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  padding-left: 30px;
}

.location-field {
  position: relative;
}

.service-select {
  position: relative;
  width: 100%;
}

.service-select i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);

  color: #fff;
  font-size: 15px;

  z-index: 2;
  pointer-events: none;
}

.service-select select {
  width: 100%;
  height: 54px;

  padding: 0 40px 0 45px;

  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.03);
  color: #fff;

  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}

/* hide default arrow */

.service-select select::-ms-expand {
  display: none;
}

/* option colors */

.service-select select option {
  background: #121f30;
  color: #fff;
}

/* custom small arrow */



/* DROPDOWN OPTIONS */

.booking-grid select option {
  background: #fff;
  color: #111;
}

.booking-grid button {
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to bottom,
      #fd7a00,
      #fc4902);
  transition: 0.3s;
  border: 1px solid #cd8856;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.booking-grid button:hover {
  background: linear-gradient(to bottom,
      #fc4902,
      #fd7a00);
}

.booking-grid button span {
  background: #ff7a00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: table;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero-features .feature-item {
  position: relative;
  padding-right: 20px;
  display: flex;
  gap: 10px;
  line-height: 18px;
}

/* line separator */

.hero-features .feature-item::after {
  content: '';

  position: absolute;
  right: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 1px;
  height: 35px;

  background: rgba(0, 0, 0, 0.1);
}

/* remove last line */

.hero-features .feature-item:last-child::after {
  display: none;
}

.hf-image {
  width: 40px;
}

.hero-features i {
  color: #ff7a00;
  font-size: 20px;
}

.hero-image {
  position: relative;
  text-align: center;
  height: 100%;
}


.hero-image img {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: auto;
}

.info-card {
  position: absolute;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
  text-align: left;
  box-shadow: 0 5px 20px rgba(253, 106, 1, 0.1);
}

.info-card p {
  margin: 0px;
}

.info-card h3 {
  margin: 0px;
}

.hero-image .info-card h3 {
  color: #010102;
}

.fa-icon {
  color: #ff7a00;
  font-size: 20px;
}

.card-1 {
  top: 70px;
  left: 40px;
}

.card-2 {
  bottom: 14px;
  right: -22px;
  display: flex;
  gap: 10px;
}

/* line 248, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation {
  backface-visibility: hidden;
  animation: jumping 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all .9s ease 5s;
  user-select: none;
}

/* line 256, E:/167 Bizcon Business/Bizcon_html/sass/_common.scss */
.custom-animation2 {
  backface-visibility: hidden;
  animation: jumping2 9s ease-in-out 2s infinite alternate;
  animation-delay: 1s;
  transition: all 1s ease 3s;
  user-select: none;
}

@keyframes jumping {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 1;
  }

  25% {
    transform: translateY(-3px) translateX(-.5px) rotate(1deg) scale(0.95);
    opacity: 1;
  }

  50% {
    transform: translateY(-3px) translateX(-1px) rotate(2deg) scale(0.90);
    opacity: 1;
  }

  75% {
    transform: translateY(-4px) translateX(-2px) rotate(1deg) scale(0.98);
    opacity: 1;
  }

  85% {
    transform: translateY(-5px) translateX(-1px) rotate(2deg) scale(0.95);
    opacity: 1;
  }

  100% {
    transform: translateY(-2px) translateX(-2px) rotate(0) scale(0.98);
    opacity: 1;
  }
}

@keyframes jumping2 {
  0% {
    transform: translateY(0px) translateX(0) rotate(0) scale(1);
    opacity: 1;
  }

  25% {
    transform: translateY(-3px) translateX(1px) rotate(2deg) scale(0.90);
    opacity: 1;
  }

  50% {
    transform: translateY(1px) translateX(-1px) rotate(1deg) scale(0.95);
    opacity: .8;
  }

  75% {
    transform: translateY(3px) translateX(2px) rotate(2deg) scale(0.97);
    opacity: 1;
  }

  100% {
    transform: translateY(-1px) translateX(1px) rotate(0) scale(0.99);
    opacity: 1;
  }
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title h2,
.center-title {
  font-size: 40px;
  font-weight: 600;
}

.section-title a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card h4 {
  margin-top: 15px;
  font-size: 15px;
}

.service-content h3 {
  margin-bottom: 15px;
}

.service-meta span {
  color: #666;
}

.service-meta i {
  color: #ff7a00;
}

.service-meta strong {
  color: #ff7a00;
}

.offer-banner {
  background: #090a0b url("../images/coupen-full.png");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  padding: 30px 30px;
  color: #fff;
  border-radius: 25px;
}

.bgwhite {
  background: #fff;
}

.offer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-flex h2,
h3 {
  font-size: 40px;
  font-weight: 600;
  color: #FFF;
}

.offer-flex h2 {
  margin: 0;
}

.offer-flex h3 {
  font-size: 32px;
}

.offer-flex h2 span {
  color: #ff7a00;
}

.offer-flex p {
  font-size: 18px;
  margin: 0px;
  color: #bbbcbd;
  line-height: 24px;
}

.offer-flex button {
  padding: 18px 40px;
  border-radius: 12px;
  border: 1px solid #ff7a00;
  background: transparent;
  color: #ff7a00;
  font-size: 22px;
  font-weight: 700;
}

.center-title {
  text-align: center;
  margin-bottom: 45px;
}

.center-title span {
  color: #ff7a00;
}

.why-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card,
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 15px 20px 0px;
  text-align: center;
}

.why-card i,
.step-card i {
  font-size: 36px;
  color: #ff7a00;
  margin-bottom: 18px;
}

.step-card span {
  width: 34px;
  height: 34px;
  background: #ff7a00;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  position: absolute;
  margin: 0;
  left: -22px;
  top: -10px;
}

.img-sc {
  position: relative;
}

footer {
  background: #050505;
  color: #fff;
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 40px;
}

.half {
  width: 50%;
  float: left;
}

.footer-logo {
  margin-bottom: 20px;
}

footer p {
  color: #d8d8d8;
  line-height: 1.8;
  font-size: 16px;
}

footer h4 {
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 14px;
  font-size: 16px;
}

footer ul li a {
  color: #d8d8d8;
  text-decoration: none;
}

footer ul li {
  color: #d8d8d8;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.social-icons i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  font-size: 18px;
}

.social-icons i:hover {
  background: #ff7a00;
}

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

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media(max-width:992px) {

  .hero-grid,
  .footer-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    flex-wrap: wrap;
  }

  .menu {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width:768px) {

  .category-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .offer-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* MOBILE */
@media(max-width:768px) {

  .search-box {
    max-width: 100%;
    height: auto;
  }

  .search-category {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 14px;
  }

}

/* menu */
.wrapper {
  /* background: #8446f7; */
  width: 100%;
}

.wrapper nav {
  position: relative;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav .nav-content .links {
  margin: 0px;
  display: flex;
  gap: 10px;
  padding: 0;
}

.nav-content .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-content .logo img {
  width: 30px;
}

.nav-content .logo a {
  color: #a443ff;
  font-size: 30px;
  font-weight: 600;
}

.nav-content .links li {
  list-style: none;
  margin: 0px 14px;
}

.nav-content .links li a,
.nav-content .links li label {
  color: #010102;
  font-size: 17px;
  font-weight: 500;
  padding: 16px 0px;
  border-radius: 0px;
  border-bottom: 2px solid #FFF;
  text-decoration: none;
  /* margin: 0 5px; */
}

.nav-content .links li label {
  display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
  background: none;
  color: #010102;
  border-bottom: 2px solid #ff7a00;
}


.search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #010102;
  background: #ffff;
  padding: 0 100px 0 15px;
}

.search-box input::placeholder {
  color: #545252;
}

.search-box .go-icon {
  position: absolute;
  display: flex;
  right: 10px;
  top: 50%;
  align-items: center;
  transform: translateY(-50%);
  line-height: 60px;
  width: 51px;
  height: 50px;
  justify-content: center;
  border: none;
  outline: none;
  color: #010102;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
  position: absolute;
  background: #FFF;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  padding: 0px;
  color: #fff;
  min-width: 160px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-content .links ul li {
  margin: 0px;
}

.nav-content .links ul li a {
  padding: 10px 6px 10px 20px;
  color: #010102 !important;
  border-bottom: 1px solid #9e9e9e;
}

.nav-content .links ul li a:hover {
  background: none;
  color: #ff7a00 !important;
  border-bottom: 1px solid #010102;
}

.nav-content .links li a.active {
  border-bottom: 2px solid #ff7a00;
}

.nav-content .links li:hover>ul {
  top: 34px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.nav-content .links ul li a {
  color: #fff;
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}

.nav-content .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.nav-content .links ul li {
  position: relative;
}

.nav-content .links ul li:hover ul {
  top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }

  nav .nav-content .links {
    margin-left: 30px;
  }

  .nav-content .links li a {
    color: #010102;
    padding: 8px 13px;
    font-size: 17px;
  }
}

@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
  }

  .nav-content .logo a {
    font-size: 25px;
  }

  .wrapper #show-menu:checked~.menu-icon i::before {
    content: "\f00d";
  }

  nav .nav-content .links {
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 68px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.nav-content .links {
    left: 0%;
  }

  .nav-content .links li {
    margin: 15px 20px;
  }

  .nav-content .links li a,
  .nav-content .links li label {
    line-height: 20px;
    font-size: 17px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
    color: #fff;
  }

  .nav-content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .nav-content .links ul,
  .nav-content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .nav-content .links #show-features:checked~ul,
  .nav-content .links #show-services:checked~ul,
  .nav-content .links #show-items:checked~ul {
    max-height: 100vh;
  }

  .nav-content .links ul li {
    margin: 7px 20px;
  }

  .nav-content .links ul li a {
    font-size: 17px;
    line-height: 30px;
    border-radius: 5px !important;
  }
}

.categories-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.categories-slider::-webkit-scrollbar {
  display: none;
}


.category-card:hover {
  transform: translateY(-5px);
}

.category-card.active {
  border-color: #ff7a00;
}

.static-all {
  border: 2px solid #f97316 !important;
  background: #fff7ed !important;
}

.static-all.active {
  border-color: #f97316 !important;
}

.category-card span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  min-height: 40px;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.11);
  padding: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.service-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #010102;
}

.orange {
  color: #ff7a00;
}

.service-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  color: #ff7a00;
  font-weight: 700;
}

.book-btn {
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
}

.category-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;

  border: 2px solid transparent;

  box-shadow: 0 5px 20px rgba(255, 122, 0, 0.11);

  margin: 30px 10px;
}

.category-card:hover {
  transform: translateY(-5px);
}


.category-card span {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

/* owl nav */
.categories .section-title {
  margin-bottom: 0px;
}

.services.section-space {
  padding-top: 0;
}

.category-slider .owl-nav {
  margin-top: 10px;
  text-align: center;
}

.category-slider .owl-nav button {
  width: 42px;
  height: 42px;
  font-size: 22px !important;

  border-radius: 50% !important;

  background: #ff7a00 !important;
  color: #fff !important;

  margin: 0 5px;
}

.category-card img {
  width: 55px !important;
  margin: auto;
  margin-bottom: 12px;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 10px;
  margin-top: 12px;
}

.service-meta span {
  font-size: 13px;
  color: #777;
}

.service-meta span i {
  color: #ffb400;
  margin-right: 4px;
}

/* rating number */

.service-meta span .rating {
  color: #ff7a00;
  font-weight: 600;
}

.service-meta span i {
  color: #ff7a00;
  margin-right: 4px;
}

.service-meta strong {
  font-size: 13px;
  color: #ff7a00;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.service-icon {
  position: absolute;

  bottom: -10px;
  left: 10px;

  width: 50px;
  height: 50px;

  background: #fff;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.11);
}

.service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* extra spacing because icon overlaps */

.service-content {
  padding: 26px 6px 5px;
}

.code-box {
  border: 1px dashed #bbbcbd;
  min-width: 140px;
  text-align: center;
  border-radius: 10px;
}

.code-text {
  font-size: 22px;
  font-weight: 600;
  color: #ff7a00;
  border-bottom: 1px dashed #FF7A00;
  padding: 10px 10px 10px 10px;
}

.use-text {
  font-size: 14px;
  font-weight: 600;
  color: #bbbcbd;
  padding: 10px 10px 10px 10px;
}

.why-card img {
  width: 60px;
  background: #fdf2e7;
  border: 10px solid #fcf1e6;
  border-radius: 50%;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 35px 10px;
}

.why-card h4 {
  font-size: 14px;
  text-align: left;
  margin: 0px;
}

.why-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.why-card {
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 20%;
  padding: 5px 25px;
}

.why-card img {
  width: 60px;
  background: #fdf2e7;
  border: 10px solid #fcf1e6;
  border-radius: 50%;
}

.why-card h4 {
  font-size: 14px;
  text-align: left;
  margin: 0px;
  line-height: 1.5;
}

/* separator line */

.why-card::after {
  content: '';

  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 1px;
  height: 60px;

  background: rgba(0, 0, 0, 0.08);
}

/* remove last separator */

.why-card:last-child::after {
  display: none;
}

.how-works {
  border: 1px solid #d6d6d6;
  padding: 30px;
  border-radius: 20px;
}

.how-works .section-title {
  margin-bottom: 0px;
}

.how-works .section-title h2 {
  font-size: 32px;
}

.step-card h4 {
  font-size: 16px;
  text-align: left;
  margin: 0px;
  line-height: 1.5;
}

.step-card p {
  font-size: 14px;
  text-align: left;
  margin: 0px;
}

.step-card img {
  width: 60px;
  background: #fdf2e7;
  border: 10px solid #fcf1e6;
  border-radius: 50%;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step-card {
  position: relative;
  flex: 1;

  display: flex;
  align-items: center;
  gap: 15px;
}

/* arrow between cards */

.step-card::after {
  content: '';

  position: absolute;

  top: 50%;
  right: -22px;

  transform: translateY(-50%);

  width: 60px;
  height: 20px;

  background: url("../images/arrow.png") no-repeat center;
  background-size: contain;
}

/* remove last arrow */

.step-card:last-child::after {
  display: none;
}

.play-app {
  background: #fcf1e6;
  padding: 15px 30px 0px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 100px;
  flex-wrap: wrap;
}

.right-sec img {
  width: 25px;
}

.mobile-image img {
  width: 170px;
}

.left-sec {
  display: flex;
  align-items: center;
  gap: 50px;
}

.right-sec {
  display: flex;
  align-items: center;
  gap: 50px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  background: #050403;
  padding: 5px 14px;
  border-radius: 10px;
  transition: 0.3s;
}

.play-app h3 {
  font-size: 32px;
  color: #010102;
  font-weight: 600;
}

.play-app h3 span {
  color: #ff7a00;
}

.play-app p {
  margin: 0px;
}

.store-btn p {
  text-decoration: none;
  color: #fff;
}

.store-btn h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.app-store.section-space {
  padding: 0px 0px 10px;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-links ul li a {
  position: relative;

  color: #d8d8d8;
  text-decoration: none;

  padding-left: 18px;

  transition: 0.3s;
}

/* arrow */

.footer-links ul li a::before {
  content: '\f101';

  font-family: 'Font Awesome 6 Free';
  font-weight: 900;

  position: absolute;

  left: 0;
  top: 50%;

  transform: translateY(-50%);

  color: #ff7a00;
  font-size: 13px;
}

/* hover */

.footer-links ul li a:hover {
  color: #ff7a00;
  padding-left: 22px;
}

.phone a {
  position: relative;
  padding-left: 18px;
  transition: 0.3s;
}

.mail a {
  position: relative;
  padding-left: 18px;
  transition: 0.3s;
}

.address {
  position: relative;
  padding-left: 18px;
  transition: 0.3s;
}

.phone a::before {
  content: '\f095';

  font-family: 'Font Awesome 6 Free';
  font-weight: 900;

  position: absolute;

  left: 0;
  top: 50%;

  transform: translateY(-50%);

  color: #ff7a00;
  font-size: 13px;
}

.mail a::before {
  content: '\f0e0';

  font-family: 'Font Awesome 6 Free';
  font-weight: 900;

  position: absolute;

  left: 0;
  top: 50%;

  transform: translateY(-50%);

  color: #ff7a00;
  font-size: 13px;
}

.address::before {
  content: '\f3c5';

  font-family: 'Font Awesome 6 Free';
  font-weight: 900;

  position: absolute;

  left: 0;
  top: 10px;

  transform: translateY(-50%);

  color: #ff7a00;
  font-size: 13px;
}

.address-foter ul {
  margin: 0px;
  padding: 0px;
}

.address-foter a:hover {
  color: #ff7a00;
  padding-left: 22px;
  transition: 0.3s;
}

.mobile-menu {
  padding-left: 35px;
  margin-top: 18px;
  display: none;
}

.store-btn:hover {
  transform: translateY(-6px);
}

.booking-grid button:hover span {
  transform: translateX(6px);
}


/*START CUSTOMER REG}*/

.form-space {
  padding: 30px 0px;
}

.page-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.card-header {
  padding: 25px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.card-header h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0px;
}

.form-body {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 30px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-group label span {
  color: red;
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 18px;
}

.input-box .eye {
  left: auto;
  right: 18px;
  cursor: pointer;
}

.input-box input,
.input-box textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 16px 18px 16px 50px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input-box textarea {
  resize: none;
  padding-top: 18px;
}

.input-area {
  height: 160px !important;
  padding-left: 20px !important;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #ff9800;
}

.full-width {
  grid-column: 1 / -1;
}

.location-row {
  display: flex;
  gap: 15px;
  align-items: end;
}

.location-row .form-group {
  flex: 1;
}

.location-btn {
  height: 50px;
  border: none;
  background: #ff9800;
  color: #fff;
  padding: 0 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 25px;
}

.location-btn:hover {
  background: #f57c00;
}

.form-actions {
  margin-top: 35px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.clear-btn,
.save-btn {
  min-width: 150px;
  height: 58px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.clear-btn {
  background: #fff;
  border: 1px solid #cbd5e1;
}

.save-btn {
  background: #ff9800;
  color: #fff;
  border: none;
}

.clear-btn:hover {
  background: #f3f4f6;
}

.save-btn:hover {
  background: #f57c00;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .page-title {
    font-size: 34px;
  }

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

  .location-row {
    flex-direction: column;
    align-items: stretch;
  }

  .location-btn {
    width: 100%;
  }

}

@media(max-width:600px) {

  .page-title {
    font-size: 28px;
  }

  .card-header {
    padding: 20px;
  }

  .card-header h2 {
    font-size: 24px;
  }

  .form-body {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .clear-btn,
  .save-btn {
    width: 100%;
  }

}

.location-row .form-group {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 5px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-item {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}

.location-item:hover {
  background: #f5f7ff;
}

.location-row {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 9999;
}

.location-item {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
}

.location-item:hover {
  background: #f5f5f5;
}

/*END CUSTOMER REG}*/


/*START PARTNER REG}*/

.partner-section {
  padding: 30px 0;
}

.partner-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-header-custom {
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.card-header-custom h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 0px;
  color: #010102;
}

.form-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #222;
}

.form-group label span {
  color: red;
}

.input-box {
  position: relative;
}

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

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 50px;
  padding-left: 45px;
  padding-right: 15px;
  outline: none;
  font-size: 15px;
}

.input-box textarea {
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.upload-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f8fafc;
  text-align: center;
  padding: 35px 20px;
  cursor: pointer;
  transition: 0.3s;
  min-height: 160px;
}

.upload-box:hover {
  border-color: #ff931e;
}

.upload-box i {
  font-size: 40px;
  color: #ff931e;
  margin-bottom: 15px;
}

.upload-box h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.upload-box p {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 18px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.document-btn {
  width: 100%;
  height: 52px;
  border: none;
  background: #ff931e;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.3s;
}

.document-btn:hover {
  background: #e67f08;
}

.document-preview {
  width: 100%;
  height: 160px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
  background: #fafafa;
}

.document-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.add-btn {
  width: 100%;
  height: 50px;
  border: none;
  background: #ff931e;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.clear-btn {
  width: 150px;
  height: 55px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  font-weight: 700;
}

.submit-btn {
  width: 150px;
  height: 55px;
  border: none;
  background: #ff931e;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
}

.bank-title {
  font-size: 28px;
  font-weight: 700;
  margin: 30px 0 25px;
}

@media(max-width:768px) {

  .page-title {
    font-size: 28px;
  }

  .form-body {
    padding: 20px;
  }

}

.upload-title {
  font-weight: 600;
}

.upload-sub {
  font-size: 12px;
}

.file-name {
  margin-top: 8px;
  font-size: 13px;
  color: #cf2030;
  word-break: break-all;
}

.preview-box {
  margin: 0px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 5px;
}

.upload-flex {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.upload-left {
  width: 60%;
}

.preview-right {
  width: 40%;
}


.preview-item {
  position: relative;
  border-radius: 5px;
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
}

.preview-item img {
  max-width: 100%;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.remove-btn {
  position: absolute;
  top: 5px;
  right: 8px;
  cursor: pointer;
  color: red;
  font-size: 14px;
}

.tc-txt {
  line-height: 18px;
  font-size: 13px;
  margin: 0px;
}

.document-upload {
  margin-bottom: 15px;
}

.document-btn {
  background: #ff8c1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.document-btn:hover {
  background: #e97800;
}

.document-preview {
  width: 100%;
  height: 220px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 10px;
  margin-bottom: 25px;
}

.document-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upload-placeholder,
.pdf-preview {
  font-size: 14px;
  color: #666;
  padding: 15px;
  text-align: center;
}

.multi-select {
  position: relative;
}

.multi-select-box {
  height: 55px;
  border: 1px solid #dbe2ea;
  border-radius: 5px;
  padding: 0 18px 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  background: #fff;
}

.multi-select-box i:first-child {
  position: absolute;
  left: 18px;
  color: #64748b;
}

.dropdown-icon {
  color: #64748b;
}

.multi-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 5px;
  padding: 10px;
  margin-top: 8px;
  display: none;
  z-index: 99;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.multi-select-dropdown label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.multi-select-dropdown label:hover {
  background: #f8fafc;
}

.multi-select-dropdown input {
  width: 16px;
  height: 16px;
}

.category-select-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.category-select-wrapper .multi-select-box {
  flex: 1;
}

.category-add-btn {
  white-space: nowrap;
  height: 50px;
  border: none;
  background: #ff9800;
  color: #fff;
  padding: 0 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.category-add-btn:hover {
  opacity: 0.9;
}

.category-add-btn:hover {
  background: #e97800;
}

.pst-exp {
  height: 100px !important;
}

.profile-txtara {
  height: 178px !important;
}

.mb25 {
  margin-bottom: 25px;
}

.category-slider .owl-nav {
  position: absolute;
  top: 42%;
  left: -20px;
  width: calc(100% + 40px);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.category-slider .owl-nav button {

  pointer-events: auto;
}

.category-slider .owl-nav button span {
  font-size: 26px;
  line-height: 1;
}

.category-slider {
  position: relative;
}

.categories-section {
  padding-bottom: 10px;
}

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

.category-top h2 {
  font-size: 40px;
}

.category-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.category-search input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 20px 0 48px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.category-search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.category-top a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/*END PARTNER REG}*/

.category-search {
  position: relative;
}

.category-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 5px;
  display: none;
  z-index: 999;
  overflow: hidden;
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 14px;
}

.suggestion-item:hover {
  background: #f5f5f5;
}


/* =========================================
   ABOUT PAGE CSS
   UNIQUE CLASSES ONLY
========================================= */

.ez-about-primary-btn span {
  background: #ff7a00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.ez-about-primary-btn {
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  transition: 0.3s;
  border: 1px solid #cd8856;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
}

.ez-about-primary-btn:hover {
  background: linear-gradient(to bottom, #fc4902, #fd7a00);
}

.ez-about-secondary-btn {
  border-radius: 5px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to bottom, #fff, #d8d8d8);
  transition: 0.3s;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
}

.ez-about-secondary-btn span {
  background: #dadada;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.ez-about-secondary-btn:hover span {
  transform: translateX(6px);
}

.ez-about-primary-btn:hover span {
  transform: translateX(6px);
}

.ez-about-secondary-btn:hover {
  background: linear-gradient(to bottom, #d8d8d8, #FFF);
}

.ez-about-hero {
  background: #fbf9f8 url(../images/hero-man.webp) no-repeat;
  padding: 80px 0;
  background-size: contain;
  background-position-x: right 262px;
}

.ez-about-subtitle {
  color: #ff7a00;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.ez-about-content h1 {
  font-size: 53px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
}

.ez-about-content h1 span {
  color: #ff7a00;
}

.ez-about-content p {
  max-width: 540px;
}

.ez-about-btns {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}


/* COMPANY */

.ez-company-section {
  padding: 80px 0;
}

.ez-about-video-element {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.ez-company-play-btn {
  width: 90px;
  height: 90px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 2;
  transition: 0.3s;
}

.ez-company-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.ez-about-video-image {
  width: 100%;
  border-radius: 20px;
  transition: 0.4s;
}

.ez-company-video:hover .ez-about-video-image {
  transform: scale(1.04);
}

.ez-company-video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  height: 400px;
}

.ez-company-play-btn {
  width: 90px;
  height: 90px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 2;
  transition: 0.3s;
  animation: ezPulse 1.8s infinite;
}

.ez-company-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@keyframes ezPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(255, 122, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }

}

.ez-company-video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.ez-company-video img {
  width: 100%;
  border-radius: 20px;
}

.ez-company-play-btn {
  width: 90px;
  height: 90px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.ez-company-content {
  padding-left: 40px;
}

.ez-company-content span {
  color: #ff7a00;
  font-weight: 700;
  font-size: 14px;
}

.ez-company-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0 20px;
}

.ez-company-content h2 strong {
  color: #ff7a00;
}

.ez-company-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.ez-company-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.ez-company-stat-box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.ez-company-stat-box i {
  color: #ff7a00;
  font-size: 34px;
}

.ez-company-stat-box h4 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}

.ez-company-stat-box p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.ez-company-stat-box {
  position: relative;
  padding-right: 40px;
}

.ez-company-stat-box::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 80%;
  background: #dcdcdc;
}

.ez-company-stat-box:last-child::after {
  display: none;
}

/* WHY */

.ez-why-section {
  padding: 80px 0;
  background: #fff;
}

.ez-about-title-center {
  text-align: center;
  margin-bottom: 50px;
}

.ez-about-title-center h2 {
  font-size: 40px;
  font-weight: 800;
}

.ez-about-title-center span {
  color: #ff7a00;
}

.ez-why-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.ez-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ez-why-card img {
  width: 65px;
  margin: 0px auto 20px;
}

.ez-why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ez-why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE */

@media(max-width:991px) {


  .ez-company-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .ez-about-content h1 {
    font-size: 42px;
  }

  .ez-company-content h2 {
    font-size: 40px;
  }

  .ez-about-circle {
    width: 300px;
    height: 300px;
  }

  .ez-about-floating-card {
    position: relative;
    margin: 15px auto;
    left: auto;
    right: auto;
    top: auto;
    width: fit-content;
  }

}

.ez-mission-section {
  background: #fff;
}

.ez-mission-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #fff6ef;
  border-radius: 15px;
}

.ez-mission-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background: #fff4eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ez-mission-icon i {
  font-size: 28px;
  color: #ff7a00;
}

.ez-mission-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.ez-mission-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

@media(max-width:768px) {

  .ez-mission-box {
    padding: 20px 0;
  }

  .ez-mission-content h3 {
    font-size: 24px;
  }

}

/* =========================
SECTION HEAD
========================= */

.ez-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.ez-section-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.ez-section-head a {
  color: #ff7a00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
TEAM SECTION
========================= */

.ez-team-section {
  padding: 70px 0 50px;
  background: #fff;
}

.ez-team-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  padding: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin: 0px 0px 20px;
}

.ez-team-img {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f1f5f9;
}

.ez-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ez-team-img span {
  position: absolute;
  right: 15px;
  bottom: -9px;
  font-size: 13px;
  font-weight: 600;
  background: #f5f2eb;
  border-radius: 5px;
  padding: 2px 5px;
}

.ez-team-content {
  padding: 16px;
}

.ez-team-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ez-team-content p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.ez-team-rating {
  color: #ff7a00;
  font-weight: 600;
}

.ez-team-rating span {
  color: #010102;
}

.ez-impact-title {
  margin-bottom: 20px;
}

.ez-impact-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.ez-impact-title h2 span {
  color: #ff7a00;
}

/* =========================
IMPACT SECTION
========================= */

.ez-impact-section {
  padding-bottom: 70px;
  background: #fff;
}

.ez-impact-wrap-outer {
  background: #050505;
  border-radius: 18px;
  padding: 40px;
}

.ez-impact-wrap {
  background: #050505;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ez-impact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.ez-impact-item:last-child {
  border-right: none;
}

.ez-impact-item i {
  color: #ff7a00;
  font-size: 38px;
}

.ez-impact-item h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 5px;
}

.ez-impact-item p {
  color: #ddd;
  margin: 0;
}

/* =========================
TESTIMONIAL
========================= */

.ez-testimonial-section {
  padding-bottom: 70px;
  background: #fff;
}

.ez-testimonial-slider .ez-testimonial-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 220px !important;
}

.ez-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
  height: auto;
  max-width: 100%;
}

.ez-testimonial-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 12px 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5 !important;
  line-clamp: 5 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 !important;
}

.ez-quote i {
  font-size: 20px;
  color: #f97316;
}

.ez-testimonial-bottom {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.ez-user {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  flex: 1 !important;
}

.ez-user img {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.ez-user h5 {
  font-size: 13px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 120px !important;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.ez-rating {
  flex-shrink: 0 !important;
  font-weight: 700 !important;
  color: #f97316 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 14px !important;
}

.ez-rating i {
  font-size: 13px;
}

/* =========================
CTA
========================= */

.ez-about-cta {
  padding-bottom: 70px;
  background: #fff;
}

.ez-about-cta-wrap {
  border-radius: 18px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #0b0d0f url("../images/coupen-full.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}

.ez-about-cta-content h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}

.ez-about-cta-content h2 span {
  color: #ff7a00;
}

.ez-about-cta-content p {
  color: #ddd;
  margin: 0px;
}

.ez-about-cta-image img {
  max-width: 260px;
}


/* =========================
OWL FIX
========================= */

.ez-team-slider .owl-stage,
.ez-testimonial-slider .owl-stage {
  display: flex;
}

.ez-team-slider .owl-item,
.ez-testimonial-slider .owl-item {
  height: 100%;
}

/* =========================
MISSION / VISION
========================= */

.ez-mission-vision-section {
  padding: 20px 0 10px;
  background: #FFF;
}

.ez-mv-box {
  background: #fff8f2;
  border-radius: 14px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  border: 1px solid #f3eee8;
}

.ez-mv-content {
  max-width: 320px;
  display: flex;
  gap: 20px;
}

.ez-mv-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ez-mv-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.ez-mv-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ez-mv-icon i {
  color: #ff7700;
  font-size: 20px;
}

.ez-mv-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

.ez-mv-image img {
  max-width: 210px;
}

@media(max-width:991px) {

  .ez-mv-box {
    flex-direction: column;
    text-align: center;
  }

  .ez-mv-title {
    justify-content: center;
  }

}

/* =========================
contact us
========================= */

.ez-contact-hero {
  padding: 80px 0 60px;
  background: #fff;
}

.contact-hero {
  background: #fbf9f8 url(../images/hero-contact.webp) no-repeat;
  padding: 80px 0;
  background-size: contain;
  background-position-x: right 262px;
}

.ez-contact-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #ff7a00;
  display: block;
  margin-bottom: 15px;
}

.ez-contact-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.ez-contact-left h1 span {
  color: #ff7a00;
}

.ez-contact-left p {
  font-size: 22px;
  line-height: 1.7;
  color: #555;
  max-width: 540px;
}

.ez-contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  gap: 20px;
}

.ez-contact-feature-item {
  border-right: 1px solid #ececec;
  padding-right: 20px;
  text-align: center;
}

.ez-contact-feature-item .hf-image {
  margin: 0px auto 10px;
}

.ez-contact-feature-item:last-child {
  border: none;
}

.ez-contact-feature-item i {
  font-size: 34px;
  color: #ff7a00;
  margin-bottom: 15px;
}

.ez-contact-feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ez-contact-feature-item span {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.ez-contact-right {
  position: relative;
  text-align: center;
}

.ez-contact-right img {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.ez-contact-circle {
  width: 420px;
  height: 420px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ez-contact-floating-card {
  position: absolute;
  right: 0;
  top: 120px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.ez-contact-floating-card i {
  color: #ff7a00;
  font-size: 38px;
  margin-bottom: 10px;
}

.ez-contact-floating-card h3 {
  font-size: 42px;
  font-weight: 800;
}

.ez-contact-form-section {
  padding: 70px 0 50px;
  background: #FFF;
}

.ez-contact-form-box {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.ez-contact-form-box h2,
.ez-contact-info-wrap h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ez-contact-form-box p {
  color: #777;
  margin-bottom: 35px;
}

.ez-contact-form-box label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.ez-contact-form-box input,
.ez-contact-form-box select,
.ez-contact-form-box textarea {
  width: 100%;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 20px;
  outline: none;
  background: #FFF;
}

.ez-contact-form-box textarea {
  height: 140px;
  padding-top: 20px;
  resize: none;
}

.ez-contact-submit-btn {
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to bottom,
      #fd7a00,
      #fc4902);
  transition: 0.3s;
  border: 1px solid #cd8856;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 62px;
}

.ez-contact-submit-btn:hover {
  background: linear-gradient(to bottom,
      #fc4902,
      #fd7a00);
}

.ez-contact-submit-btn span {
  background: #ff7a00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: table;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.ez-contact-submit-btn:hover span {
  transform: translateX(6px);
}

.ez-contact-info-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.ez-contact-info-card i {
  font-size: 42px;
  color: #ff7a00;
}

.ez-contact-map-section {
  padding-bottom: 70px;
  background: #fff;
}

.ez-contact-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 400px;
}

.place-details-compact-container {
  opacity: 0;
  display: none;
}

.ez-contact-map-wrap img {
  width: 100%;
}

.ez-contact-map-card {
  position: absolute;
  left: 40px;
  top: 24%;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  width: 350px;
  display: flex;
  gap: 20px;
}

.ez-contact-map-card i {
  font-size: 38px;
  color: #ff7a00;
}

.ez-contact-map-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: #f5f5f5;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

.ez-contact-faq-section {
  padding-bottom: 55px;
  background: #FFF;
}

.ez-contact-faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.ez-contact-faq-title h2 {
  font-size: 40px;
  font-weight: 800;
}

.ez-contact-faq-title span {
  color: #ff7a00;
}

.ez-contact-faq-title a {
  color: #ff7a00;
  font-weight: 700;
  text-decoration: none;
}

.ez-contact-accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 15px;
}

.ez-contact-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  box-shadow: none !important;
  padding: 22px;
}

@media(max-width:991px) {

  .ez-contact-left h1 {
    font-size: 46px;
  }

  .ez-contact-map-card {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
  }

}

@media(max-width:575px) {

  .ez-contact-left h1 {
    font-size: 38px;
  }

  .ez-contact-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ez-contact-form-box {
    padding: 30px 20px;
  }

}



/* =========================
CustomerBookinig details
========================= */


.account {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  display: none;
}

.account img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.account small,
.account strong {
  display: block;
  font-size: 12px;
}

.ezcust-dashboard-section {
  padding: 40px 0;
  background: #fafafa;
}

.ezcust-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  height: 100%;
}

.ezcust-user-card {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.ezcust-user-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.ezcust-user-card h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.ezcust-user-card p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.ezcust-user-card a {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.ezcust-menu {
  padding: 25px 0;
  list-style: none;
}

.ezcust-menu li {
  margin-bottom: 10px;
}

.ezcust-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 10px;
  color: #222;
  text-decoration: none;
}

.ezcust-menu li.active a {
  background: #fff4ed;
  color: #ff6b00;
  font-weight: 600;
  transition: 0.3s;
}

.ezcust-menu li a:hover {
  background: #fff4ed;
  color: #ff6b00;
  font-weight: 600;
  transition: 0.3s;
}

.ezcust-logout {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.ezcust-logout a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 600;
}

.ezcust-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ezcust-topbar p {
  margin: 0px;
}

.ezcust-topbar h2 {
  font-size: 32px;
  font-weight: 700;
}

.ezcust-book-btn {
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  color: #fff;
  padding: 16px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.ezcust-book-btn:hover {
  background: linear-gradient(to bottom, #fc4902, #fd7a00);
}

.ezcust-booking-box {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 30px;
}

.ezcust-booking-tabs {
  margin-top: 20px;
}

.ezcust-booking-tabs .nav-link {
  border: none;
  color: #666;
}

.ezcust-booking-tabs .nav-link.active {
  color: #ff6b00;
  border-bottom: 2px solid #ff6b00;
}

.ezcust-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  padding: 25px;
  margin-bottom: 25px;
}

.ezcust-card h4 {
  margin-bottom: 20px;
}

.ezcust-card ul {
  list-style: none;
  padding: 0;
}

.ezcust-card li {
  padding: 12px 0;
  display: flex;
  gap: 12px;
}

.ezcust-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.ezcust-help-banner {
  background: #000;
  border-radius: 15px;
  padding: 25px;
  color: #fff;
}

.ezcust-help-banner span {
  color: #ff6b00;
}

.ezcust-help-banner img {
  width: 100%;
  margin: 20px 0;
}

.ezcust-help-banner a {
  display: block;
  text-align: center;
  background: #ff6b00;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
}

.ezc-bookings-panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
}

.ezc-panel-head h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.ezc-booking-tabs {
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  border-bottom: 1px solid #eee;
}

.ezc-booking-tabs li {
  padding-bottom: 15px;
  cursor: pointer;
  font-weight: 600;
  color: #777;
}

.ezc-booking-tabs li.active {
  color: #ff6b00;
  border-bottom: 3px solid #ff6b00;
}

.ezc-booking-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 25px;
}

.ezc-booking-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ezc-booking-service {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ezc-service-icon {
  width: 50px;
  height: 50px;
  background: #fff5ef;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff6b00;
}

.ezc-booking-service h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #010102;
}

.ezc-booking-service p {
  margin: 0px;
}

.ezc-status {
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 5px;
  margin-left: 12px;
}

.confirmed {
  background: #dff5e5;
  color: #2d8f4e;
}

.scheduled {
  background: #f1f1f1;
  color: #555;
}

.completed {
  background: #dff5e5;
  color: #2d8f4e;
}

.cancelled {
  background: #f5dfdf;
  color: #8f2d2d;
}

.ezc-booking-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ezc-view-btn {
  padding: 6px 15px;
  border: 1px solid #ff6b00;
  border-radius: 8px;
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ezc-view-btn:hover {
  background: #ff6b00;
  color: #FFF;
  transition: 0.3s;
}

.ezc-booking-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: 1.2fr 2fr 0.8fr;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.ezc-booking-info p {
  margin: 0px;
}

.ezc-booking-info span {
  display: block;
  color: #888;
  margin-bottom: 10px;
}

.ezc-booking-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.ezc-progress-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  text-align: center;
}

.ezc-progress-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  display: block;
  margin: auto auto 12px;
}

.ezc-progress-step.active span {
  background: #ff6b00;
}

.ezc-booking-alert {
  background: #eef5ff;
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ezc-booking-alert i {
  color: #2563eb;
  margin-right: 10px;
}

.ezc-booking-alert a {
  background: #fff;
  padding: 10px 9px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  min-width: 125px;
  font-size: 12px;
}

.ezc-bookings-footer {
  text-align: center;
  margin-top: 25px;
}

.ezc-bookings-footer a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.ezc-bookings-footer a:hover {
  background: #ff6b00;
  color: #FFF;
  transition: 0.3s;
}

@media(max-width:991px) {

  .ezc-booking-info {
    grid-template-columns: 1fr;
  }

  .ezc-progress-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ezc-booking-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ezc-booking-alert {
    flex-direction: column;
    gap: 15px;
  }

}


/* RIGHT SIDEBAR */

.ezdash-right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* COMMON CARD */

.ezdash-side-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

.ezdash-side-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* QUICK ACTIONS */

.ezdash-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ezdash-action-list li {
  margin-bottom: 20px;
}

.ezdash-action-list li:last-child {
  margin-bottom: 0;
}

.ezdash-action-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.ezdash-action-list a:hover {
  color: #ff6b00;
  transition: 0.3s;
}

.ezdash-action-list i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff4ed;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ACCOUNT OVERVIEW */

.ezdash-overview-list {
  display: flex;
  flex-direction: column;
}

.ezdash-overview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #efefef;
}

.ezdash-overview-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ezdash-overview-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ezdash-overview-left i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f6f6f6;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ezdash-overview-left span {
  font-size: 15px;
  color: #444;
}

.ezdash-overview-item strong {
  font-size: 15px;
  color: #111;
  font-weight: 700;
}

/* PROMO CARD */

.ezdash-promo-card {
  background: #050505 url(../images/promo.png);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  padding: 35px 28px 240px;
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
}

.ezdash-promo-content h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 15px;
}

.ezdash-promo-content h3 span {
  color: #ff7b00;
}

.ezdash-promo-content p {
  color: #fff;
  opacity: .9;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.ezdash-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 10px;
  position: absolute;
  bottom: 25px;
}

.ezdash-promo-btn span {
  background: #ff7a00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: table;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.ezdash-promo-btn:hover span {
  transform: translateX(6px);
}

.ezdash-promo-btn:hover {
  background: linear-gradient(to bottom, #fc4902, #fd7a00);
}

.ezcust-dashboard-Ysection {
  background: rgb(252, 241, 230);
  padding: 25px 0;
  margin-bottom: 30px;
}

.center-title {
  margin-bottom: 24px
}

.ezcust-dashboard-Ysection .why-card {
  background: rgb(252, 241, 230);
}


/* RESPONSIVE */

@media(max-width:991px) {

  .ezdash-action-list a {
    font-size: 16px;
  }

  .ezdash-overview-left span {
    font-size: 15px;
  }

  .ezdash-promo-content h3 {
    font-size: 28px;
  }

}

.ezdash-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ezdash-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-size: 18px;
}

.ezdash-card-head h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
}

@media(min-width:992px) {

  .ezdash-left {
    width: 22%;
    flex: 0 0 22%;
  }

  .ezdash-center {
    width: 53%;
    flex: 0 0 53%;
  }

  .ezdash-right {
    width: 25%;
    flex: 0 0 25%;
  }

}

.ezc-tab-pane {
  display: none;
}

.ezc-tab-pane.active {
  display: block;
}

.account-arrow {
  font-size: 12px;
  transition: 0.3s;
}

.account:hover .account-arrow {
  transform: rotate(180deg);
}

/* DROPDOWN */

.account-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  margin: 0;
  list-style: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: .3s ease;
  z-index: 9999;
}

.account.dropdown-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown li {
  margin: 0;
}

.account-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 18px;

  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  transition: .3s;
}

.account-dropdown li a i {
  width: 18px;
  text-align: center;
  color: #666;
}

.account-dropdown li a:hover {
  background: #fff4ed;
  color: #ff6b00;
}

.account-dropdown li a:hover i {
  color: #ff6b00;
}


/* ====================================
PARTNER DASHBOARD
==================================== */

.ezpro-dashboard-section {
  padding: 40px 0;
  background: #fafafa;
}

.ezpro-dashboard-section .row {
  display: flex;
  gap: 25px;
}

.ezpro-layout {
  display: flex;
  gap: 24px;
}

.ezpro-left {
  width: 260px;
  flex-shrink: 0;
}

.ezpro-main {
  flex: 1;
}

/* header */
.ezpro-header {
  margin-bottom: 24px;
}

/* stats */
.ezpro-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* bottom section */
.ezpro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.ezpro-center {
  min-width: 0;
}

.ezpro-right {
  min-width: 0;
}

/* SIDEBAR */

.ezpro-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
}

.ezpro-profile-card {
  text-align: left;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
}

.ezpro-profile-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0px;
}

.ezpro-profile-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.ezpro-profile-card p {
  color: #777;
  margin-bottom: 5px;
}

.ezpro-online {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
}

.ezpro-online i {
  font-size: 10px;
}

/* MENU */

.ezpro-menu {
  list-style: none;
  padding: 25px 0;
  margin: 0;
}

.ezpro-menu li {
  margin-bottom: 10px;
}

.ezpro-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #222;
  padding: 14px 16px;
  border-radius: 10px;
  transition: .3s;
}

.ezpro-menu li.active a,
.ezpro-menu li a:hover {
  background: #fff4ed;
  color: #ff7a00;
}

.ezpro-logout {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.ezpro-logout a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
}

/* HEADER */

.ezpro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ezpro-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* STATUS */

.ezpro-status-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ezpro-status-toggle {
  border: none;
  background: #e8f9ed;
  color: #16a34a;
  padding: 10px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ezpro-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
}

/* STATS */

.ezpro-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ezpro-stat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ezpro-stat-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #010102
}

.ezpro-stat-card p {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.ezpro-status-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  gap: 10px;
}

.ezpro-status-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* Card */
.ezpro-status-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid;
  transition: all .25s ease;
}

/* Online */
.ezpro-status-card.online {
  background: #f0fdf4;
  border-color: #86efac;
}

.ezpro-status-card.online .ezpro-status-text {
  color: #15803d;
}

/* Offline */
.ezpro-status-card.offline {
  background: #fef2f2;
  border-color: #fca5a5;
}

.ezpro-status-card.offline .ezpro-status-text {
  color: #dc2626;
}

.ezpro-status-text {
  font-weight: 600;
  font-size: 14px;
}

/* Switch */
.ezpro-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.ezpro-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ezpro-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s;
}

.ezpro-slider:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .25s;
}

.ezpro-switch input:checked+.ezpro-slider {
  background: #22c55e;
}

.ezpro-switch input:checked+.ezpro-slider:before {
  transform: translateX(20px);
}

.ezpro-stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.orange {
  background: #fff3eb;
  color: #ff7a00;
}

.green {
  background: #e8f9ed;
  color: #16a34a;
}

.blue {
  background: #e8f0ff;
  color: #2563eb;
}

.purple {
  background: #f4e8ff;
  color: #9333ea;
}

/* TODAY JOBS */

.ezpro-jobs-panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
}

.ezpro-jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ezpro-jobs-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #010102;
}

.ezpro-jobs-header a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* TABS */

.ezpro-job-tabs {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.ezpro-job-tabs li {
  cursor: pointer;
  font-weight: 600;
  color: #777;
  padding-bottom: 10px;
}

.ezpro-job-tabs li.active {
  color: #ff7a00;
  border-bottom: 3px solid #ff7a00;
}

/* TAB CONTENT */

.ezpro-tab-pane {
  display: none;
}

.ezpro-tab-pane.active {
  display: block;
}

/* JOB CARD */

.ezpro-job-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 15px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 130px;
  border-left: 5px solid #d6d6d6;
  transition: 0.3s;
}

.ezpro-job-card:hover {
  border-left-color: #ff7a00;
}

.ezpro-job-time {
  min-width: 80px;
  font-size: 14px;
  font-weight: 700;
  color: #ff7a00;
}

.ezpro-job-content {
  flex: 1;
}

.ezpro-job-content h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.ezpro-job-content p {
  margin-bottom: 5px;
  color: #666;
}

.ezpro-job-content span {
  color: #888;
  font-size: 14px;
}

.ezpro-job-right {
  text-align: right;
}

.ezpro-job-right strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

/* STATUS */

.ezpro-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ez-ps {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.inprogress {
  background: #e8f0ff;
  color: #2563eb;
}

.upcoming {
  background: #fff3db;
  color: #ff8a00;
}

.completed {
  background: #dff5e5;
  color: #2d8f4e;
}

/* ACTIONS */

.ezpro-job-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ezpro-job-actions a:first-child {
  border: 1px solid #ff7a00;
  color: #ff7a00;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.ezpro-job-actions a:last-child:not(.ezpro-btn-complete):not(.ezpro-btn-view-invoice) {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ff7a00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #ff7a00;
}

.ezpro-job-actions a:last-child:not(.ezpro-btn-complete):not(.ezpro-btn-view-invoice):hover {
  background: #FFF;
  color: #ff7a00;
  transition: 0.3s;
}

.ezpro-job-actions a:first-child:hover {
  background: #ff7a00;
  color: #FFF;
  transition: 0.3s;
}

/* BUTTON */

.ezpro-full-schedule {

  text-align: center;
  margin-top: 30px;
}

.ezpro-full-schedule a {
  display: flex;
  padding: 14px 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: 0.3s;
}

.ezpro-full-schedule a span {
  color: #ff7a00;
}

.ezpro-full-schedule a:hover {
  background: #fff4ed;
  transition: 0.3s;
  color: #ff7a00;
}

/* RIGHT SIDEBAR */

.ezpro-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* COMMON CARD */

.ezpro-earnings-card,
.ezpro-reviews-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
}

.ezpro-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.w-full {
  flex-wrap: wrap;
  gap: 10px;
}

.ezpro-card-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #010102;
}

.ezpro-card-head a {
  color: #ff6b00;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* EARNINGS */

.ezpro-earnings-total {
  background: #fff7f1;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.ezpro-earnings-total span {
  display: block;
  color: #666;
  margin-bottom: 8px;
}

.ezpro-earnings-total h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.earnings-dtl {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.ezpro-earnings-total p {
  margin: 0;
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
}

.ezpro-earnings-filter {
  border: 1px solid #e5e7eb;
  background: #fff;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  outline: none;
  width: 100%;
}

.ezpro-earnings-filter:focus {
  border-color: #ff6b00;
}

.ezpro-earnings-list {
  display: flex;
  flex-direction: column;
}

.ezpro-earning-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.ezpro-earning-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ezpro-earning-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ezpro-earning-left i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff4ed;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ezpro-earning-left span {
  font-size: 15px;
  color: #444;
}

/* REVIEWS */

.ezpro-review-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.ezpro-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ezpro-review-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.ezpro-review-content {
  flex: 1;
}

.ezpro-review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ezpro-review-top h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.ezpro-review-top span {
  font-size: 14px;
  font-weight: 700;
}

.ezpro-review-stars {
  margin-bottom: 8px;
}

.ezpro-review-stars i {
  color: #ffb800;
  font-size: 13px;
}

.ezpro-review-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */

@media(max-width:991px) {

  .ezpro-dashboard-section .row {
    flex-direction: column;
  }

  .ezpro-left,
  .ezpro-center,
  .ezpro-right {
    width: 100%;
  }

  .ezpro-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* ====================================
Service done
==================================== */

.ezjob-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media(max-width:991px) {

  .ezjob-content-grid {
    grid-template-columns: 1fr;
  }

}

.ezjob-details-page {
  padding: 40px 0;
}

.ezjob-back a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: .3s;
}

.ezjob-back {
  margin-bottom: 20px;
}

.ezjob-back a:hover {
  color: #ff7a00;
}

.ezjob-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.ezjob-top-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ezjob-form-card,
.ezjob-summary-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
}

@media(max-width:991px) {

  .ezjob-content-grid {
    grid-template-columns: 1fr;
  }

  .ezjob-top-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

@media (min-width:992px) {

  .ezdash-left {
    width: 22%;
    flex: 0 0 22%;
  }

  .ezjob-right {
    width: 78%;
    flex: 0 0 78%;
  }

}

.ezjob-top-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ezjob-service-img img {
  width: 72px;
  height: 72px;
  border: 1px solid gray;
  border-radius: 50%;
  object-fit: contain;
  background: #f4f4f4;
}

.ezjob-service-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ezjob-service-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #010102;
}

.ezjob-service-content p {
  margin-bottom: 5px;
}

.ezjob-time-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #cdcdcd;
  padding-left: 40px;
}

.etb-text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.ezjob-form-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 16px;
  padding: 30px;
}

.etb-icn {
  font-size: 20px;
}

.ezjob-time-wrap {
  display: flex;
  gap: 45px;
}

.ezjob-form-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ezjob-form-card>p {
  margin-bottom: 30px;
}

.ezjob-field {
  margin-bottom: 24px;
}

.ezjob-field label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}

.ezjob-field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  resize: none;
  outline: none;
}

.ezjob-field textarea:focus {
  border-color: #ff6b00;
}

.ezjob-price-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  height: 58px;
}

.ezjob-price-box span {
  padding: 0 18px;
  font-weight: 700;
}

.ezjob-price-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.ezjob-counter {
  text-align: right;
}

.ezjob-price-box button {
  width: 58px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.ezjob-upload-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ezjob-upload-box,
.ezjob-preview {
  height: 100px;
  border: 2px dashed #dbe2ea;
  border-radius: 12px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.ezjob-submit-btn span {
  background: #ff7a00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: table;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.ezjob-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ezjob-summary-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 20px;
}

.ezjob-summary-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #010102;
}

.ezjob-customer h4 {
  font-size: 20px;
}

.ezjob-earning-box {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  gap: 14px;
  margin: 24px 0;
}

.ezjob-customer {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 50px;
  margin-bottom: 15px;
}

.ezjob-earning-box i {
  color: #16a34a;
  font-size: 24px;
}

.ezjob-total-row strong {
  color: #16a34a;
  font-size: 18px;
}

.ezjob-total-row {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ezjob-payment {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  padding: 23px 0px;
  margin-bottom: 20px;
}

.ezjob-earning-box h4 {
  color: #16a34a;
  font-size: 24px;
  font-weight: 700;
}

.ezjob-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 30px;
}

.ezjob-cancel-btn {
  height: 52px;
  padding: 0 30px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 10px;
  transition: .3s;
}

.c-support {
  border: 1px solid #ff7a00;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.c-support:hover {
  background: #ff7a00;
  color: #FFF;
}

.ezjob-cancel-btn:hover {
  background: #fff4ed;
  color: #ff7a00;
}

.ezjob-submit-btn {
  height: 52px;
  padding: 0 28px;
  border: none;
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ezjob-submit-btn:hover {
  background: linear-gradient(to bottom, #fc4902, #fd7a00);
}

.ezjob-submit-btn:hover span {
  transform: translateX(6px);
}

.ezjob-upload-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* upload box */
.ezjob-upload-box {
  position: relative;
  height: 110px;
  border: 2px dashed #dbe2ea;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
}

/* plus state */
.ezjob-plus {
  font-size: 24px;
  font-weight: 700;
  color: #9ca3af;
}

.ezjob-text {
  font-size: 12px;
  color: #9ca3af;
}

/* image preview */
.ezjob-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* remove button */
.ezjob-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: none;
}

/* when active */
.ezjob-upload-box.active .ezjob-img {
  display: block;
}

.ezjob-upload-box.active .ezjob-plus,
.ezjob-upload-box.active .ezjob-text {
  display: none;
}

.ezjob-upload-box.active .ezjob-remove {
  display: block;
}

/* mobile */
@media(max-width:600px) {
  .ezjob-upload-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================
Customer Payment
==================================== */


.ezreview-grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 24px;
}

@media(max-width:991px) {

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

}

/* ORDER SUMMARY */

.ezreview-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px;
}

.ezreview-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
}

/* SERVICE INFO */

.ezorder-service {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.ezorder-service-img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid gray;
}

.ezorder-service-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ezorder-service-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.ezorder-service-info p {
  margin: 0 0 5px;
}


/* COMPLETED SERVICES */

.ezorder-services-box {
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 24px;
}

.ezorder-services-box h5 {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}

.ezorder-services-box textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
  resize: none;
  outline: none;
}

.ezorder-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.ezorder-service-row:last-child {
  margin-bottom: 0;
}

.ezorder-service-row div {
  color: #444;
  font-size: 15px;
}

.ezorder-service-row i {
  color: #22c55e;
  margin-right: 10px;
}

.ezorder-service-row strong {
  font-size: 15px;
  font-weight: 600;
}

/* TOTAL */

.ezorder-total-box {
  margin-top: 30px;
}

.ezorder-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.ezorder-total-row span {
  color: #444;
}

.ezorder-total-row strong {
  font-weight: 600;
}

.ezorder-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid #eee;
}

.ezorder-grand-total span {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.ezorder-grand-total strong {
  font-size: 26px;
  font-weight: 700;
  color: #16a34a;
}

/* PAYMENT CARD */

.ezpayment-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
}

.ezpayment-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #010102;
}

/* PAYMENT OPTIONS */

.ezpayment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ezpayment-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  cursor: pointer;
  transition: .25s;
  position: relative;
}

.ezpayment-option input {
  display: none;
}

.ezpayment-option.active {
  border: 2px solid #22c55e;
  background: #f8fff9;
}

.ezpayment-icon {
  width: 44px;
  text-align: center;
  font-size: 24px;
  color: #374151;
}

.ezpayment-info {
  flex: 1;
}

.ezpayment-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ezpayment-info span {
  font-size: 14px;
  color: #6b7280;
}

.ezpayment-check {
  color: #22c55e;
  font-size: 22px;
}

.ezpayment-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #cfcfcf;
  border-radius: 50%;
}

/* INFO BOX */

.ezpayment-info-bar {
  margin-top: 24px;
  background: #f3faf4;
  border: 1px solid #d8f0dd;
  border-radius: 10px;
  padding: 15px 18px;

  display: flex;
  gap: 12px;
  align-items: center;
}

.ezpayment-info-bar i {
  color: #22c55e;
}

.ezpayment-info-bar span {
  font-size: 14px;
  color: #555;
}

/* BUTTON */

.ezpayment-btn {
  width: 100%;
  margin-top: 22px;
  height: 58px;
  border: none;
  border-radius: 10px;

  background: linear-gradient(90deg,
      #ff6b00,
      #ff4d00);

  color: #fff;
  font-size: 22px;
  font-weight: 700;

  cursor: pointer;
}

.ezpayment-btn i {
  margin-right: 10px;
}

.ezpayment-terms {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

.ezpayment-terms a {
  color: #ff5a00;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT REVIEW CARD */

.ezreview-side-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 28px;
}

.ezreview-side-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #010102;
}

.ezreview-label {
  font-size: 15px;
  margin-bottom: 18px;
}

/* EXPERT BOX */

.ezreview-expert {
  border: 1px solid #ececec;
  border-radius: 14px;
  text-align: center;
  padding: 25px;
  margin-bottom: 25px;
}

.ezreview-expert img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.ezreview-expert h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.ezreview-expert span {
  color: #666;
}

.main-stars {
  margin: 20px 0;
}

.main-stars i {
  font-size: 32px;
  color: #ddd;
  margin: 0 5px;
}

.main-stars i.active {
  color: #ff6b00;
}

.ezreview-expert strong {
  font-size: 14px;
}

/* TEXTAREA */

.ezreview-field {
  margin-bottom: 30px;
}

.ezreview-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.ezreview-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  resize: none;
}

.ezreview-counter {
  text-align: right;
  margin-top: 8px;
  color: #777;
  font-size: 13px;
}

/* RATING ITEMS */

.ezrating-item {
  margin-bottom: 24px;
}

.ezrating-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.ezrating-stars {
  display: inline-flex;
  gap: 8px;
}

.ezreview-expert .ezrating-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  gap: 15px;
}

.ezrating-stars i {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
}

.ezrating-stars i.active {
  color: #ff6b00;
}

.ezrating-item small {
  margin-left: 15px;
  color: #666;
  font-size: 14px;
}

/* UPLOAD */

.ezreview-upload {
  margin-top: 25px;
}

.ezreview-upload label {
  font-weight: 600;
  margin-bottom: 15px;
}

.ezreview-gallery {
  display: flex;
  gap: 12px;
}

.ezreview-photo,
.ezreview-add {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.ezreview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ezreview-add {
  border: 2px dashed #d7d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ezreview-add input {
  display: none;
}

.ezreview-add i {
  font-size: 26px;
  color: #999;
}

/* BUTTON */

.ezreview-submit {
  width: 100%;
  height: 58px;
  margin-top: 30px;

  background: #fff;
  border: 2px solid #ff5a00;

  color: #ff5a00;
  font-size: 16px;
  font-weight: 700;

  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.ezreview-submit:hover {
  background: #ff5a00;
  color: #FFF;
}

.ezreview-back {
  margin-bottom: 20px;
}

.ezreview-back a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.ezreview-back i {
  margin-right: 8px;
}

.ezsecure-strip {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #f3fbf5;
  border-radius: 12px;

  padding: 14px 18px;
  margin-bottom: 24px;
}

.ezsecure-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f8ec;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #16a34a;
}

.ezsecure-strip strong {
  color: #16a34a;
  display: block;
}

.ezsecure-strip p {
  margin: 2px 0 0;
  color: #666;
  font-size: 14px;
}

.ezreview-photo {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.ezreview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ezreview-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.ezreview-add input {
  display: none;
}

.ezreview-photo {
  position: relative;
}

.ezreview-remove {
  position: absolute;
  top: 5px;
  right: 5px;

  width: 22px;
  height: 22px;

  background: #ff4d4f;
  color: #fff;

  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
}

.ezpayment-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
}

.ezpayment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ezpayment-header h4 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 700;
}

.ezpayment-header p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.ezpayment-status {
  background: #fff7ed;
  color: #f97316;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.ezpayment-summary {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.ezpayment-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ezpayment-row:last-child {
  margin-bottom: 0;
}

.ezpayment-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.ezpayment-total strong {
  color: #ff6b00;
  font-size: 20px;
}

.ezpayment-btn {
  width: 100%;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to bottom, #fd7a00, #fc4902);
  font-size: 18px;
  transition: .3s;
}

.ezpayment-btn:hover {
  background: linear-gradient(to bottom, #fc4902, #fd7a00);
}

.ezpayment-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
}































@media screen and (min-width: 1000px) {
  .hero-content p {
    font-size: 17px;
  }
}

@media (min-width:1451px) and (max-width:1700px) {
  .hero {
    background-position-x: right 0px;
    background-position-y: bottom;
  }

  .ez-about-hero {
    background-position-x: right 0px;
    background-position-y: bottom;
  }

  .ez-about-hero .card-1 {
    left: 120px;
  }

  .ez-about-hero .card-2 {
    right: -122px;
  }
}

@media (min-width:1352px) and (max-width:1450px) {
  .hero {
    background-size: 60%;
    background-position-x: right 0px;
    background-position-y: bottom;
  }

  .ez-about-hero {
    background-size: 45%;
    background-position-x: right 0px;
    background-position-y: bottom;
  }

  .ez-about-hero .card-1 {
    left: 60px;
  }

  .ez-about-hero .card-2 {
    right: -20px;
  }
}

@media (min-width:1350px) and (max-width:1375px) {
  .ez-about-hero {
    background-size: 37% !important;
    background-position-x: right 100px !important;
  }
}

@media (min-width:1200px) and (max-width:1375px) {
  .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 12px 0;
  }

  .hero {
    background-size: 55%;
    background-position-x: right 0px;
    padding: 45px 0;
    background-position-y: bottom;
  }

  .ez-about-hero {
    background-size: 40%;
    background-position-x: right 0px;
    padding: 45px 0;
    background-position-y: bottom;
  }

  .hero-features {
    margin-top: 20px;
  }

  .hero-features .feature-item {
    padding-right: 8px;
    gap: 5px;
    font-size: 13px;
  }

  .service-content {
    padding: 26px 0px 5px;
  }

  .service-meta span {
    font-size: 12px;
  }

  .service-meta strong {
    font-size: 12px;
  }

  .step-card p {
    font-size: 13px;
  }

  .how-works {
    padding: 22px;
  }

  .step-card p br {
    display: none;
  }

  .steps-grid {
    align-items: flex-start;
  }

  .step-card h4 {
    font-size: 14px;
  }

  .tab-width .col-lg-4 {
    width: 28%;
  }

  .tab-width .col-lg-2 {
    width: 22%;
  }

  .ezpro-card-head h3 {
    font-size: 18px;
  }

  .ezpro-header h2 {
    font-size: 22px;
  }

  .ezpro-stat-card h3 {
    font-size: 20px;
  }

}

@media (min-width:1000px) and (max-width:1050px) {
  .logo {
    width: 140px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
    margin: 12px 0;
  }

  .hero {
    background-size: 65%;
    background-position-x: right 0px;
    padding: 45px 0;
    background-position-y: bottom;
  }

  .ez-about-hero {
    background-size: 55%;
    background-position-x: right 0px;
    padding: 45px 0;
    background-position-y: bottom;
  }

  .ez-company-stat-box {
    padding-right: 20px;
  }

  .ez-company-stats {
    gap: 20px;
  }

  .ez-about-cta-content h2 {
    font-size: 24px;
  }

  .ez-about-cta-wrap {
    padding: 25px;
  }

  .hero-features {
    margin-top: 20px;
  }

  .hero-features .feature-item {
    padding-right: 8px;
    gap: 5px;
    font-size: 13px;
  }

  .hf-image {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .booking-box {
    margin-top: 18px;
  }

  .hero-image .info-card h3 {
    font-size: 25px;
  }

  .info-card p {
    font-size: 12px;
  }

  .info-card {
    padding: 15px;
  }

  .card-1 {
    top: 70px;
    left: -35px;
  }

  .card-2 {
    right: 0px;
  }

  .service-image img {
    height: 100px;
  }

  .service-content h3 {
    height: 42px;
  }

  .service-meta {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0px;
  }

  .service-content h3 {
    margin-bottom: 5px;
  }

  .offer-flex h3 {
    font-size: 28px;
  }

  .offer-flex h2 {
    font-size: 35px;
  }

  .offer-flex p {
    font-size: 16px;
  }

  .offer-banner {
    background-size: contain;
    background-position: center bottom;
  }

  .step-card {
    flex: auto;
    width: 46%;
  }

  .steps-grid .step-card:nth-child(2)::after {
    display: none;
  }

  .step-card p br {
    display: none;
  }

  .play-app {
    flex-wrap: nowrap;
  }

  .play-app h3 {
    font-size: 22px;
  }

  .mobile-image img {
    width: 133px;
  }

  .footer-links .half {
    margin-right: 10px;
    width: auto;
  }

  .preview-box {
    height: 158px;
  }

  .ezcust-user-card img {
    width: 50px;
    height: 50px;
  }

  .ezcust-user-card h4 {
    font-size: 15px;
  }

  .ezdash-left {
    width: 25%;
    flex: 0 0 25%;
  }

  .ezdash-center {
    width: 50%;
    flex: 0 0 50%;
  }

  .ezdash-right {
    width: 25%;
    flex: 0 0 25%;
  }

  .ezcust-topbar h2 {
    font-size: 22px;
  }

  .ezcust-book-btn {
    padding: 10px 15px;
  }

  .ezc-service-icon {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }

  .ezc-status {
    display: table;
    margin: 10px 0px 0px;
  }

  .ezdash-side-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .ezdash-action-list a {
    font-size: 14px;
  }

  .ezdash-side-card {
    padding: 15px;
  }

  .ezdash-overview-left i {
    width: 25px;
    height: 25px;
  }

  .ezdash-overview-left span {
    font-size: 13px;
  }

  .ezdash-overview-item strong {
    font-size: 12px;
  }

  .account {
    display: none;
  }

  .ezdash-promo-btn {
    font-size: 12px;
    padding: 11px 10px;
  }

  .ezpro-stat-icon {
    font-size: 10px;
    width: 25px;
    height: 25px;
    display: none;
  }

  .ezpro-stat-card h3 {
    font-size: 15px;
  }

  .ezpro-header h2 {
    font-size: 22px;
  }

  .ezpro-jobs-header h3 {
    font-size: 22px;
  }

  .ezpro-card-head h3 {
    font-size: 15px;
  }

  .ezpro-job-tabs {
    gap: 15px;
    font-size: 13px;
  }

  .ezpro-job-card {
    flex-wrap: wrap;
  }

  .ezpro-earnings-total h2 {
    font-size: 18px;
  }

  .ezpro-earnings-total p {
    font-size: 11px;
  }

  .ezpro-earning-left span {
    font-size: 13px;
  }

  .ezpro-card-head {
    flex-wrap: wrap;
  }

  .ezpro-review-top h4 {
    font-size: 14px;
  }

  .ezpro-review-top {
    flex-direction: column;
  }

  .ezpro-card-head a {
    font-size: 12px;
  }

  .ezjob-right {
    width: 75%;
    flex: 0 0 75%;
  }

  .ezjob-upload-box {
    height: 90px;
  }

  .ezjob-actions {
    font-size: 12px;
  }

  .ezorder-service-img {
    height: 65px;
  }

}

@media (min-width:768px) and (max-width:1000px) {
  .hero {
    background-size: 50%;
    background-position-x: right;
    background-position-y: top 5px;
    padding: 30px 0px 0px;
  }

  .ez-about-hero {
    background-size: 50%;
    background-position-x: right;
    background-position-y: top 5px;
    padding: 30px 0px 0px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .ez-about-hero h1 {
    font-size: 28px !important;
    line-height: 35px !important;
  }

  .ez-company-section {
    padding: 40px 0;
  }

  .ez-impact-item h3 {
    font-size: 26px;
  }

  .ez-impact-item i {
    font-size: 25px;
  }

  .booking-box {
    margin-top: 76px;
  }

  .info-card {
    padding: 10px;
  }

  .ez-impact-wrap-outer {
    padding: 24px;
  }

  .card-1 {
    top: 200px;
    right: 288px;
    left: auto;
  }

  .card-2 {
    top: 325px;
    right: 12px;
    bottom: auto;
  }

  .fa-icon {
    font-size: 12px;
  }

  .hero-image .info-card h3 {
    font-size: 25px;
  }

  .info-card p {
    font-size: 12px;
  }

  .hero-image {
    position: static;
  }

  .hs-top {
    display: none;
  }

  .wrapper .menu-icon {
    position: absolute;
    top: -108px;
    right: 0;
    color: #FFF;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-flex h2 {
    font-size: 30px;
  }

  .offer-flex h3 {
    font-size: 28px;
  }

  .offer-banner {
    background: #090a0b url("../images/coupen.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 145px;
  }

  .ez-about-cta-wrap {
    background: #090a0b url("../images/coupen.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 145px;
  }

  .offer-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ez-about-cta-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .code-box {
    display: flex;
    align-items: center;
  }

  .code-text {
    border-right: 1px dashed #FF7A00;
    border-bottom: none;
  }

  .why-card h4 {
    font-size: 12px;
  }

  .why-card {
    padding: 5px 15px;
  }

  .step-card {
    flex: auto;
    width: 46%;
  }

  .steps-grid .step-card:nth-child(2)::after {
    display: none;
  }

  .play-app {
    gap: 20px;
    padding-bottom: 20px;
  }

  .half {
    width: 30%;
  }

  .tab-width .col-lg-4 {
    width: 70%;
  }

  .tab-width .col-lg-2 {
    width: 30%;
  }

  .right-box {
    width: 100%;
    justify-content: space-between;
  }

  .bottom-bar {
    padding: 0px;
  }

  .hero-content p {
    line-height: 1.4;
    max-width: 375px;
    font-size: 17px;
  }

  .ez-contact-features {
    margin-top: 102px;
  }

  .ez-contact-feature-item span {
    line-height: 1.5;
  }

  .account {
    display: none;
  }

  .ezcust-topbar {
    margin-top: 20px;
  }

  .ezdash-promo-card {
    background-position-x: right;
    padding: 35px 28px 80px;
  }

  .ezpro-layout {
    flex-direction: column;
  }

  .ezpro-content {
    grid-template-columns: 1fr;
  }

  .ezcust-topbar h2 {
    font-size: 24px;
  }

  .ezpro-header h2 {
    font-size: 24px;
  }

  .ezpro-stat-card h3 {
    font-size: 22px;
  }

  .ezpro-jobs-header h3 {
    font-size: 22px;
  }

  .ezjob-back {
    margin: 10px 0px;
  }

  .ezreview-back {
    margin: 10px 0px;
  }

}

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

  .wrapper .menu-icon {
    position: absolute;
    top: -104px;
    right: 0;
    color: #FFF;
  }

  .hs-top {
    display: none;
  }

  .right-box {
    width: 100%;
    justify-content: space-between;
  }

  .nav-content .links li a:hover,
  .nav-content .links li label:hover {
    color: #ff7a00;
  }

  .nav-content .links ul li a {
    color: #FFF !important;
  }

  .nav-content .links li a,
  .nav-content .links li label {
    border-bottom: 1px solid #FFF;
  }

  .nav-content .links li a.active {
    border-bottom: 1px solid #ff7a00;
  }

  .nav-content .links ul li a:hover {
    border-bottom: 1px solid #ff7a00;
  }

  .nav-content .links li a:hover,
  .nav-content .links li label:hover {
    border-bottom: 1px solid #ff7a00;
  }

  .bottom-bar {
    padding: 0px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .booking-box {
    margin-top: 58px;
  }

  .info-card {
    padding: 10px;
  }

  .card-1 {
    top: 200px;
    right: 288px;
    left: auto;
  }

  .card-2 {
    top: 325px;
    right: 12px;
    bottom: auto;
  }

  .fa-icon {
    font-size: 12px;
  }

  .hero-image .info-card h3 {
    font-size: 25px;
  }

  .info-card p {
    font-size: 12px;
  }

  .hero-image {
    position: static;
  }

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

  .offer-flex h2 {
    font-size: 30px;
  }

  .offer-flex h3 {
    font-size: 28px;
  }

  .offer-banner {
    background: #090a0b url("../images/coupen.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 145px;
  }

  .code-box {
    display: flex;
    align-items: center;
  }

  .code-text {
    border-right: 1px dashed #FF7A00;
    border-bottom: none;
  }

  .why-card h4 {
    font-size: 12px;
  }

  .why-card {
    padding: 5px 15px;
  }

  .step-card {
    flex: auto;
    width: 46%;
  }

  .steps-grid .step-card:nth-child(2)::after {
    display: none;
  }

  .play-app {
    gap: 20px;
    padding-bottom: 20px;
  }

  .account {
    display: none;
  }

  .ezjob-back {
    margin: 10px 0px;
  }

  .ezreview-back {
    margin: 10px 0px;
  }

}


@media (max-width: 750px) {

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .search-box {
    width: 100%;
  }

  .search-input-area {
    width: 100%;
  }

  .wrapper .menu-icon {
    position: absolute;
    top: -109px;
    right: 0;
    color: #FFF;
  }

  .search-box button {
    width: 60px;
    right: 0;
  }

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

  .hero {
    background-position-x: center;
    padding-bottom: 0;
  }

  .ez-about-hero {
    background-position-x: center;
    padding-bottom: 0;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 43px;
    margin: 8px 0px;
  }

  .hero-content {
    margin-top: 256px;
  }

  .booking-grid button {
    height: 45px;
  }

  .info-card {
    padding: 10px;
  }

  .card-1 {
    top: 200px;
    left: 25px;
  }

  .card-2 {
    top: 370px;
    right: 12px;
    bottom: auto;
  }

  .fa-icon {
    font-size: 12px;
  }

  .hero-image .info-card h3 {
    font-size: 25px;
  }

  .info-card p {
    font-size: 12px;
  }

  .hero-image {
    position: static;
  }

  .hero-features .feature-item {
    width: 50%;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .hero-features .feature-item:nth-child(2)::after {
    display: none;
  }

  .hero-features {
    gap: 0;
  }

  .category-card {
    padding: 10px;
  }

  .category-card span {
    font-size: 13px;
  }

  .category-card img {
    width: 45px !important;
  }

  .section-title h2,
  .center-title {
    font-size: 35px;
  }

  .section-title {
    flex-wrap: wrap;
  }

  .category-top h2 {
    font-size: 35px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /*.services-grid{grid-template-columns: 1fr;}*/
  .offer-flex h2 {
    font-size: 30px;
  }

  .offer-flex h3 {
    font-size: 28px;
  }

  .offer-banner {
    background: #090a0b url("../images/coupen.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 145px;
  }

  .code-box {
    display: flex;
    align-items: center;
  }

  .code-text {
    border-right: 1px dashed #FF7A00;
    border-bottom: none;
  }

  .why-grid {
    gap: 16px;
    justify-content: center;
  }

  .why-card {
    gap: 10px;
    width: 45%;
    padding: 5px 7px;
    justify-content: start;
  }

  .why-grid .why-card:nth-child(2)::after {
    display: none;
  }

  .why-grid .why-card:nth-child(4)::after {
    display: none;
  }

  .section-space {
    padding: 30px 0;
  }

  .step-card::after {
    content: none;
  }

  .step-card {
    padding-right: 0px;
  }

  .step-card p br {
    display: none;
  }

  .left-sec {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .play-app h3 {
    font-size: 28px;
  }

  .store-btn h3 {
    font-size: 16px;
  }

  .right-sec {
    gap: 10px;
  }

  .store-btn {
    min-width: 146px;
  }

  .play-app {
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-grid {
    gap: 20px;
  }

  .service-meta {
    flex-wrap: wrap;
    gap: 0;
    margin-top: 0px;
  }

  .service-content h3 {
    margin-bottom: 5px;
  }

  .search-box input {
    padding: 8px 12px 9px 12px;
  }

  .search-category {
    width: 154px;
  }

  .preview-box {
    height: auto;
    max-height: 314px;
  }

  .category-select-wrapper {
    flex-direction: column;
  }

  .category-select-wrapper .category-add-btn {
    width: 100%;
  }

  .category-select-wrapper .multi-select-box {
    flex: auto;
    width: 100%;
    height: auto;
    min-height: 55px;
  }

  .ez-company-content h2 {
    font-size: 35px;
  }

  .submit-btn {
    width: 100%;
  }

  .clear-btn {
    width: 100%;
  }

  .category-top {
    flex-direction: column;
  }

  .category-top h2 {
    width: 100%;
  }

  .category-top a {
    width: 100%;
  }

  .category-top .category-search {
    width: 100%;
  }

  .category-slider .owl-nav {
    display: none;
  }

  .ez-company-stats {
    justify-content: center;
    gap: 20px;
  }

  .ez-company-stat-box {
    width: 43%;
  }

  .ez-company-stat-box:nth-child(2)::after {
    display: none;
  }

  .ez-about-title-center h2 {
    font-size: 35px;
  }

  .ez-why-section {
    padding: 40px 0;
  }

  .ez-company-section {
    padding: 40px 0;
  }

  .ez-about-content {
    margin-bottom: 0px;
  }

  .ez-about-btns {
    flex-direction: column;
  }

  .ez-section-head {
    flex-direction: column;
  }

  .ez-section-head h2 {
    font-size: 35px;
  }

  .ez-impact-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ez-impact-item h3 {
    font-size: 30px;
  }

  .ez-about-cta-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ez-about-cta-wrap {
    background: #090a0b url("../images/coupen.png");
    background-size: auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 145px;
  }

  .ez-contact-form-section {
    padding: 40px 0px;
  }

  .ez-contact-form-box h2,
  .ez-contact-info-wrap h2 {
    font-size: 35px;
  }

  .ez-contact-map-card {
    display: none;
  }

  .ez-contact-faq-title h2 {
    font-size: 35px;
  }

  .ez-contact-faq-title {
    flex-wrap: wrap;
  }

  .ez-contact-map-section {
    padding-bottom: 40px;
  }

  .ez-contact-faq-section {
    padding-bottom: 40px;
  }

  .ez-contact-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ezcust-topbar {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .ezc-status {
    margin-left: 0;
    display: table;
    margin-top: 7px;
  }

  .ezc-booking-actions {
    margin-left: 68px;
  }

  .ezdash-promo-card {
    background-size: 80%;
  }

  .ezpro-layout {
    flex-direction: column;
  }

  .ezpro-content {
    grid-template-columns: 1fr;
  }

  .ezpro-job-tabs li {
    width: 44%;
  }

  .ezpro-job-tabs {
    text-align: center;
    flex-wrap: wrap;
  }

  .ezcust-topbar h2 {
    font-size: 24px;
  }

  .ezpro-header h2 {
    font-size: 24px;
  }

  .ezpro-stat-card h3 {
    font-size: 22px;
  }

  .ezpro-jobs-header h3 {
    font-size: 22px;
  }

  .ezpro-job-card {
    flex-direction: column;
  }

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

  .ezjob-time-box {
    padding-left: 10px;
  }

  .ezjob-time-wrap {
    gap: 25px
  }

  .ezjob-actions {
    flex-direction: column;
  }

  .ezjob-form-card {
    padding: 20px 12px;
  }

}

@media (min-width:740px) and (max-width:749px) {
  .wrapper .menu-icon {
    top: -116px;
  }

  .card-1 {
    right: auto;
  }

  .hero {
    background-size: 53%;
  }

  .ez-about-hero {
    background-size: 53%;
  }

  .card-1 {
    left: 165px;
  }

  .card-2 {
    top: 350px;
    right: 200px;
    bottom: auto;
  }
}

/* Partner registration UX */
.partner-form-alert {
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
}

.partner-form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.field-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.form-group .input-box.is-invalid-wrap,
.input-box input.is-invalid,
.input-box textarea.is-invalid,
.input-box select.is-invalid,
.multi-select-box.is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

#partnerToastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.partner-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  font-size: 14px;
}

.partner-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.partner-toast-success {
  border-left: 4px solid #16a34a;
  color: #166534;
}

.partner-toast-error {
  border-left: 4px solid #dc2626;
  color: #991b1b;
}

#partnerSuccessOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  z-index: 10060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#partnerSuccessOverlay.show {
  display: flex;
}

.partner-success-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.partner-success-card i.main-icon {
  font-size: 56px;
  color: #16a34a;
  margin-bottom: 12px;
}

.partner-success-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.partner-success-card p {
  color: #64748b;
  margin-bottom: 0;
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-help-text {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
}