body {
  /* background: #f5f6fa; */
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f5f6fa;
  margin-bottom: 40px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.city {
  font-size: 14px;
  color: #7b2cbf;
}

/* Search */
.search-box {
  margin: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.search-box input {
  border: none;
  width: 100%;
  outline: none;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0;
  margin-top: 50px;
  color: #6c2bd9;
}

/* Category Grid (IMPORTANT) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 15px;
}

.category-item {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Badge */
.badge {
  position: absolute;
  top: -8px;
  left: 10px;
  background: #2ecc71;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 6px;
}

/* Icon */
.category-item img {
  width: 100%;
  margin-bottom: 8px;
}

.category-item p {
  font-size: 13px;
  margin: 0;
}

/* Banner */
.banner {
  margin: 15px;
  border-radius: 16px;
  overflow: hidden;
}

.banner img {
  width: 100%;
}

.border {
  border: 1px solid #dee2e6 !important;
}

/* Bottom Nav (Mobile UX) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav div {
  text-align: center;
  font-size: 12px;
}



/* Most Booked Section */
.most-booked {
  padding: 10px 0;
}

/* Card */
.booked-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Left */
.booked-info h6 {
  margin: 0;
  font-size: 14px;
}

.booked-info p {
  font-size: 12px;
  color: #777;
  margin: 5px 0;
}

/* Right */
.booked-action {
  text-align: center;
}

.booked-action img {
  width: 60px;
  border-radius: 10px;
}

.booked-action button {
  margin-top: 5px;
  border: 1px solid #6c2bd9;
  background: #fff;
  color: #6c2bd9;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
}


.container-custom {
  max-width: 1200px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-tile {
  background: #f1f2f6;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #000;
  position: relative;
  transition: 0.3s;
}

.service-tile:hover {
  background: #e9e9f5;
}

.service-tile img {
  width: 55px;
  margin-bottom: 6px;
}

.service-tile p {
  font-size: 13px;
  margin: 0;
}

.hero-banner img {
  width: 100%;
  border-radius: 16px;
}

@media(max-width: 768px) {

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-banner {
    display: none;
  }

}

/* Container */
.container-custom {
  max-width: 1200px;
  margin: auto;
}

/* Search */
.search-box {
  background: #f1f2f6;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.search-box input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
}

/* Section heading */
.services-head {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.services-head h6 {
  margin: 0 10px;
  color: #6c2bd9;
}

.services-head .line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-tile {
  background: #f1f2f6;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  position: relative;
  text-decoration: none;
  color: #000;
}

.service-tile img {
  width: 55px;
  margin-bottom: 5px;
}

.service-tile p {
  font-size: 13px;
  margin: 0;
}

/* Badge */
.badge-green {
  position: absolute;
  top: -6px;
  left: 8px;
  background: #2ecc71;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 6px;
}

/* Hero */
.hero-banner img {
  width: 100%;
  border-radius: 16px;
}

/* Most Booked */
.purple {
  color: #6c2bd9;
}

.subtext {
  font-size: 12px;
  color: #777;
}

.booked-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.booked-left h6 {
  margin: 0;
  font-size: 14px;
}

.booked-left p {
  font-size: 12px;
  color: #777;
}

.booked-right {
  text-align: center;
}

.booked-right img {
  width: 65px;
  border-radius: 10px;
}

.booked-right button {
  border: 1px solid #6c2bd9;
  color: #6c2bd9;
  background: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  margin-top: 5px;
}

/* Price */
.price .new {
  font-weight: bold;
}

.price .old {
  text-decoration: line-through;
  font-size: 12px;
  margin-left: 5px;
  color: #999;
}

/* Mobile */
@media(max-width:768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-banner {
    display: none;
  }
}

/* service page */
/* List container */
.service-list {
  margin-top: 10px;
}

/* Card Row */
.service-card-row {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Left */
.service-left h6 {
  margin: 0;
  font-size: 15px;
}

.service-left p {
  font-size: 12px;
  color: #777;
  margin: 5px 0;
}

/* Right */
.service-right {
  text-align: center;
}

.service-right img {
  width: 70px;
  border-radius: 10px;
}

.service-right button {
  margin-top: 5px;
  border: 1px solid #6c2bd9;
  color: #6c2bd9;
  background: #fff;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
}

/* Price */
.price .new {
  font-weight: bold;
}

.price .old {
  text-decoration: line-through;
  margin-left: 5px;
  font-size: 12px;
}

.price .tag {
  font-size: 11px;
  margin-left: 6px;
  color: #ff9800;
}



/* Top */
.topbar-service {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

/* Hero */
.hero-service img {
  width: 100%;
  border-radius: 12px;
}

/* Header */
.service-header {
  margin-top: 10px;
}

.service-header .mini {
  font-size: 12px;
}

.badge-time {
  background: #d1f5e0;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 10px;
}

/* Stats */
.stats {
  font-size: 13px;
  margin-top: 5px;
}

/* Trust */
.trust-box {
  border: 1px solid #f0c36d;
  background: #fff7e6;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 0;
}

/* Tabs */
.tabs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin: 10px 0;
}

.tabs span {
  background: #eee;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.tabs .active {
  background: #6c2bd9;
  color: #fff;
}

/* AMC */
.amc-banner img {
  width: 100%;
  border-radius: 12px;
  margin: 10px 0;
}


/* Layout */
.service-hero img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* Service List */
.service-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Left */
.service-left h6 {
  margin: 0;
  font-size: 15px;
}

.service-left p {
  font-size: 12px;
  color: #777;
  margin: 5px 0;
}

/* Right */
.service-right {
  text-align: center;
}

.service-right img {
  width: 65px;
  border-radius: 10px;
}

.service-right button {
  margin-top: 6px;
  border: 1px solid #6c2bd9;
  color: #6c2bd9;
  background: #fff;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
}

/* CTA Banner */
.cta-banner {
  margin: 10px 0;
}

.cta-banner img {
  width: 100%;
  border-radius: 14px;
}

/* Price */
.price .new {
  font-weight: bold;
}

.price .old {
  text-decoration: line-through;
  margin-left: 5px;
  font-size: 12px;
}

.price .tag {
  font-size: 11px;
  margin-left: 6px;
  color: #ff9800;
}

/* Desktop balance */
@media(min-width:992px) {
  .container-custom {
    max-width: 1100px;
  }
}

/* Mobile */
@media(max-width:768px) {
  .service-hero {
    margin-bottom: 15px;
  }
}

.service-hero {
  position: sticky;
  top: 50px;
}

@media screen and (width > 800px) {
  .service-hero {
    position: sticky;
    top: 100px;
  }
}


/* Topbar container */
.service-topbar {
  position: absolute;
  /* top: 10px 15px; */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  z-index: 10;
  margin-bottom: 50px;
  background-color: rgb(248 249 250) !important;
  background: #f5f6fa;
  ;
}

/* Left */
.back-btn {
  background: #ede7f6;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* Right */
.topbar-right {
  display: flex;
  gap: 10px;
}

.icon-btn {
  background: #ede7f6;
  padding: 8px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
}

.servicerow {
  padding-top: 125px;
}


.success-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: auto;
}

/* Icon */
.success-icon {
  width: 60px;
  height: 60px;
  background: #2ecc71;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  border-radius: 50%;
  margin: auto;
}

/* Subtext */
.sub {
  color: #777;
  font-size: 14px;
}

/* Order box */
.order-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  text-align: left;
}

/* Row */
.row-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* Status */
.paid {
  color: #2ecc71;
}

/* Buttons */
.success-actions {
  margin-top: 20px;
}

.btn-primary {
  display: block;
  background: #6c2bd9;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 10px;
}

.btn-outline {
  display: block;
  border: 1px solid #6c2bd9;
  color: #6c2bd9;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
}

.success-card {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {opacity:0; transform: translateY(10px);}
  to {opacity:1; transform: translateY(0);}
}