:root {
  /* Brand Colors (Matching your Football Academy theme) */
  --primary-blue: #4f46e5;
  --dark-blue: #2e24ee;
  --accent-blue: #007bff;
  --accent-purple: #9b59b6;

  /* Text & Neutral Colors */
  --text-main: #2c3e50;
  --text-muted: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;

  /* Functional Defaults */
  --transition-fast: all 0.3s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.66, 0, 0, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-y: scroll;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);

  /* Layout stability */
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  /* Text rendering improvements */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-white);

  /* Layout stability */
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  /* Text rendering improvements */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main,
.main-wrapper {
  flex: 1 0 auto;
}


p {
  color: #373636;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Universal Border Box (Ensures padding doesn't break widths) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links Global Styling */
a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--dark-green);
}

/* Responsive Image Default */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Custom Scrollbar (Optional - matches modern web apps) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}


/*=============== 
LOADER ANIMATION 
================*/

/* 1. Preloader Overlay - Centering & Background */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* White background as requested */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensures it stays on top of all elements */
}

/* 2. Your Spinner Animation */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat radial-gradient(farthest-side, #4e0087 92%, #0000);
  background:
    var(--c) 50% 0,
    var(--c) 50% 100%,
    var(--c) 100% 50%,
    var(--c) 0 50%;
  background-size: 12px 12px;
  animation: l12 1s infinite;
}

.loader::before {
  margin: 4px;
  filter: hue-rotate(45deg);
  background-size: 8px 8px;
  animation-timing-function: linear;
}

@keyframes l12 {
  100% {
    transform: rotate(.5turn)
  }
}


/*================== 
SECTION TITILE CSS 
===================*/
section {
  padding: 80px 10px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  background-color: #e0e7ff;
  color: #572cbf;
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 15px;
  border-radius: 20px;
}

.section-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--primary-color-dark);
}

@media(max-width:768px) {
  section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 38px;
  }

  .section-subtitle {
    font-size: 12px;
  }
}

@media(max-width:576px) {
  section {
    padding: 50px 10px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 10px;
  }
}

/* .hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
} */

.top-bar {
  padding: .5rem 0;
  background: #eee;
}

.top-bar a {
  color: #666666;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  width: 100%;
  padding: .8rem;
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.site-navbar .toggle-button {
  position: relative;
  right: 0px;
}

.site-navbar .site-logo {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0;
  margin: 0;
  padding: 0;
  z-index: 3;
}

@media (max-width: 991.98px) {
  .site-navbar .site-logo {
    float: left;
    position: relative;
  }
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid white !important;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active {
  color: #007bff !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
  margin-left: 5px;
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
  padding: 5px 10px;
  color: #4b5563 !important;
  display: inline-block;
  text-decoration: none !important;
  transition: all .3s ease;
}

/* .site-navbar .site-navigation .site-menu>li>a:hover {
  color: #ffffff !important;
  background-color: #4e0087;
  border-radius: 50px;
} */

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
  position: relative;
  padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #007bff;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  -o-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  display: none;
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  -o-transition: 0s all;
  transition: 0s all;
  color: #000 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
  color: #007bff !important;
  background: #f8f9fa;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
  padding: 9px 20px;
  display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
  content: "\e315";
  right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
  left: 100%;
  top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
  background: #f8f9fa;
  color: #ced4da;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
  color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #ced4da;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li .nav-link.active {
  color: #007bff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
  padding-left: 15px !important;
}

.sticky-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper .site-navbar {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.sticky-wrapper .site-navbar {
  background: #fff;
  border-bottom: 1px solid #e2e1e1;
}

.sticky-wrapper .site-navbar .site-logo a {
  color: #fff;
}

.sticky-wrapper .site-navbar ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.sticky-wrapper .site-navbar ul li a.active {
  color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar {
  background: #fff;
  -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: #007bff;
}

.sticky-wrapper.is-sticky .site-navbar ul li a {
  color: #4b5563 !important;
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
  color: #007bff !important;
}

.sticky-wrapper .shrink {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

@media (max-width: 991.98px) {
  .sticky-wrapper .shrink {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}



/* Button Css */
.btn-cart {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(78, 69, 227, 1) 0%, rgba(67, 56, 203, 1) 100%);
  color: var(--bg-light);
  padding: 7px 20px;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 0px 6px;
  border-radius: 50%;
}

.btn-cart-mobile {
  display: none;
}

.mobile-cart-count {
  position: absolute;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 0px 6px;
  border-radius: 50%;
}

.btn-login-mobile {
  display: none;
}

.btn-cart:hover {
  background: linear-gradient(180deg, rgba(78, 69, 227, 1) 0%, rgba(67, 56, 203, 1) 100%);
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(116, 126, 236, 0.75);
  transform: translateY(-6px);
}

.btn-hover.color {
  background-image: linear-gradient(to right, #ef478a, #ed7143, #f7186a, #FBB03B);

}

.btn-hover {
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
  transform: translateY(-6px);
}

@media (max-width:768px) {
  .btn-cart {
    display: none;
  }

  .btn-cart-mobile {
    display: block;
    padding: 7px 11px;
  }

  .btn-login {
    display: none;
  }

  .btn-login-mobile {
    display: block;
    padding: 7px 11px;
  }
}

/*====================
 SEARCH BOX INPUT CSS 
 ====================*/

/* Search Box */
.search-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

/* GIF Position */
.search-gif {
  position: absolute;
  right: -90px;
  /* move outside input to right */
  bottom: -20px;
  /* move slightly down */
  width: 80px;
  /* small size */
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.search-box input {
  border-radius: 50px !important;
  padding: 18px 160px 18px 25px !important;
  border: 1px solid #ddd !important;
  font-size: 16px !important;
  box-shadow: 0 25px 50px -12px #00000040;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border-radius: 50px;
  padding: 0 30px;
  border: none;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
}

.search-btn:hover {
  color: #bab8bb;
}


@media (max-width: 768px) {
  .search-box input {
    padding: 15px 120px 15px 20px !important;
  }

  .search-btn {
    padding: 0 20px;
    font-size: 14px;
  }
}

/*================= 
Hero sectio css 
==================*/

.hero-section {
  background: linear-gradient(to bottom right in oklab, #4f46e5 0%, #4338ca 50%, oklch(43.8% 0.218 303.724) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  /* Enable flex */
  align-items: center;
  /* Vertical center */
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  position: relative;
  /* Keeps above overlay */
  padding: 30px;
  width: 100%;
}

.hero-badge p {
  display: inline-block;
  font-size: 13px;
  background-color: #ffffff1a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 48px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18;
  color: #fff;
  margin-bottom: 30px;
}

.popular-tags {
  margin-top: 20px;
}

/* Label */
.popular-label {
  font-size: 14px;
  color: #cfd8dc;
  font-weight: 500;
}

/* Pills */
.tag-pill {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Hover */
.tag-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width:768px) {
  .hero-content {
    padding: 20px;
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width:576px) {
  .hero-content {
    padding: 10px;
  }

  .hero-title {
    font-size: 30px;
  }

  .tag-pill {
    font-size: 10px;
    padding: 4px 9px;
  }
}

/*======================= 
Product Category Section 
========================*/

/* Product Section Css */

.services-products {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.service-item {
  /* background: #eaeaea; */
  text-align: center;
  border: 1px dotted #f8b825;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

.service-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Arrow Card */
.arrow-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 30px;
  color: #f4b400;
}

.arrow-card span {
  font-size: 46px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .arrow-card span {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .service-item {
    padding: 5px;
  }

  .service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .service-item h6 {
    font-size: 10px;
  }

  .arrow-card span {
    font-size: 34px;
  }
}

/*==================== 
service carousel css 
======================*/


.offers-carousel {
  position: relative;
}

.offers-carousel .owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.offers-carousel .owl-nav button {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 20px !important;
  color: #000 !important;
  transition: 0.3s;
}

/* Left button */
.offers-carousel .owl-prev {
  left: -25px;
  /* adjust if needed */
}

/* Right button */
.offers-carousel .owl-next {
  right: -25px;
  /* adjust if needed */
}

.offers-carousel .owl-nav button:hover {
  background: #000 !important;
  color: #fff !important;
}

/* Hide dots on desktop */
.offers-carousel .owl-dots {
  display: none;
}

/* Mobile view */
@media (max-width: 767px) {

  /* Hide arrows */
  .offers-carousel .owl-nav {
    display: none !important;
  }

  /* Show dots */
  .offers-carousel .owl-dots {
    display: block;
    text-align: center;
    margin-top: 15px;
  }

  .offers-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    display: block;
  }

  .offers-carousel .owl-dots .owl-dot.active span {
    background: #000;
    width: 20px;
    border-radius: 10px;
  }
}

/*=================
 BANNER SECTION CSS 
 ================*/

.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/*======================= 
HOME SERVICE SETION CSS 
========================*/
.home-services-section {
  background: #ffffff;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 25px;
}

/* Positioning */
.home-service-card.large {
  grid-row: span 2;
}

/* Card */
.home-service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* cursor: pointer; */
}

.home-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Overlay */
.home-service-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
  color: #fff;
}

.home-service-content h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.home-service-content p {
  margin: 5px 0 0;
  font-size: 12px;
  opacity: 0.9;
  color: #fff;
}

/* Arrow hidden by default */
.home-service-arrow {
  font-size: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s ease;
}

/* Hover Effects */
.home-service-card:hover img {
  transform: scale(1.08);
}

.home-service-card:hover .home-service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .home-services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .home-service-card.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card.large {
    grid-column: span 1;
  }

  .home-service-card {
    height: 250px;
  }
}



/*===================
  Service section css 
  ===================*/

.services-section {
  background: #ffffff;
  /* remove if not needed */
}

.service-card {
  background: #f3f3f3;
  border-radius: 20px;
  border: 1px solid #d5d5d5;
  padding: 15px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
   box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.service-img {
  border-radius: 18px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 15px 0px;
}

.service-title {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 15px;
}

.service-price {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
}

.service-desc {
  font-size: 13px;
  margin-bottom: 10px 0 10px;
  color: #444;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #784ba0, #ff3cac);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 9px;
  margin-bottom: 10px;
}

.service-badge .dot {
  width: 5px;
  height: 5px;
  background: #ff0057;
  border-radius: 50%;
}

.book-btn {
  display: block;
  /* makes it full width */
  text-align: center;
  padding: 10px;
  /* background: linear-gradient(45deg, #7b2ff7, #f107a3); */
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  text-decoration: none;
}

.book-btn:hover {
  background: #6c6b6b;
  color: #fff;
  cursor: pointer;
}


/*========================
 HOW WE WORK SECTION CSS 
 ========================*/

.how-it-works {
  background: #7904cd;
  color: #fff;
}

.section-tag {
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.8;
}

.how-works-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.section-desc {
  font-size: 15px;
  opacity: 0.9;
  color: #fff;
}

.counter-wrapper h3 {
  font-size: 30px;
  font-weight: 600;
}

.counter-wrapper p {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.8;
  color: #fff;
}

.btn-recovery {
  background: #c9965c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-recovery:hover {
  background: #b5824b;
  color: #fff;
}

.step-card {
  background: #f4f2ef;
  color: #333;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0;
}

.step-number {
  background: #c9965c;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .how-works-title {
    font-size: 30px;
  }

  .counter-wrapper {
    text-align: left;
  }
}


/*====================== 
TESTIMONIAL SECTION CSS 
=======================*/

.testimonial-section {
  background: #ffffff;
  padding: 100px 0;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

/* .testimonial-card:hover {
  transform: translateY(-10px);
} */

.stars {
  color: #f4b400;
  margin-bottom: 20px;
  font-size: 18px;
}

.testimonial-card p {
  color: #4f4f4f;
  margin-bottom: 30px;
  font-size: 14px;
}

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

.user h6 {
  margin: 0;
  font-weight: 600;
}

.user span {
  font-size: 14px;
  color: #888;
}

/* Owl Dots */
.owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px;
  background: #ccc !important;
  display: block;
  border-radius: 50%;
}

.owl-dot.active span {
  width: 30px !important;
  background: #000 !important;
  border-radius: 20px;
}


/*===================
 FOOTER SECTION CSS 
 ===================*/

.main-footer {
  position: relative;
  background: radial-gradient(circle at top left, #0a0f3d, #020014);
  padding: 70px 0 0;
  overflow: hidden;
}

/* Background Image Layer */
.main-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/footer-bg.png') center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Content above background */
.main-footer>.container {
  position: relative;
  z-index: 1;
}

/* Brand */
.footer-brand .logo {
  font-size: 42px;
  margin-bottom: 25px;
}

.platform {
  margin-bottom: 18px;
}

.platform h6 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.platform p {
  font-size: 13px;
  color: #a9adc1;
  margin: 2px 0 0;
}

/* Titles */
.footer-title {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
  color: #fff;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #c7c9e0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Text */
.footer-text {
  color: #c7c9e0;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  padding: 10px 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.6); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #a9adc1;
}

/* Social */
.social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.502);
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin-left: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 20px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}


/*========================
 SERVICE BOX SECTION CSS 
 ========================*/

.categoryInput {
  box-shadow: none !important;
}

/* Categories */
.categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.category:hover {
  background: #f1f1f1;
}

.category.active {
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
  color: #fff;
  border: none;
}

/* Bottom Dropdown */
/* .all-services-dropdown{
  padding: 10px 0;
}
.all-services-dropdown select{
  background: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  border: 1px solid #ddd;
  cursor: pointer;
  max-width: 400px;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .categories-wrapper {
    /* overflow-x: auto; */
    /* flex-wrap: nowrap; */
    padding-bottom: 10px;
  }

  .category {
    white-space: nowrap;
  }
}

@media (max-width:576px) {
  .category {
    padding: 5px 8px;
    font-size: 11px;
  }
}

/*====================== 
SUBCATG CARD SECTION CSS
======================= */

.subcatg-section {
  position: relative;
}

.subcat-card {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s;
}

.subcat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, .08);
}

.subcat-img {
  border-radius: 15px;
}

.subcat-title {
  font-size: 20px;
  font-weight: 700;
}

.subcat-desc {
  font-size: 14px;
  color: #555;
  margin: 6px 0 12px;
}

.subcat-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-count {
  background: #d9d9d9;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
}

.book-now {
  background: #111;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

.book-now:hover {
  background: #3a3a3a;
  color: #fff;
}
.no-items-wrapper {
    background: #ffffff;
    padding: 60px 20px;
    border-radius: 15px;
    border: 1px dashed #dee2e6; /* Makes it look like a placeholder */
}

.no-items-wrapper h3 {
    color: #333;
    margin-bottom: 15px;
}

.no-items-wrapper .btn {
    border-radius: 50px; /* Modern rounded buttons */
    font-weight: 600;
}
@media (max-width:576px) {
  .subcat-actions {
    display: inline-block;
  }
  .no-items-wrapper .btn{
    margin-bottom: 20px;
  }
}

/*====================
 SERVICE DETAILS CSS 
 ====================*/

.service-details {
  background: #f8f9fa;
}

/* Sticky Left */
.left-content {
  position: sticky;
  top: 100px;
}

/* Banner */
.service-banner {
  height: 180px;
  border-radius: 20px;
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
  color: #fff;
}

/* Info Box */
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
}

/* Booking Card */
.booking-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #eee;
}

/* Quantity */
.qty-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-box button {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f1f1f1;
}

/* Date Scroll */
.date-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.date-scroll::-webkit-scrollbar {
  height: 5px;
}

.date-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.date-btn {
  min-width: 75px;
  text-align: center;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
}

.date-btn small {
  display: block;
  font-size: 11px;
  color: #777;
}

.date-btn strong {
  font-size: 18px;
  display: block;
}

.date-btn:hover {
  border-color: #7b2ff7;
}

.date-btn.active {
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
  color: #fff;
  border: none;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(123, 47, 247, 0.3);
}

.date-btn.active small {
  color: #fff;
}

/* Time Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-grid button {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
}

.time-grid button.active {
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
  color: #fff;
}

/* Gradient Buttons */
.btn-gradient {
  background: linear-gradient(45deg, #7b2ff7, #f107a3);
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 10px;
}

.btn-outline-gradient {
  border: 2px solid #7b2ff7;
  color: #7b2ff7;
  border-radius: 12px;
  padding: 10px;
  background: transparent;
}

/* Responsive */
@media (max-width: 991px) {
  .left-content {
    position: relative;
    top: 0;
  }
}

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


/*=============== 
CART SECTION CSS 
================*/

.cart-section {
  position: relative;
  background-color: #f8fafc;
}

.cart-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid #eee;
}

/* IMAGE */

.cart-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 15px;
}

/* CONTENT */

.cart-content {
  flex: 1;
}

.cart-service-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.cart-service-meta {
  color: #555;
  font-size: 12px;
  margin-bottom: 6px;
}

.cart-service-date {
  font-size: 12px;
  margin-bottom: 6px;
  display: flex;
  gap: 20px;
}

.cart-service-price {
  font-size: 20px;
  font-weight: 600;
  color: #1a7f2e;
}


/* ACTIONS */

.cart-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* QTY */

.cart-qty-box {
  display: flex;
  align-items: center;
  background: #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
}

.cart-qty-box button {
  border: none;
  background: transparent;
  width: 35px;
  height: 35px;
  font-size: 18px;
}

.cart-qty-box input {
  width: 40px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
}

/* DELETE */

.delete-btn {
  width: 38px;
  height: 38px;
  background: #d7d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.summary-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.proceed-btn {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.proceed-btn:hover {
  background: #222;
  color: #ffffff;
}
.see-more-btn{
  padding: 10px 25px;
}
/* ================= EMPTY CART SECTION ================= */

.empty-cart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TEXT */

.empty-cart-wrapper h5 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* IMAGE */

.empty-cart-wrapper img {
  width: 220px;
  max-width: 100%;
  margin-bottom: 15px;
}

/* BUTTON */

.empty-cart-wrapper a {
  display: inline-block;
  margin-top: 5px;
}
@media (max-width:768px) {

  .cart-box {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cart-img img {
    width: 90px;
    height: 90px;
  }

  .cart-content {
    width: calc(100% - 110px);
  }

  .cart-actions {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
  }

}

/*================
LOGIN SECTION CSS 
================*/

.login-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/login-bg.jpg") center/cover no-repeat;
  font-family: Arial;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* LOGIN CARD */

.login-card {

  width: 420px;
  padding: 40px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;

}

/* ICON */

.login-icon {

  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 15px;

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

  margin: auto;
  margin-bottom: 20px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  font-size: 24px;

}

/* TITLE */

.login-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.login-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* INPUT */

.form-group {

  position: relative;
  margin-bottom: 15px;

}

.form-group i {

  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;

}

.form-control,
.custom-textarea,
.custom-select {
  border: 1px solid #d7d7d9 !important;
  border-radius: 14px !important;
  padding: 15px 18px !important;
  font-size: 15px !important;
  background: #fff !important;
}

.form-control:focus,
.custom-textarea:focus,
.custom-select:focus {
  box-shadow: none !important;
  border: 1px solid #9b6af7 !important;
  box-shadow: 0 0 10px rgba(103, 58, 183, 0.5) !important;
}

.toggle-pass {

  right: 15px;
  left: auto;
  cursor: pointer;

}

/* FORGOT */

.forgot {

  text-align: right;
  margin-bottom: 15px;

}


/* BUTTON */

.login-btn {

  width: 100%;
  height: 50px;

  border: none;
  border-radius: 12px;

  color: #fff;
  font-weight: 600;

  background: linear-gradient(180deg, #2d2d2d, #000);

}

/* RESPONSIVE */

@media(max-width:576px) {
  .login-section{
      display:block;
  }
  .login-card {
    width: 100%;
    padding: 30px;
  }

}


/*===================
 PROFILE SECTION CSS (MODERN UI)
===================*/

.profile-section {
  position: relative;
  /* background: #f4f7fb; */
  padding: 40px 0;
}

/* ================= SIDEBAR ================= */

.profile-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.profile-sidebar .nav-link {
  color: #444;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: left;
  padding: 12px 15px;
  font-weight: 500;
  transition: 0.3s;
}

.profile-sidebar .nav-link:hover {
  background: #f1f5f9;
  color: #000;
}

.profile-sidebar .nav-link.active {
  background: linear-gradient(180deg, rgba(78, 69, 227, 1) 0%, rgba(67, 56, 203, 1) 100%);
  color: #fff;
}

/* ================= CONTENT ================= */

.profile-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ================= FORM ================= */

.profile-form label {
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}

.profile-form .form-control {
  height: 45px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.profile-form .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

.save-btn {
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================= ORDER CARD (MODERN UI) ================= */

.order-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  overflow: hidden;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* IMAGE */

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

/* CONTENT */

.order-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.order-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

/* PRICE */

.order-card h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* STATUS BADGE */

.order-card .badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

/* ================= MOBILE (<576px) ================= */

@media (max-width: 575px) {

  .order-card {
    padding: 12px;
  }

  .order-card img {
    height: 160px;
    margin-bottom: 10px;
  }

  .order-card h5 {
    font-size: 16px;
  }

  .order-card p {
    font-size: 13px;
  }

  .order-card h6 {
    font-size: 18px;
  }

  /* center align on mobile */
  .order-card .text-end {
    text-align: left !important;
    margin-top: 10px;
  }
}

/* ================= 
TABLET (576px - 991px) 
================= */

@media (min-width: 576px) and (max-width: 991px) {

  .order-card img {
    height: 90px;
  }

  .order-card h5 {
    font-size: 17px;
  }

  .order-card h6 {
    font-size: 18px;
  }
}

/* ================= 
DESKTOP (>992px) 
================= */

@media (min-width: 992px) {

  .order-card {
    padding: 18px;
  }

  .order-card img {
    height: 100px;
  }
}

/* =======
LOGOUT css
==========
 */

.logout-btn {
  background: linear-gradient(135deg, #ff4d4d, #cc0000);
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* ================= MOBILE (<576px) ================= */

@media (max-width: 575px) {

  .profile-section {
    padding: 20px 10px;
  }

  .profile-sidebar {
    padding: 15px;
  }

  .profile-content {
    padding: 20px;
  }

  .profile-sidebar .nav-link {
    font-size: 14px;
    padding: 10px;
  }

}

/* ================= TABLET (576px - 991px) ================= */

@media (min-width: 576px) and (max-width: 991px) {

  .profile-section {
    padding: 30px 15px;
  }

  .profile-sidebar {
    margin-bottom: 20px;
  }

}

/* ================= DESKTOP (>992px) ================= */

@media (min-width: 992px) {

  .profile-section {
    padding: 50px 0;
  }

  .profile-sidebar {
    position: sticky;
    top: 100px;
  }
}

/*============ 
STEP FORM CSS 
=============*/
.booking-wrapper {
  /* max-width:520px; */
  margin: auto;
}

/* MAIN CARD */

.booking-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* STEP INDICATOR */

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step {
  text-align: center;
  flex: 1;
}

.step span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #ddd;
  border-radius: 50%;
  font-weight: 600;
}

.step p {
  font-size: 13px;
  margin-top: 5px;
  color: #666;
}

.step.active span {
  background: #000;
  color: #fff;
}

/* STEP BOX */

.step-box {
  display: none;
}

.step-box.active {
  display: block;
}

/* INPUTS */

.custom-input {
  height: 48px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.custom-input:focus {
  border-color: #000;
  box-shadow: none;
}

/* BUTTONS */

.main-btn {
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}

.main-btn:hover {
  background: #222;
  color: #fff;
}

.success-btn {
  width: 100%;
  height: 48px;
  background: #2ecc71;
  color: #fff;
  border-radius: 8px;
}

/* GRID LAYOUT */

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

/* CARD */

.payment-card {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  background: #fff;
}

/* hide radio */

.payment-card input {
  position: absolute;
  opacity: 0;
}

/* INNER FLEX */

.payment-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* RADIO DOT */

.check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #bbb;
  position: relative;
}

/* ACTIVE DOT */

.payment-card input:checked+.payment-inner .check-dot {
  border-color: #000;
}

.payment-card input:checked+.payment-inner .check-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* TEXT */

.payment-title {
  font-weight: 600;
  font-size: 16px;
}

.payment-desc {
  color: #777;
}

/* ACTIVE CARD */

.payment-card:has(input:checked) {
  border-color: #000;
  background: #fafafa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* HOVER */

.payment-card:hover {
  border-color: #000;
}

/* MOBILE */

@media(max-width:768px) {

  .payment-methods {
    grid-template-columns: 1fr;
  }

}

/* CONFIRM TEXT */

.confirm-text {
  color: #666;
  margin-bottom: 20px;
}

.book-now-btn {
  width: 100%;
  height: 48px;
  background: #121212;
  color: #fff;
  border-radius: 8px;
}

/* MOBILE */

@media(max-width:576px) {

  .booking-card {
    padding: 20px;
  }

}


/*========================== 
BOOKING SUCCESS SECTION CSS 
===========================*/

/* WRAPPER */

.success-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* CARD */

.success-card {
  background: #fff;
  max-width: 520px;
  margin: auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* SUCCESS ICON */

.success-icon {
  width: 90px;
  height: 90px;
  background: #e9f9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 40px;
  color: #28a745;
  animation: pop 0.6s ease;
}

/* ANIMATION */

@keyframes pop {

  0% {
    transform: scale(0)
  }

  80% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }

}

/* TITLE */

.success-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.success-text {
  color: #666;
  margin-bottom: 25px;
}

/* BOOKING INFO */

.booking-info {

  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;

}

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

.info-row:last-child {
  border: none;
}

/* BUTTONS */

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-track {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.btn-return-home {
  background: #e9ecef;
  padding: 10px 20px;
  border-radius: 8px;
}

/* BOOKING ID */

.booking-id-box {
  background: #f1f3f5;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* SERVICE LIST */

.services-list {
  margin-bottom: 20px;
}

/* EACH SERVICE */

.booking-service-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid #eee;
}

/* TOP ROW */

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

.service-top h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

/* PRICE */

.price {
  color: #28a745;
  font-weight: 600;
}

/* META */

.service-meta {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

/* TOTAL */

.total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-top: 2px dashed #eee;
  margin-top: 10px;
  font-size: 16px;
}

.total-box strong {
  color: #28a745;
  font-size: 18px;
}

/* MOBILE */

@media(max-width:576px) {

  .service-meta {
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
  }

  .service-top h5 {
    font-size: 15px;
  }

}

/* MOBILE */

@media(max-width:576px) {

  .success-card {
    padding: 25px;
  }

  .success-title {
    font-size: 22px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .info-row {
    font-size: 14px;
  }

}

/*======================
 ABOUT HERO SECTION CSS 
 ======================*/

.about-hero {
  padding: 0;
  background-image: url('../images/about-hero.jpg');
  /* replace image */
  background-size: cover;
  background-position: center;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

/* overlay */

.about-hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* content */

.about-hero-content {
  text-align: center;
  color: #fff;
  max-width: 750px;
  margin: auto;
}

/* heading */

.about-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* paragraph */

.about-hero-content p {
  font-size: 18px;
  color: #ddd;
}

/* responsive */

@media(max-width:768px) {

  .about-hero {
    height: 320px;
  }

  .about-hero-content h1 {
    font-size: 30px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

}

@media(max-width:480px) {

  .about-hero-content h1 {
    font-size: 24px;
  }

}


/*=================== 
ABOUT US SECTION CSS 
====================*/

.about-intro {
  background: #f7f8fc;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  color: #555;
}

.about-img {
  border-radius: 15px;
}

@media(max-width:768px) {

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

}


/*===================== 
WHY CHOOSE SECTION CSS 
======================*/

.why-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

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

.why-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

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


/*=========================== 
MISSION & VISION SECTION CSS 
============================*/

.mission-section {
  background: #f7f8fc;
}

.mission-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.mission-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-card p {
  color: #555;
}

/*================
CONTACT HERO CSS
==================*/

.page-hero {
  background: linear-gradient(180deg, rgba(78, 69, 227, 1) 0%, rgba(67, 56, 203, 1) 100%);
  color: #fff;
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 45px;
  font-weight: 700;
}

.page-hero p {
  opacity: 0.9;
  color: #fff;
}

.breadcrumb {
  margin-bottom: 0;
}

@media (max-width:768px) {
  .page-hero {
    padding: 50px 20px;
  }
}

@media (max-width:576px) {
  .page-hero {
    padding: 30px 20px;
  }
  .page-hero h1{
    font-size: 25px;
  }
}

/*================ 
CONTACT INFO CSS 
=================*/

.contact-info-section {
  position: relative;
}

.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

.contact-card i {
  font-size: 28px;
  color: #6f1d83;
  margin-bottom: 10px;
}


/*===============
 CONTAC FORM CSS 
 ===============*/

.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-box input,
.contact-form-box textarea {
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 12px;
}

.contact-submit {
  margin-top: 20px;
}

/*=========================== 
CONTACT RIGHT SIDE UNIQUE CSS 
=============================*/

.contact-highlight {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-highlight h4 {
  font-size: 30px;
  font-weight: 600;
}

.contact-highlight ul {
  padding-left: 0;
  list-style: none;
}

.contact-highlight li {
  margin-bottom: 10px;
}

.mini-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  border: 0;
  margin-top: 15px;
}


/*============= 
CONTACT CTA CSS
=============== */

.contact-cta {
  margin-top: 60px;
  background: linear-gradient(to bottom right in oklab, #4f46e5 0%, #4338ca 50%, oklch(43.8% 0.218 303.724) 100%);
  color: #fff;
  padding: 50px 20px;
}

.contact-cta p {
  color: #fff;
}

.contact-cta .btn {
  border-radius: 30px;
  padding: 10px 25px;
}


/* RESPONSIVE */

@media(max-width:768px) {

  .contact-hero {
    padding: 60px 15px;
  }

  .contact-form-box,
  .contact-highlight {
    padding: 20px;
  }

  .contact-cta {
    border-radius: 25px 25px 0 0;
  }

}