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

body {
  font-family: "Source Sans Pro", sans-serif;
  overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
}

h1,h2 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2em;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  font-family: "Source Sans Pro", sans-serif;
  color: #6B6668;
}

/* Global Scroll Animation */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

form.contact-form p.error {
    color: red;
    font-size: 14px;
}
/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#all-header .container {
    flex-wrap: wrap;
}
/* Logo Styles */
.logo img {
  width: 120px;
  filter: brightness(0) invert(1);
}

/* Navigation Styles */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  /*padding: 10px 0;*/
  position: relative;
  font-family: 'Source Sans Pro', sans-serif;
}

/*.nav-link:hover {
    color: #d4af37;
}*/

.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
}

.dropdown-arrow {
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.95);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 2px solid #d4af37;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover .dropdown-arrow {
  /*transform: rotate(180deg);*/
}

.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 13px; 
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Source Sans Pro', sans-serif;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #000  !important;
  padding-left: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon {
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  display: none;
}

.search-icon:hover {
  color: #d4af37;
  transform: scale(1.1);
}

.book-now-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Source Sans Pro', sans-serif;
}

.book-now-btn:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  transition: all 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  z-index: 9999;
}
.mobile-menu-toggle.menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
}  
.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-item {
  margin-bottom: 20px;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #d4af37;
  padding-left: 10px;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

.mobile-dropdown.active {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Source Sans Pro', sans-serif;
}

.mobile-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding-left: 25px;
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

/*========new css headr*/
/* Ensure submenus appear to the right */
.has-submenu {
  position: relative;
}

.has-submenu .dropdown-menu {
  top: 0;
  left: 101%;
  position: absolute;
  display: none;
  white-space: nowrap;
  z-index: 1000;
}

.has-submenu:hover .dropdown-menu {
  display: block;
}

/* Make .dropdown-item use flex for alignment */
.dropdown-item>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /*padding: 10px 16px;*/
  text-decoration: none;
  color: #f7f2e5;
  /* your text color */
}

/* Ensure arrow sits to the right nicely */
.submenu-arrow {
  margin-left: auto;
  font-size: 12px;
  min-width: 16px;
  text-align: right;
}






/*===========================all header css=====================*/
/* Styles for the 'all-header' on the About page */
.all-header {
  background: white;
  /* White background for the header */
  /* Ensure positioning and sizing are consistent with a fixed header */
  position: fixed;
  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  /* Keep original padding, ensures no negative bottom */
  transition: all 0.3s ease;
}

.all-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  /* Slightly transparent white when scrolled */
  padding: 15px 0;
  /* Keep padding change */
}

.all-header .logo img {
  filter: none;
  /* Remove filter for the logo */
}

/* Navigation links and dropdown items color */
.all-header .nav-link,
.all-header .dropdown-item,
.all-header .mobile-nav-link,
.all-header .mobile-dropdown-item {
  color: black; 
}


/* Active link underline color */
.all-header .nav-link.active::after {
  background: black;
  /* Active link underline black */
}

/* Book Now Button styles */
.all-header .book-now-btn {
  border: 2px solid black;
  /* Button border black */
  color: black;
  /* Button text black */
}

.all-header .book-now-btn:hover {
  background: black;
  /* Button hover background black */
  color: white;
  /* Button hover text white */
}

/* Search Icon color */
.all-header .search-icon {
  color: black;
  display: none;
  /* Search icon black */
}

/* Mobile menu toggle (hamburger) lines color */
.all-header .mobile-menu-toggle .hamburger-line {
  background: black;
  /* Hamburger lines black */
}

/* Dropdown menu and mobile menu background */
/*.all-header .dropdown-menu,
.all-header .mobile-menu {
  background: white;
}
*/
/* Adjust border colors for dropdown items on a light background */
.all-header .dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000 !important;
}

.all-header .dropdown-item,
.dropdown-item.has-submenu a {
    color: #fff !important;
}
.dropdown-item.has-submenu .dropdown-menu {
    margin-top: 0;
}
.all-header .mobile-dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}




/* Breadcrumbs */


.kss-breadcrumb-nav {
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    padding: 0 20px;
}

.kss-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.kss-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.kss-breadcrumb-link {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.kss-breadcrumb-link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

.kss-breadcrumb-separator {
    color: #ff6b35;
    font-weight: bold;
    margin: 0 5px;
    user-select: none;
}

.kss-breadcrumb-active {
    color: #333;
    font-weight: 600;
}

.kss-breadcrumb-item:last-child .kss-breadcrumb-separator {
    display: none;
}

@media (max-width: 768px) {
    .kss-breadcrumb-item {
        font-size: 13px;
    }
    
    .kss-breadcrumb-separator {
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .kss-breadcrumb-item {
        font-size: 12px;
    }
}





/* Original CSS for general layout (if not already present in your globals.css) */
/* If these are already in your globals.css, you do not need to add them again. */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  /*padding: 10px 0;*/
  position: relative;
  font-family: "Source Sans Pro", sans-serif;
}

/*.nav-link:hover {
  color: #d4af37;
}*/
.dropdown-arrow {
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 2px solid #d4af37;
  background: #926c24;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
 

.dropdown-item {
  display: block;
  padding: 13px 15px;
  text-decoration: none;
  font-size: 14px; 
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #fff;
  padding-left: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon:hover {
  color: #d4af37;
  transform: scale(1.1);
}

.mobile-menu-toggle {
  display: none;
  /* Hidden by default, shown by media query */
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-item {
  margin-bottom: 20px;
  width: 100%;
}

.mobile-nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  padding: 15px 0;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #d4af37;
  padding-left: 10px;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.mobile-dropdown.active {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: "Source Sans Pro", sans-serif;
}

.mobile-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding-left: 25px;
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
}

.mobile-dropdown-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
    color: #fff;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}


/* ============================================
   Header Search Styles - Unique Class Names
   ============================================ */

.hdr-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.hdr-search-trigger-icon {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.hdr-search-trigger-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}


.search-link{
  text-decoration: none !important;
}


/* ================================
   SEARCH PAGE – ISOLATED CSS ONLY
   ================================ */

.search-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 140px;
    min-height: 80vh;
    box-sizing: border-box;
    background: #ffffff;
}

/* ================================
   SEARCH INPUT AREA
   ================================ */

.search-page-input-wrap {
    max-width: 720px;
    margin: 0 auto 60px;
    position: relative;
}

/* Search Input */
.search-page-input {
    width: 100%;
    height: 64px;
    padding: 0 22px;
    font-size: 17px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #111827;
    background: #fafafa;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Placeholder */
.search-page-input::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

/* Focus state */
.search-page-input:focus {
    background: #ffffff;
    border-color: #b8923a; /* premium gold tone */
    box-shadow: 0 10px 30px rgba(184, 146, 58, 0.18);
}

/* ================================
   RESULTS GRID
   ================================ */

.search-page-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* ================================
   RESULT CARD
   ================================ */

.search-page-card {
    display: block;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.search-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

/* Card Image */
.search-page-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Card Body */
.search-page-card-body {
    padding: 18px;
}

/* Card Type */
.search-page-card-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b8923a;
    margin-bottom: 6px;
}

/* Card Title */
.search-page-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #111827;
}

/* ================================
   EMPTY / INITIAL STATE
   ================================ */

.search-page-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px dashed #e0e0e0;
}

.search-page-placeholder h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.search-page-placeholder p {
    font-size: 15px;
    color: #6b7280;
}

/* ================================
   NO RESULTS TEXT
   ================================ */

.search-page-empty {
    display: none;
    margin-top: 70px;
    text-align: center;
    font-size: 15px;
    color: #6b7280;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .search-page-wrapper {
        padding: 120px 16px 120px;
    }

    .search-page-input {
        height: 58px;
        font-size: 16px;
    }

    .search-page-card-img {
        height: 160px;
    }
}

.hdr-search-overlay-panel.hdr-search-active {
    animation: hdrSearchSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.all-header .hdr-search-trigger-icon {
    color: #000;             
}

.all-header .hdr-search-trigger-icon:hover {
    background-color: rgba(0,0,0,0.08);
}



/*====================all header css end====================*/

/* Hero Section */
.hero-home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background video styling */
.hero-home video.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Gradient overlay */
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 1300px;
  padding: 0 20px;
  color: white;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

.hero-btn:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}




/*==================================2nd section (deserves)==========================*/

/* Main Section Container */
.deserves {
  max-width: 1300px;
  margin: 0px auto;
  padding: 60px 20px 0;
  text-align: center;
}
.deserves-cards-containers {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0 20px 60px;
    text-align: center;
}

/* Intro Tag */
.deserves-intro-tag {
  display: inline-block;
  background-color: #926c24;
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: "Source Sans Pro", sans-serif !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 15px;
  margin-bottom: 30px;
}

/* Main Heading */
.deserves-heading {
  padding-bottom: 25px;
  color: #121B24;
  width: 1000px;
  margin: 0 auto;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

/* Text Blocks */
.deserves-text-block {
  max-width: 1000px;
  margin: 0 auto 40px auto;

}

.deserves-text-block p {
  margin-bottom: 15px;
  color: #6B6668;
}



/* Cards Section */
.deserves-cards-container {   
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 30px;
  width: 100%;
}

.deserves-card {
  background-color: white;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deserves-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.deserves-card-content {
  padding: 0px 20px 45px;
}

.deserves-card-title {
  font-size: 22px;
  margin-bottom: 34px;
  color: #121b24;
  font-weight: 500;
}

/* Card Button (BOOK NOW) */
.deserves-card-button {
  background-color: white;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 25px;
  border: 2px solid #926c24;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.deserves-card-button:hover {
  background-color: #926c24;
  color: white;
}

.deserves-button-primary {
  /*display: inline-block;*/
  background-color: #926c24;
  /* Gold color */
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid #926c24;
  /*cursor: pointer;*/
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 60px;
  /* Space below the button */
}

.deserves-button-primary:hover {
  transform: translateY(-2px);
  color: #926c24;
  background: transparent;
  border: 1px solid #926c24;
}

/*==========================HOME - ABOUT US SECTION*=================/
/* Main Section Container */
.h-about {
  background-color: #121b24;
  padding: 80px 20px;
  color: white;
}

.h-about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content (Text) */
.h-about-content-left {
  flex: 1;
  min-width: 450px;
  max-width: 600px;
  text-align: left;
}


/* Main Heading */
.h-about-heading {
  margin-bottom: 30px;
  color: #fff;
}

/* Paragraphs */
.h-about-text p {
  color: #ccc;
  margin-bottom: 20px;
}



/* Right Content (Images) */
.h-about-content-right {
  flex: 1;
  min-width: 400px;
  position: relative;
  padding-bottom: 30%;
  height: 500px;
  overflow: hidden;
}

.h-about-main-image {
  position: absolute;
  top: 0;
  left: 52px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.h-about-small-image {
  position: absolute;
  bottom: 20px;
  left: -24px;
  width: 40%;
  height: 200px;
}

/* Statistics Section */
.h-about-stats-container {
  max-width: 1300px;
  margin: 80px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  text-align: center;
}

.h-about-stat-item {
  flex: 1;
  min-width: 200px;
  padding: 15px;
}

.h-about-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}

.h-about-stat-description {
  font-size: 16px;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
}

.h-about-content-left a.hero-btn {
  margin-top: 20px;
}
.filter-mobile-toggle,
.filter-header span.close-filter {
    display: none;
}


/*===========================courses section=====================*/

.courses {
  margin: 40px auto 0px auto !important;
  background-color: #f7f2e5;
  padding: 60px 20px !important;
}


/*===========================service section=====================*/


.services {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services-heading {
  color: #333;
  margin-bottom: 15px;
}

.services-description {
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.services-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 350px;
}

.services-box-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 0;
}

.services-box:hover .services-box-image {
  transform: scale(1.05);
}

.services-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  z-index: 1;
}

.services-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  transition: height 0.3s ease;
  z-index: 1;
}

.services-box:hover::before {
  height: 190px;
}

.services-overlay-content {
  position: relative;
  padding: 25px;
  text-align: center;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-overlay-content a {
    text-decoration: none;
}
.services-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
  font-family: 'Lora', serif;
}

.services-learn-more {
  background-color: transparent;
  text-decoration: none;
  border: 1px solid white;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: none;
  visibility: hidden;
  transform: translateY(10px);
}

.services-box:hover .services-learn-more {
  display: block;
  visibility: visible;
  transform: translateY(0);
}

.services-learn-more:hover {
  background-color: #fff;
  color: #926c24;
  border-color: #fff;
}

/*=======================faq HOME section=========================*/

.home-faq {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: white;
}

.home-faq-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-faq-content-left {
  text-align: left;
  padding-right: 20px;
}

.home-faq-heading {
  color: white;
  margin-bottom: 20px;
  font-size: 48px;
}

.home-faq-intro-text {
  color: #ccc;
  margin-bottom: 40px;
  max-width: 500px;
}
.home-faq-intro-text p{
  color: inherit;
}

.home-faq-accordion {
  width: 100%;
}

.home-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.home-faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: 'Source Sans Pro', sans-serif;
}

.home-faq-question i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
  font-size: 15px;
  color: #ccc;
  font-family: 'Source Sans Pro', sans-serif;
}

.home-faq-answer p {
  text-align: left;
}

.home-faq-item.active .home-faq-answer {
  height: auto;
  width: 100%;
  text-align: left;
  padding-top: 15px;
    max-height: unset;
  overflow: unset;
}

.home-faq-item.active .home-faq-question i {
  transform: rotate(180deg);
}

.home-faq-content-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-faq-image {
  max-width: 100%;
  height: 500px;
  display: block;
  border-radius: 5px;
}

/*========================HOME TESTIMONIALS -=================*/

.hometesti {
  background-image: url('/images/bg-scaled.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #333;
  position: relative;
  text-align: center;
}

.hometesti::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hometesti-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hometesti-title {
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 20px;
}

.hometesti-subtitle {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hometesti-slider {
  position: relative;
  text-align: center;
}

.hometesti-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.hometesti-star {
  color: #d4a574;
  font-size: 20px;
}

.hometesti-quote {
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

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

.hometesti-avatar {
  width: 80px;
  height: 80px;
  background: #4db6ac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: bold;
}

.hometesti-name {
  font-size: 20px;
  font-weight: bold;
  color: #2c2c2c;
  margin: 0;
}

.hometesti-role {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.hometesti-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  transition: all 0.3s ease;
  z-index: 3;
}

.hometesti-nav:hover {
  background: rgba(255, 255, 255, 1);
  color: #2c2c2c;
}

.hometesti-nav-prev {
  left: -25px;
}

.hometesti-nav-next {
  right: -25px;
}

.hometesti-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hometesti-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hometesti-dot.active {
  background: #d4a574;
}

/*=================================blog section css =====================*/
.blog-sec {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.blog-sec-heading {
  color: #333;
  margin-bottom: 15px;
}

.blog-sec-description {
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 16px;
}

.blog-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.blog-sec-category a {
  color: #fff;
  text-decoration: none;
}

.blog-sec-category a:hover {
  color: #121b24;
}

.blog-sec-card {
  background-color: #fff;
  border: 1px solid #eee;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-sec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-sec-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-sec-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-sec-category {
  background-color: #b8860b;
  color: white;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  margin-bottom: 15px;
  display: inline-block;
  font-family: 'Source Sans Pro', sans-serif;
  width: fit-content !important;
}

.blog-sec-title {
  font-size: 23px;
  color: #121b24;
  margin-bottom: 6px;
  font-family: 'Source Sans Pro';
  font-weight: 500;
}

.blog-sec-separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.blog-sec-button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #b8860b;
  color: #b8860b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  font-family: 'Source Sans Pro', sans-serif;
}

.blog-sec-button:hover {
  background-color: #b8860b;
  color: white;
}

.blog-sec-more-tips {
  margin-top: 40px;
  font-size: 16px;
  color: #555;
  font-family: 'Source Sans Pro', sans-serif;
}

.blog-sec-more-tips a {
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-sec-more-tips a:hover {
  color: #a0780a;
}


/*============end section glowing====================*/
.Glowing {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #121B24;
}

.Glowing-content-left {
  text-align: left;
}

.Glowing-heading {
  color: #121B24;
  margin-bottom: 20px;
  font-size: 48px;
}

.Glowing-text {
  color: #121B24;
  margin-bottom: 20px;
  font-size: 18px;
}

.Glowing-text:last-of-type {
  margin-bottom: 40px;
}

.Glowing-button {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #b8860b;
  color: #b8860b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.Glowing-button:hover {
  background-color: #b8860b;
  color: white;
}

.Glowing-content-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.Glowing-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.Glowing-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: white;
  transform: translateX(-50%);
  z-index: 1;
}

.Glowing-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
  color: #555;
  font-size: 18px;
}

.Glowing-slider-handle i {
  margin: 0 2px;
}

img.Glowing-image:hover {
  opacity: 0.9;
}

/*================FOOTER===========================*/

.footer {
  background-color: #f7f2e5;
  padding: 60px 20px 20px;
  color: #121b24;
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 40px;
}

.footer-heading {
  margin-bottom: 20px;
  font-size: 22px;
  font-family: 'Lora', serif;
}

.footer-col-about {
  padding-right: 20px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 18px;
  max-width: 395px;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-address-text,
.footer-hours-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0.5em;
}

.footer-hours-heading {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

.footer-contact-item i {
  color: #b8860b;
  margin-right: 10px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-contact-item a {
  color: #6b6668;
  transition: color 0.3s ease;
  font-size: 18px;
}

.footer-contact-item a:hover {
  color: #b8860b;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-links a {
    text-decoration: none;
}

.footer-social-icon {
  background-color: #b8860b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
  background-color: #a0780a;
}

.footer-copyright p {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 15px;
}

.footer-copyright a {
  color: #b8860b;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #b8860b;
}

.whatsapp-fixed-icon  {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-fixed-icon:hover {
  transform: scale(1.05);
  background-color: #1DA851;
}

.call-fixed-icon {
  position: fixed;
  bottom: 80px; 
  left: 20px;
  background-color: #1371fde6;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.call-fixed-icon:hover {
  transform: scale(1.05);
  background-color: #0b5ed7;
}


/*==============****************(ABOUT US PAGE START)****** ==========================*/
.ab-first {
  display: flex;
  min-height: 650px;
  width: 100%;
  margin-top: 100px;
}

.ab-first .content-section {
  background-color: #121B24;
  color: white;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  /*flex: 0 0 auto;*/
  max-width: 1300px;
  /*width: 100%;*/
}

.ab-first .content-wrapper {
  max-width: 600px;
  width: 100%;
}

.ab-first .about-label {
  margin-bottom: 30px;
}

.ab-first .main-heading {
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
}

.ab-first .description {
  color: #e8e8e8;
  line-height: 1.6;
  margin: 0;
}

.ab-first .image-section {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/*================about 2nd section============*/
.ab-commint {
  background: #fff;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
}

.ab-logo {
  text-align: center;
  padding-bottom: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.ab-logo img {
  height: 60px;
  margin: 0 20px;
  vertical-align: middle;
}

.ab-spce {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.ab-spce .image-container {
  flex: 1;
}

.ab-spce .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ab-spce .content-container {
  flex: 1;
  padding-left: 20px;
}

.ab-spce .deserves-intro-tag {
  margin-bottom: 20px;
}

.ab-spce h2 {
  color: #121B24;
  margin-bottom: 20px;
}

.ab-spce p {
  color: #666;
  margin: 0;
}

.ab-promise {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ab-promise .content-container {
  flex: 1;
  padding-right: 20px;
}

.ab-promise .image-container {
  flex: 1;
}

.ab-promise .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ab-promise h2 {
  color: #121B24;
  margin-bottom: 20px;
}

.ab-promise p {
  color: #666;
  margin: 0;
}

/*==================about 3rd sectioon==========*/


.ab-diffrent {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.ab-diffrent .ab-image-container {
  flex: 1;
  background-image: url('images/HOW-THE.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.ab-diffrent .ab-content-container {
  flex: 1;
  background-color: #121B24;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.ab-diffrent .ab-content-wrapper {
  max-width: 500px;
  width: 100%;
}

.ab-diffrent .ab-main-heading {
  color: white;
  margin-bottom: 30px;
}

.ab-diffrent .ab-description {
  color: #e8e8e8;
  margin-bottom: 40px;
}

/*=======4rth section ============*/
.ab-commint .ab-logo h2 {
  margin-bottom: 20px;
}

.ab-commint .ab-logo p {
  color: #6B6668;
}

.ab-commint div#ab-logo {
  padding: 50px 20px 0px 20px;
}

/*=============about end form section=============*/

#ab-end .ab-spce {
  margin-bottom: 10px;
  margin-top: 80px;
}

#ab-end p {
  margin-bottom: 30px;
}

.contact-form {
  /*max-width: 600px;*/
  /*margin: 30px auto;*/
}

.form-row {
  display: flex;
  gap: 0px;
  /*flex-direction: column;*/
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  margin-bottom: 5px;
  color: #666;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  resize: vertical;
}

.full-width {
  width: 100%;
}

.submit-btn {
  background-color: #a3772c;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/*=====================&&&&&&&&&&******SERVICE PAGE*****&&&&&&&&&&==================================*/


.hero-service {
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-service .hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-service .hero-content-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-service .hero-title {
  color: white;
  font-size: 4.5rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
}

.hero-service .hero-paragraph {
  color: white !important;
  font-size: 30px;
  max-width: 950px;
  text-align: center;
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 35px;
}

/*===========***&&&======Kaloya-Signature-Facial page css start=****&&&===============*/
/*first section*/
.kolaya-sign {
  display: flex;
  min-height: 600px;
  margin-top: 100px;
  width: 100%;
}

.kolaya-sign .image-container {
  flex: 0 0 55%;
  background-image: url('images/Kaloya-Signature-Facial.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.kolaya-sign .content-container {
  background-image: url('/images/bg-scaled.webp');
  background-size: cover;
  background-position: center;
  flex: 0 0 45%;
  background-color: #f4f1e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.kolaya-sign .content-wrapper {
  max-width: 500px;
  width: 100%;
}

.kolaya-sign .main-heading {
  color: #121B24;
  margin-bottom: 25px;
}

.kolaya-sign .description {
  color: #6B6668;
  margin: 0;
}

/*second section*/
#invovation {
  padding: 50px 20px 40px 20px;
}

#invovation h1,
#invovation h2 {
  margin-bottom: 20px !important;
}

.ksf-benifits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0px 20px 60px 20px;
  gap: 40px;
}

.ksf-benifits .ksf-main-image {
  position: absolute;
  top: 0;
  right: 52px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ksf-benifits .ksf-small-image {
  position: absolute;
  bottom: 20px;
  right: -24px;
  width: 40%;
  height: 200px;
}

.ksf-benifits .main-heading {
  color: #121B24;
  margin-bottom: 25px;
}

.ksf-benifits .intro-text {
  color: #666;
  margin-bottom: 30px;
}

.ksf-benifits .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ksf-benifits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ksf-benifits .benefit-icon {
  color: #d4a574;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ksf-benifits .benefit-content {
  flex: 1;
}

.ksf-benifits .benefit-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.ksf-benifits .benefit-description {
  color: #666;
  margin: 0;
}

/*4rth section ksf-skincare*/
.ksf-skincare {
  background-color: #121B24;
  color: white;
  padding: 80px 0;
  width: 100%;
}

.ksf-skincare .ksf-inner-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 40px;
  align-items: center;
}

.ksf-skincare .ksf-content-section {
  max-width: 500px;
}

.ksf-skincare .ksf-main-heading {
  color: white;
  margin-bottom: 30px;
}

.ksf-skincare .ksf-intro-text {
  color: #e8e8e8;
  margin-bottom: 40px;
}

.ksf-skincare .ksf-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ksf-skincare .ksf-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.ksf-skincare .ksf-feature-icon {
  width: 40px;
  height: 40px;
  background-color: #d4a574;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}

.ksf-skincare .ksf-feature-icon::before {
  content: "✓";
  color: #2c3e50;
  font-weight: bold;
  font-size: 16px;
}

.ksf-skincare .ksf-feature-content {
  flex: 1;
}

.ksf-skincare .ksf-feature-title {
  color: #d4a574;
  font-weight: 600;
  margin-bottom: 8px;
}

.ksf-skincare .ksf-feature-description {
  color: #e8e8e8;
  margin: 0;
}

.ksf-skincare .ksf-images-section {
  position: relative;
  min-height: 500px;
  width: 100%;
}

.ksf-skincare .ksf-main-image {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 400px;
  width: 100%;  
  background-image: url('images/Kaloya-Signa.webp');
  background-size: cover;
  background-position: center top;
}

.ksf-skincare .ksf-main-image2 { 
  top: 0;
  right: 0;
  min-width: 400px;
  width: 100%;   
  background-size: cover;
  background-position: center top;
}
.ksf-skincare img.ksf-secondary-image2 {
    position: absolute;
    bottom: -20px;
    left: -15%;
}

.ksf-spacer-inner{
  --container-widget-height: initial;
  --spacer-size: 700px;
  height: var(--container-widget-height, var(--spacer-size));

}

.ksf-skincare .ksf-secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 200px;
  background-image: url('images/Why-Choose-2-18.webp');
  background-size: cover;
  background-position: center bottom;
  z-index: 2;
}

/*ksf faq 5th section*/

.ksf-faq-accordion {
  margin: 30px auto 0;
  font-family: 'Lora';
}

section.ksf-faq {
  text-align: center;
  padding: 70px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.ksf-faq-answer p {
  text-align: left;
}

.ksf-faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.ksf-faq-question {
  background-color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0c0c0c;
  transition: background-color 0.3s ease;
}

.ksf-faq-item.active .ksf-faq-question {
  background-color: #0c1f2e;
  color: #fff;
}

.ksf-faq-question i {
  font-size: 18px;
}

.ksf-faq-answer {
  display: none;
  padding: 16px 20px;
  background-color: #f9f9f9;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.ksf-faq-item.active .ksf-faq-answer {
  display: block;
}


/*====ksf end section===*/

.ksf-end {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
}

.ksf-end .ksf-content-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.ksf-end .ksf-content-wrapper {
  max-width: 500px;
  width: 100%;
}

.ksf-end .ksf-main-heading {
  color: #121B24;
  margin-bottom: 25px;
}

.ksf-end .ksf-description {
  color: #666;
  margin-bottom: 40px;
}

.ksf-end .ksf-image-container {
  flex: 1;
  background-image: url('images/Book-Your-Surrey-Today.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}


/*==============================================TRANINIG CORSES PAGE CSS ============================*/

/*FIRST JURNEY SECTION*/
/* Scoped CSS for .jurney-tab */
.jurney-tab {
  max-width: 1300px;
  margin: 0px auto;
  padding: 0px 20px 60px 20px;
  font-family: "Source Sans Pro", sans-serif;
  box-sizing: border-box;
}

.jurney-tab .tab-headers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.jurney-tab .tab-button {
  padding: 16px 28px;
  border: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  white-space: nowrap;
}

.jurney-tab .tab-button.active {
  background-color: #8b6b3f;
  color: white;
}

.jurney-tab .tab-button:not(.active) {
  background-color: #e5e7eb;
  color: #4b5563;
}

.jurney-tab .tab-button:not(.active):hover {
  background-color: #d1d5db;
}

.jurney-tab .tab-content-container {
  background-color: white;
  padding: 24px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.jurney-tab .tab-content {
  display: none;
}

.jurney-tab .tab-content.active {
  display: block;
}

.jurney-tab .tab-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0e0e0e;
  font-family: "Source Sans Pro", sans-serif;
}

.jurney-tab .tab-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Source Sans Pro", sans-serif;
  color: #926c24;
}

.jurney-tab .tab-content p {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.5em;
  color: #6B6668;
}

.jurney-tab .tab-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.jurney-tab .tab-content ul li {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
  color: #6B6668;
}

.jurney-tab .tab-content ul ul {
  padding-left: 16px;
  padding-top: 10px;
}

.jurney-tab .tab-content ul li span {
  font-weight: 600;
}

.jurney-tab .register-button-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.jurney-tab .register-button {
  background-color: #926c24;
  color: white;
  margin-top: 18px;
  padding: 16px 30px;
  font-weight: 700;
  border: 1px solid #926c24;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: "Source Sans Pro", sans-serif;
  text-decoration: none;
}

.jurney-tab .register-button:hover {
  background-color: transparent;
  color: #926c24;
  border: 1px solid #926c24;
}

/*faq transprent section*/
#faq-transprent {
  background: transparent !important;
}

#faq-transprent .home-faq-heading {
  color: #121b24;
}

#faq-transprent .home-faq-question {
  color: #121b24;
}

#faq-transprent .home-faq-answer {
  color: #6b6668;
}

#faq-transprent .home-faq-intro-text {
  color: #6b6668;
  margin-bottom: 10px;
}

#faq-transprent .home-faq-item {
  border-bottom: 1px solid rgb(4 1 1 / 85%);
  padding: 20px 0;
}


/* === Course Table Section === */
.course-tabl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 60px 20px;
}

.course-tabl-heading {
  text-align: center;
  margin-bottom: 20px;
}

.course-tabl-subheading {
  text-align: center;
  color: #6b6668;
  margin-bottom: 35px;
}

.course-tabl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.course-tabl-box {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.course-tabl-box:hover {
  transform: translateY(-5px);
}

/* Header colors */
.course-tabl-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 16px;
}

.course-tabl-online .course-tabl-title {
  background-color: #926c1b;
}

.course-tabl-basic .course-tabl-title {
  background-color: #0f1218;
}

.course-tabl-advanced .course-tabl-title {
  background-color: #de2f2f;
}

.course-tabl-price {
  font-size: 48px;
  font-weight: 600;
  color: #926c1b;
  margin: 20px 0 10px;
}

.course-tabl-price span {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}

.course-tabl-desc {
  font-size: 15px;
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-tabl-box  ul {
  list-style: none;
  text-align: left;
  padding: 0 30px;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.course-tabl-box  ul li {
  margin-bottom: 10px;
}

/*====*/
#doctor img {
  width: 100%;
}

/*faq sectino*/

.ab-diffrent #ab-cont-img {
  flex: 1; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

section.faq-end {
  margin-top: -60px;
}

.faq-end div#invovation {
  max-width: 1200px;
}

/*=======================SPECAILS PAGE CSS===================*/
/*FIRST SECTION GRID*/
.sp-unwind {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.sp-unwind-heading {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.sp-unwind-heading h2 {
  margin-bottom: 25px;
}

.sp-unwind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  gap: 30px;
}

.sp-box {
  border: 1px solid #ccc;
  padding: 25px 20px;
  text-align: left;
  background: #fff;
}

.sp-box h3 {
  font-size: 35px;
  font-family: "Source Sans Pro", Sans-serif;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
  color: #121B24;
}

.sp-box p {
  margin-bottom: 20px;
  list-style: none;
  color: #6b6668;
}

.sp-box a,
.sp-box button {
  background: none;
  border: 1px solid #926c24;
  padding: 10px 25px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #000;
  text-decoration: none;
}
.sp-box a:hover,
.sp-box button:hover {
  background: #926c24;
  color: #fff;
}

/*CHOOSE SPECAIL*/
.choose-specials {
  background-color: #121B24;
  padding: 60px 20px 120px 20px;
  color: #F7F2E5;
  font-family: "Source Sans Pro", sans-serif;
}

.choose-specials .choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.choose-specials h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  margin-top: 0px;
}

.choose-specials ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.choose-specials li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #F7F2E5;
  font-size: 18px;
  line-height: 1.5;
}

.choose-specials li .icon {
  color: #926c24;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.choose-specials .choose-right {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.choose-specials .main-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
  height: 450px;
  object-fit: cover;
}

.choose-specials .overlay-img {
  position: absolute;
  bottom: -55px;
  left: -40px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.choose-specials .overlay-img img {
  width: 100%;
  max-width: 200px;
  border-radius: 5px;
}

.choose-specials li strong {
  color: #926c24;
}

/*booking section css*/

.book-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.book-info .book-head h2 {
  margin-bottom: 8px;
}

.book-info .book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.book-info .book-box {
  border: 1px solid #000;
  padding: 30px 20px;
}

.book-info .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #926c24;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.book-info .book-box h4 {
  margin-bottom: 8px;
}

.book-info .book-footer {
  margin-top: 60px;
}

.book-info .book-footer h3 {
  margin-bottom: 16px;
}

/*====================contact us page css======================*/
/*fisrt section*/
.kolaya-sign #contact-img {
  background-image: url("images/service2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  flex: 0 0 55%;
  background-position: center center;
}

.contact-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.contact-icons a {
  text-decoration: none;
  color: #946E25;
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #121B24;
}

.icon-circle {
  background-color: #E1C389;
  /* Icon background */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.contact-icons i {
  font-size: 16px;
}

#contact-info .main-heading {
  color: #121B24;
  margin-bottom: 25px; 
}

.cont-map {
  padding: 60px 20px;
}

.cont-map-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start; 
}

 

.contact-left h2 {
  margin-bottom: 10px;
  color: #121B24;
}

.contact-left>p {
  color: #6b6668;
  margin-bottom: 25px;
  max-width: 500px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.info-box h4 {
  font-size: 14px;
  font-weight: bold;
  color: #121B24;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-box p {
  margin: 0;
  color: #6b6668;
  line-height: 1.6;
}

.info-box a {
  color: #121B24;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

.contact-left {
    width: 50%;
}
.contact-right { 
  min-height: 380px;
  width: 50%;
}

div#contact-end {
  margin-top: -36px !important;
}


/*=====================Blog PAGE CSS -============================*/
.blog-main {
  padding: 50px 20px;

}

.blog-main .blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.blog-main .blog-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-main .blog-box {
  border: 1px solid #eee;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-main .blog-image {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.blog-main .blog-box:hover .blog-image {
  transform: scale(1.05);
}

.blog-main .blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #926c24;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-main .blog-content {
  padding: 20px;
}

.blog-main .blog-title a {
  font-size: 24px;
  font-weight: 500;
  color: #0e0e0e;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  font-family: 'Source Sans Pro';
}

.blog-main .blog-excerpt {
  color: #6B6668;
  font-size: 18px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 15px;
}

.blog-main .blog-meta {
  font-size: 13px;
  color: #777;
}

.blog-main .blog-right {
  position: sticky;
  top: 40px;
}

.blog-main .search-box {
  display: flex;
  margin-bottom: 30px;
}

.blog-main .search-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
}

.blog-main .search-box button {
  background: #926c24;
  color: #fff;
  border: 1px solid #926c24;
  padding: 10px 15px;
  cursor: pointer;
}

.blog-main .recent-posts h4 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid #926c24;
  display: inline-block;
  padding-bottom: 5px;
}

.blog-main .recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-main .recent-posts li {
  margin-bottom: 15px;
}

.blog-main .recent-posts a {
  color: #121B24;
  text-decoration: none;
}

.blog-main .recent-posts a:hover {
  text-decoration: underline;
}

/*==========================single blog page css=================================*/
.single-posts-items {
    display: grid;
    gap: 10px;
}
.hero-service h2 {
  color: white;
  font-size: 45px !important;
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 auto !important;
  max-width: 1000px !important;
}

.single-blog-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}

.single-blog-header {
  position: relative;
  background-color: #f8f7f2;
  color: #121B24;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: -98px auto 10px auto;
}

.single-blog-news-tag {
  transform: translate(-50%, -50%);
  background-color: #8b5e3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 7px 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-decoration: none;
}

.single-blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 16px;
}

.single-blog-avatar {
  border-radius: 50%;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.single-blog-separator {
  margin: 0 8px;
}

.single-blog-comment-link {
  color: #6b7280;
  text-decoration: none;
}

.single-blog-comment-link:hover {
  text-decoration: underline;
}

.single-blog-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.single-blog-paragraph {
  margin-bottom: 24px;
  line-height: 1.75;
}

.single-blog-bold {
  font-weight: bold;
}

.single-blog-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.single-blog-contact-info {
  margin-top: 32px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
}

.single-blog-contact-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.single-blog-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.single-blog-contact-item span {
  margin-left: 8px;
  color: #4b5563;
}

.single-blog-contact-address span {
  margin-top: 4px;
}

.single-blog-social-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.single-blog-social-link {
  color: #2563eb;
  text-decoration: none;
}

.single-blog-social-link:hover {
  text-decoration: underline;
}

.single-blog-sidebar {
  background-color: #f8f7f2;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 90px;
  align-self: start;
  height: fit-content;
}

.single-blog-search-section {
  margin-bottom: 20px;
}

.single-blog-search-input-wrapper {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
}

.single-blog-search-input {
  flex-grow: 1;
  padding: 8px;
  outline: none;
  background-color: #fff;
  color: #374151;
  border: none;
}

.single-blog-search-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.single-blog-sidebar-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.single-blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-blog-list-item {
  margin-bottom: 8px;
}

.single-blog-list-link {
  color: #000;
  text-decoration: none;
}

.single-blog-list-link:hover {
  color: #8b5e3c;
  text-decoration: underline;
}

a#resetFilters {
    flex: 1;
    padding: 12px 10px;
    background: #926c24;
    color: white;
    border: 1px solid #926c24;
    border-radius: 6px;
    font-size: 18px;
    font-family: "Source Sans Pro", serif;
    text-decoration: none;
    text-align: center;
}
/*============================single product page css================*/
.single-products {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px;
}

.single-products .product-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}

.product-image {
  border: 1px solid #926c24;
}
.product-image .swiper-slide {
    flex-shrink: 0;
    width: 100px;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}
.single-products .product-main img {
  width: 100%;
  max-width: 500px;
  transition: transform 0.4s ease;
}

.single-products .product-main img:hover {
  transform: scale(1.05);
}

.single-products .product-details h2 {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #926c24;
}

.single-products .price {
  font-size: 20px;
  margin: 15px 0;
}

.single-products .quantity-add {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 27px;
}

.single-products .quantity-add input {
  width: 50px;
  padding: 10px;
  text-align: center;
}

.single-products .quantity-add a {
  background: #926c24;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  transition: background 0.3s;
}

.single-products .quantity-add a:hover {
  background: #926c24de;
}

/* Tabs Section */
.single-products .product-tabs {
  margin-top: 40px;
}

.single-products .tabs {
  display: flex;
}

.single-products .tabs button {
  background: #121b24;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  margin-right: 5px;
  font-size: 18px;
  color: #fff;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
  font-family: 'Source Sans Pro';
}

.single-products .tabs button:hover {
  background: #121b24;
  color: #fff;
}

.single-products .tabs button.active {
  background: #926c24;
  color: #fff;
}

.single-products .tab-content {
  margin-top: 15px;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fafafa;
  display: none;
}

.single-products .tab-content.active {
  display: block;
}

.single-products .tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-products .tab-content ul li {
  margin-bottom: 8px;
}

/* Related products */
.single-products .related-products {
  margin-top: 50px;
}

.single-products .related-products h2 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
}

.single-products .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.single-products .related-item {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-products .related-item img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.single-products .related-item img:hover {
  transform: scale(1.1);
}

.single-products .related-item h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 15px 0;
  font-family: 'Source Sans Pro';
  color: #6b6668 !important;
}

.single-products .related-item .price {
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 5px;
}

.single-products .related-item a {
  background: #6B6668;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
  margin: 0 auto 12px auto;
  transition: background 0.3s;
}

.single-products .related-item a:hover {
  background: #926c24;
  color: #fff;
}

/*new css slide popup single product*/

/* WhatsApp & Popup Buttons */
.quantity-add {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: 150px;
  justify-content: center;
  height: 40px;
}

.whatsapp-btn i {
  font-size: 18px;
}

.popup-btn {
  background-color: #926c24;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  height: 40px;
  display: flex;
  align-items: center;
}

/* Popup Form Overlay */
.popup-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 27, 36, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-form-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Form Layout */
.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}

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

.submit-btn {
  background-color: #926c24;
  color: #fff;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Thumbnail Gallery */
.product-thumbnails {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.product-thumbnails img.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.product-thumbnails img.thumb.active {
  border: 2px solid #926c24;
}

.product-details {
  background: #926c2414;
  padding: 30px;
}

/*===========================================*/
.product-details,
.product-image {
  width: 49%;
}

.main-slider {
  width: 100%;
}

.main-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-slider .swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 28px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #926c24;
}


/*================PRODUCT PAGE CSS =========================*/
.pm-products {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
}

.pm-products-container {
  gap: 30px;
  display: flex;
}

.pm-products-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  height: fit-content;
  border: 1px solid #eee;
  padding: 20px;
  background: #f7f2e5;
}

.pm-products-sidebar h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #926c24;
  font-weight: 400;
  font-family: "Source Sans Pro", serif;
}

.pm-products-filter-group {
  margin-bottom: 20px;
}

.pm-products-filter-group h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  font-family: "Source Sans Pro", serif;
  color: #926c24;
}

.pm-product-item h5:hover {
  color: #926c24;
}

.pm-products-filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  cursor: pointer;
  font-family: "Source Sans Pro", serif;
  color: #926c24;
  font-weight: 400;
}

.pm-products-filter-group label:hover {
  color: #333;
}

.pm-products-filter-group input[type="checkbox"] {
  margin-right: 6px;
  vertical-align: middle;
}

.pm-products-filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.pm-products-filter-actions button {
  flex: 1;
  padding: 12px 10px;
  background: #926c24;
  color: white;
  border: 1px solid #926c24;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Source Sans Pro", serif;
}

.pm-products-filter-actions button:hover {
  background: transparent;
  color: #926c24;
  border: 1px solid #926c24;
}

.pm-products-content {
  flex: 1;
  min-width: 0;
}

.pm-products-tags {
  margin-bottom: 20px;
}

.pm-tag {
  display: inline-block;
  background: #0073e600;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 16px;
  border: 1px solid #926c24;
  margin: 0 8px 8px 0;
  cursor: pointer;
  font-family: "Source Sans Pro", serif;
}

.pm-products-grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pm-product-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  transition: 0.3s ease;
}

.pm-product-item a {
  text-decoration: none;
  color: inherit;
}

.pm-product-item img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.pm-product-item:hover img {
  transform: scale(1.05);
}

.pm-product-item h5 {
  font-size: 18px;
  font-weight: 400;
  color: #6B6668;
  font-family: "Source Sans Pro", serif;
  margin: 0 0 12px;
  line-height: 1.2em;
}

.pm-product-item .price {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.pm-products-pagination {
  margin-top: 30px;
  text-align: center;
}

.pm-products-pagination button {
  background: #eee;
  border: none;
  margin: 0 5px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.pm-products-pagination button.active,
.pm-products-pagination button:hover {
  background: #0073e6;
  color: white;
}

.pm-sorting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 0px 0px 20px 0px;
  margin-bottom: 20px;
}

.sorting-left h2 {
  font-size: 30px;
  color: #926c24;
  margin: 0 0 8px 0;
  font-weight: normal;
}

.result-count {
  color: #555;
  margin: 0;
}

.sorting-right {
  display: flex;
  align-items: center;
}

.sort-label {
  margin-right: 10px;
  font-size: 14px;
  color: #333;
}

#sort-select {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: none;
}




/*===================================================RESPONSIVE DESIGN CSS=================================*/



.pagination svg {
    width: 28px;
}
.pagination nav.flex.items-center.justify-between .flex.justify-between.flex-1.sm\:hidden {
    display: none;
}
.pagination nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pagination nav > div:last-child div:last-child span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pagination nav > div:last-child div:last-child span a {
    color: #000;
    text-decoration: none;
}
.pagination nav > div:last-child p {
    color: #000;
    font-size: 16px;
}






.h-about {
    padding: 50px 20px !important;
}

.home-faq {
    background-color: #121B24 !important;
}

section.contact-form {
    max-width: 1200px;
    margin: 0 auto;
}

.book-info .icon-circle {
    width: 90px !important;
    height: 90px !important;
}


@media (max-width: 1125px) {
  .nav-menu {
    gap: 20px;
  }
  .single-products .product-main {
    display: flex;
    flex-wrap: wrap;
  }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .all-header {
    padding: 10px 0;
  }
  .ab-first {
    margin-top: 90px;
  }
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
 

  p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: "Source Sans Pro", sans-serif;
  }

  .h-about-container {
    flex-direction: column;
    align-items: center;
  }

  .h-about-content-left,
  .h-about-content-right {
    min-width: unset;
    width: 100%;
    max-width: 700px;
  }

  .h-about-content-right {
    padding-bottom: 60%;
  }

  .h-about-small-image {
    bottom: -10px;
    left: 10px;
    width: 30%;
  }

  .h-about-stats-container {
    justify-content: center;
  }

  .h-about-stat-item {
    min-width: 150px;
  }

  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-faq-content-left {
    padding-right: 0; 
  }

  .home-faq-intro-text {
    margin-left: auto;
    margin-right: auto;
  }
 
  .blog-sec-title {
    font-size: 20px;
  }

  .blog-sec-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-sec-heading {
    font-size: 38px;
  }

  .blog-sec-title {
    font-size: 20px;
  }

  .Glowing {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    margin: 60px auto;
  }

  .Glowing-content-left {
    text-align: center;
  }

  .Glowing-heading {
    font-size: 42px;
  }

  .Glowing-text {
    font-size: 17px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .Glowing-button {
    margin: 0 auto;
  }


  /*footer start*/
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-about {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-description {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col-address,
  .footer-col-contacts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  /*footer end*/


  /*========kaloya signature facial-====*/
  .kolaya-sign .image-container {
    flex: 0 0 55%;
  }

  .kolaya-sign .content-container {
    flex: 0 0 45%;
    padding: 50px 30px;
  }

  .ksf-skincare .ksf-inner-container {
    gap: 40px;
    padding: 0 30px;
  }

  .ksf-skincare .ksf-main-image {
    width: 350px;
    height: 300px;
  }

  .ksf-skincare .ksf-secondary-image {
    width: 220px;
    height: 180px;
  }

  .course-tabl-heading {
    font-size: 30px;
  }

  .course-tabl-subheading {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .course-tabl-price {
    font-size: 28px;
  }

  .course-tabl-title {
    font-size: 18px;
  }

  .course-tabl-desc {
    font-size: 14px;
  }

  /*===SPECAILS PAGE CSS 1024====*/

  .sp-unwind-grid {
    gap: 20px;
  }

  .sp-box {
    padding: 20px 15px;
  }

  .choose-specials .choose-inner {
    gap: 40px;
  }

  .choose-specials .overlay-img {
    bottom: -20px;
    left: -20px;
    max-width: 200px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
 
  .ksf-skincare img.ksf-secondary-image2{
    display: none;
  }

  .ksf-skincare .ksf-main-image2{
    width: 100%;
    min-width: unset;
  }
  .ksf-spacer-inner {
    --spacer-size: 400px;
  }
}

@media (max-width: 991px) {
  .hero-service .hero-title,
  .hero-title {
      font-size: 2.5rem;
  }
  h2,
  .h-about-stat-number,
  .blog-sec-heading,
  .Glowing-heading,
  .hometesti-title,
  .home-faq-heading,
  .deserves-heading {
    font-size: 2.1rem;
  }
  .deserves-intro-tag {
    font-size: 16px;
  }
  .h-about-content-left, .h-about-content-right{
    max-width: 100%;
  } 
  .home-faq-intro-text {
      max-width: 600px;
      width: 100%;
  }

  .deserves {
    padding: 40px 20px 0;
  }
  .deserves-cards-containers {
    padding: 0 20px 40px;
  }
  .deserves-cards-container {
    margin-top: 0;
    gap: 20px;
    margin-bottom: 40px;
  }
  .deserves-button-primary {
    font-size: 14px;
  }
  .deserves-card-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .single-blog-wrapper,
  .blog-main,
  .cont-map,
  .ab-commint,
  .hometesti,
  .home-faq,
  .h-about {
    padding: 40px 20px;
  }
  .h-about-stats-container {
    margin: 40px auto 0 auto;
  }
  .Glowing,
  .services {
    margin: 40px auto;
  }
  section.home-faq .home-faq-intro-text{
    max-width: unset;
    margin-bottom: 25px;
  }

  /*about-us*/
  .ab-first .content-section {
    width: 50%;
  }
  .ab-spce{
    gap: 30px;
    margin-bottom: 40px;
  }
  .ab-promise {
    gap: 30px;
  }
  section#contact-info {
    flex-wrap: wrap;
  }

  /*contact us*/

  .cont-map-inner{
    gap: 30px;
  }
  .ab-spce .content-container{
    padding-left: 0;
  }
  #ab-end p {
    margin-bottom: 20px;
  }

  /*blog*/
  section.hero-section.hero-service {
    min-height: 300px;
  }
  .blog-main .blog-title a {
    font-size: 20px;
  }
  .blog-main .blog-grid{
    gap: 30px;
  }

  /*blog details*/
  .hero-service h2 {
    font-size: 34px !important;
  }
  .jurney-tab .register-button{
    margin-top: 16px;
  }


  .pm-products-container {
    flex-wrap: wrap;
  }
  .pm-products-content {
    width: 100%;
    flex: unset;
  }
  .pm-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pm-products-sidebar {
    display: none;
  }
  .filter-mobile-toggle {
    padding: 8px 10px;
    width: auto;
    border: 2px solid black;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 120px;
    margin-bottom: 10px;
  }
  .pm-products-sidebar {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    box-shadow: 0 0 5px 2px #505050;
  }
  .filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .filter-header span.close-filter {
    display: flex;
    align-items: center;
    position: relative;
    top: -15px;
    right: -10px;
    font-size: 20px;
    padding: 10px;
  }
  aside.pm-products-sidebar.show {
    display: block;
}

  .product-details, .product-image {
    width: 100%;
}
.single-products .product-main {
        gap: 30px;
    }

}


@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }


  h2,
  .h-about-stat-number, 
  .blog-sec-heading, 
  .Glowing-heading, 
  .hometesti-title, 
  .home-faq-heading, 
  .deserves-heading {
    font-size: 1.7rem;
  }
  
  .deserves-intro-tag {
    font-size: 14px;
    margin-bottom: 20px;

  }

  .h-about-content-left {
    text-align: center;
  }

  .book-now-btn {
    display: none;
  }

  .logo-text h1 {
    font-size: 28px;
  }

/*  h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2em;
  }*/

  p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: "Source Sans Pro", sans-serif;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 200px;
  }

  .mobile-menu {
    width: 280px;
  }

  /*2nd section*/

  .deserves-cards-container {
      grid-template-columns: repeat(2, 1fr);
  }
  
  /*home bout section*/
  .h-about {
    padding: 40px 15px;
  }

  .h-about-content-right {
    padding-bottom: 70%;
  }

  .h-about-small-image {
    width: 35%;
    bottom: 10px;
    left: 5px;
  }

  .h-about-stats-container {
    flex-direction: column;
    gap: 20px; 
  }

  .h-about-stat-item {
    width: 100%;
  }

  .h-about-stat-number {
    font-size: 36px;
  }

  .h-about-stat-description {
    font-size: 15px;
  }


  .services {
    padding: 0 15px;
  }
 
  .services-box {
    min-height: 300px;
  }

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

  .services-description {
    margin: 0 auto 30px auto;
  }
 
  .home-faq {
    padding: 38px 20px 50px 20px;
  }

  .home-faq-question {
    font-size: 17px;
  }

  .home-faq-answer {
    font-size: 14px;
  }

  .home-faq-image {
    max-width: 100%;
    height: 280px;
  }

  .hometesti {
    padding: 40px 15px;
  }


  .hometesti-quote {
    font-size: 16px;
    padding: 0 10px;
  }

  .hometesti-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hometesti-nav-prev {
    left: -20px;
  }

  .hometesti-nav-next {
    right: -20px;
  }

  .hometesti-dots {
    display: flex;
  }

  .blog-main{
      padding: 40px 15px;
  }
  .blog-main .blog-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-sec {
    padding: 0 20px;
    margin: 45px auto;
  }

  .blog-sec-description {
    margin-bottom: 40px;
  } 
  .blog-sec-image {
    height: 200px;
  }

  .blog-sec-card-content {
    padding: 20px;
  }

  .blog-sec-title {
    font-size: 20px;
  }

  .blog-sec-more-tips {
    margin-top: 40px;
    font-size: 15px;
  }


  .Glowing-button {
    font-size: 13px;
    padding: 12px 25px;
  }

  .Glowing-slider-handle {
    width: 40px;
    height: 40px;
  }

  /*footer start*/
  .footer {
    padding: 40px 15px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-col-about {
    grid-column: span 1;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-address-text,
  .footer-hours-text,
  .footer-contact-item,
  .footer-description {
    font-size: 14px;
  }

  .footer-logo {
    font-size: 24px;
  }

  .footer-logo span {
    font-size: 12px;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 12px;
    padding-top: 15px;
  }

  .whatsapp-fixed-icon {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .call-fixed-icon{
     bottom: 80px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    
  }

  /*footer end*/

  /*=======================*******&&& ABOUT US PAGE  &&&&&&******===================*/
  
  section.contact-form .content-container {
    width: 95%;
  }
  .contact-form .form-group label {
    width: 100%;
    text-align: left;
  }
  .ab-first{
    min-height: auto;
  }
  .ab-first .content-section {
    max-width: 100%;
    padding: 40px 20px;
    width: 60%;
  }

  .ab-first .image-section {
    min-height: 400px;
  }

  .ab-commint {
    padding: 40px 20px;
  }

  .ab-promise .image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }

  .ab-logo {
    margin-bottom: 40px;
  }

  .ab-logo img {
    height: 40px;
    margin: 0 10px;
  }

  .ab-spce,
  .ab-promise {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .ab-spce {
    margin-bottom: 30px;
  }

  .ab-spce .content-container,
  .ab-promise .content-container {
    padding: 0;
  }
  .ab-promise .content-container{
    order: 1;
  }
  .ab-diffrent {
    flex-direction: column;
  }

  .ab-diffrent .ab-image-container {
    min-height: 300px !important;
  }

  .ab-diffrent .ab-content-container {
    padding: 40px 20px;
  }

  .ab-diffrent .ab-content-wrapper {
    max-width: 100%;
    margin-top: -20px;
  }

  .ab-diffrent .ab-description {
    margin-bottom: 30px;
  }

  .ab-logo {
    padding-bottom: 0px;
  }

  .ab-commint div#ab-logo {
    padding: 30px 20px 0px 20px;
  }

  div#ab-logo p {
    margin-bottom: -25px;
  }

  #ab-end .ab-spce {
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .contact-form {
    margin-bottom: 0;
    margin-top: 20px;
  }

  #ab-end .ab-promise {
    display: flex;
    flex-direction: column-reverse;
  }

  /*=====services page =============*/
  .hero-service {
    height: 300px;
  }

 

  .hero-service .hero-paragraph {
    font-size: 20px;
  }

  /*=============kaloya sign facial page ================*/
  .kolaya-sign {
    flex-direction: column;
  }

  .kolaya-sign .image-container {
    flex: none;
    min-height: 400px;
  }

  .kolaya-sign .content-container {
    flex: none;
    padding: 40px 15px;
    text-align: center;
  }

  .kolaya-sign .content-wrapper {
    max-width: 100%;
  }

  section.ksf-benifits {
    grid-template-columns: 1fr;
    padding: 0px 15px 30px;
  }

  #invovation {
    padding: 30px 20px 0px 20px;
  }

  #invovation h2 {
    margin-bottom: 20px;
  }

  .ksf-benifits .ksf-main-image {
    position: absolute;
    top: -88px;
  }

  .ksf-skincare {
    padding: 40px 0;
  } 
  .ksf-skincare .ksf-inner-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .ksf-skincare .ksf-content-section {
    max-width: 100%;
  }

  .ksf-skincare .ksf-images-section {
    min-height: 400px;
    position: relative;
  }

  .ksf-skincare .ksf-main-image {
    position: relative;
    width: 100%;
    height: 280px;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 20px;
  }

  .ksf-skincare .ksf-secondary-image {
    position: relative;
    width: 80%;
    height: 180px;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
    display: block;
    margin-top: -57px;
  }

  section.ksf-faq {
    padding: 40px 15px;
  }
  .ksf-end .ksf-content-wrapper{
    max-width: unset;
  }
  .ksf-benifits .ksf-small-image {
    height: auto;
  }
  .ksf-end {
    flex-direction: column-reverse;
  }

  .ksf-end .ksf-content-container {
    max-width: 100%;
    padding: 30px 20px 40px 20px;
  }

  .ksf-end .ksf-image-container {
    min-height: 300px;
  }

  .ksf-end {
    min-height: 300px;
  }

  /*========traning and corses =====*/
  .jurney-tab {
    padding: 10px;
  }

  .jurney-tab .tab-button {
    flex-grow: 1;
    text-align: center;
  }

  .jurney-tab .tab-content h3 {
    font-size: 24px;
  }

  .jurney-tab .tab-content h4 {
    font-size: 20px;
  }

  .jurney-tab .tab-content p,
  .jurney-tab .tab-content li {
    font-size: 16px;
  }


  .course-tabl {
    padding: 40px 15px;
  }

  .course-tabl-heading {
    font-size: 26px;
  }

  .course-tabl-subheading {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .course-tabl-grid {
    grid-template-columns: 1fr;
  }

  .course-tabl-price {
    font-size: 24px;
  }

  .course-tabl-title {
    font-size: 17px;
  }

  .course-tabl-desc {
    font-size: 13.5px;
  }

  .course-tabl-list {
    font-size: 13.5px;
    padding: 0 20px;
  }

  div#doctor {
    /* padding-bottom: 0px !important; */
    margin-bottom: -92px !important;
  }

  section.ksf-benifits {
    gap: 20px;
  }

  /*===SPECAILS PAGE CSS 768====*/
  .sp-box {
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .sp-box p {
    margin-bottom: 0;
  }
  .sp-unwind {
    padding: 40px 15px 50px;
  }

  .sp-unwind-heading {
    padding-bottom: 30px;
  }

  .sp-box h3 {
    font-size: 22px;
  }

  .sp-unwind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 30px;
  }

  .choose-specials {
    padding: 45px 20px 120px 20px;
  }

  .choose-specials .choose-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .choose-specials ul {
    align-items: center;
  }

  .choose-specials li {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .choose-specials .choose-right {
    margin-top: 40px;
  }

  .choose-specials .overlay-img {
    position: absolute;
    left: 10px;
    bottom: -70px;
  }

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

  .info-box h4 {
    font-size: 13px;
  }

  .info-box p,
  .info-box a {
    font-size: 14px;
  }

  .cont-map {
    padding: 35px 15px 0;
  }

  .cont-map-inner {
    gap: 25px;
  }

  .cont-map .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 30px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  div#contact-end {
    margin-top: 0px !important;
  }

  .blog-main .blog-grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .blog-main .blog-right {
    position: static;
    margin-top: 30px;
    margin-bottom: -14px;
  }

  .blog-main .search-box {
    display: flex;
    margin-bottom: 20px;
  }

  .blog-main .blog-image {
    height: 220px;
  }

  .blog-main .blog-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  /*============single blog css page ====================*/
  .hero-service h2 {
    font-size: 30px !important;
  }

  .single-blog-content-wrapper {
    grid-template-columns: 1fr 300px;
  }

  .single-blog-sidebar {
    position: sticky;
    top: 32px;
    align-self: start;
    height: fit-content;
  }

  .single-blog-content-wrapper {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  /*=====single product page css======*/
  .single-products .product-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .single-products .related-products {
    margin-top: 30px;
  }

  .single-products .product-tabs {
    margin-top: 25px;
  }

  .single-products .product-details h2 {
    font-size: 24px;
  }

  .book-info {
    padding: 40px 20px;
    text-align: center;
  }

  .book-info .book-footer {
    margin-top: 30px;
  }

  .product-image {
    border: 1px solid #926c24;
    max-width: 96%;
  }

  .product-details {
    padding: 20px;
    margin-right: 14px;
    margin-top: 20px;
  }

  /*product page=====*/
  .pm-products {
    padding: 40px 15px 30px;
    box-sizing: border-box;
  }

  .pm-products-container {
    flex-direction: column;
    gap: 20px;
  }

  .pm-products-sidebar {
    width: 100%;
    margin: 0 auto;
    position: static;
  }

  section.pm-sorting {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .kolaya-sign #contact-img {
    min-height: 300px;
    height: 300px;
  }
  .cont-map-inner{
    flex-wrap: wrap;
  }
  section#ab-end .content-container {
    width: 100%;
  }
  .single-blog-wrapper{
    padding: 40px 15px;
  }
  .single-blog-sidebar-heading {
    font-size: 20px;
  }
  .hero-service .hero-paragraph{
    margin-bottom: 0;
  }
  .services-grid-container{
    gap: 20px;
  }
  div#ab-cont-img,
  .ksf-skincare .ksf-secondary-image{
    display: none;
  }
  .ksf-skincare .ksf-images-section {
    min-height: auto;
  }


  .pm-products-grid {
    grid-template-columns: repeat(2, 1fr);
        gap: 15px;
  }
  .sorting-left {
    width: 100%;
  }
  .sorting-left >div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sorting-left >div .filter-mobile-toggle {
    order: 1;
  }
  p.result-count {
    text-align: center;
}
}

/*==========================================480PX=======================================================*/
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo-text h1 {
    font-size: 24px;
  }
  h2, 
  .h-about-stat-number, 
  .blog-sec-heading,
   .Glowing-heading, 
   .hometesti-title,
    .home-faq-heading, 
    .deserves-heading {
    font-size: 1.5rem;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  /*2nd section*/

  .deserves-intro-tag {
    font-size: 9px;
    padding: 6px 12px;
  }

  .deserves-button-primary,
  .deserves-card-button {
    font-size: 10px;
    padding: 10px 20px;
  }


  /*home-about us section*/
  .h-about-content-right {
    padding-bottom: 80%;
  }

  .h-about-small-image {
    width: 40%;
  }

  .services-overlay-content {
    padding: 20px;
  }

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

  .services-learn-more {
    font-size: 11px;
    padding: 8px 15px;
  }

  .home-faq-question {
    font-size: 16px;
  }

  .hometesti-nav {
    display: none;
  }

  .hometesti-dots {
    display: flex;
  }

  .blog-sec-category {
    font-size: 10px;
    padding: 5px 10px;
  }

  .blog-sec-button {
    font-size: 11px;
    padding: 8px 15px;
  }

  .Glowing {
    margin: 40px auto;
  }

  .Glowing-button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .Glowing-slider-handle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /*footer start*/
  .footer-heading {
    font-size: 18px;
  }

  .footer-address-text,
  .footer-hours-text,
  .footer-contact-item,
  .footer-description {
    font-size: 13px;
  }

  .footer-contact-item i {
    font-size: 16px;
  }

  .whatsapp-fixed-icon {
    bottom: 10px;
    left: 10px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

   .call-fixed-icon{
    bottom: 60px;
    left: 10px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  /*footer end*/


  /*&&&*****ABOUT US PAGE *****&&&&&&&*/

  .ab-commint {
    padding: 30px 15px;
  }

  .ab-spce,
  .ab-promise {
    gap: 20px;
  }

  .ab-diffrent .ab-content-container {
    padding: 30px 20px;
  }


  /*kaloya sign. facial page*/

  .kolaya-sign .image-container {
    min-height: 300px !important;
  }

  .kolaya-sign .content-container {
    padding: 30px 15px;
  }

  .ksf-skincare {
    padding: 40px 0;
  }

  .ksf-skincare .ksf-inner-container {
    padding: 0 15px;
  }

  .ksf-skincare .ksf-feature-item {
    margin-bottom: 25px;
  }

  .ksf-skincare .ksf-feature-icon {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
  .blog-sec-grid,
  .services-grid-container,
  .deserves-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .deserves {
    padding: 40px 15px 0;
  }
  .deserves-cards-containers {
      padding: 0 15px 40px;
  }

  /*about us*/
  
  .ab-first {
      flex-direction: column;
  }
  .ab-first .content-section {
    width: 100%;
    order: 1;
    text-align: center;
  }
  .kolaya-sign .image-container,
  .ab-first .image-section {
      min-height: 300px;
  }
  .blog-main .blog-left {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .blog-main .blog-content {
    padding: 15px;
  }
  .blog-main .blog-excerpt {
    font-size: 14px;
  }
  .blog-main .blog-right{
    margin-top: 0;
  }

  .pm-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-----------------------------------------------------------*/


.pro-gallry {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; 
    margin-top: 40px;
  }

  .pro-gallry h2 {
    font-size: 28px;
    color: #926c24;
    margin-bottom: 30px;
    position: relative;
  }

  /* round images section */
  .pro-gallry .circle-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .pro-gallry .circle {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #926c24;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .pro-gallry .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }
   .pro-gallry .circle::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(146, 108, 36, 0.6); 
opacity: 0;
transition: 0.4s;
}

.pro-gallry .circle:hover::after {
opacity: 1;
}

  .pro-gallry .circle p {
    position: absolute;
    top:40%;
    left: 0;
    right: 0;
    text-align: center;
    color: #121b24;
     z-index: 1;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .pro-gallry .circle p a{
    color: #121b24;
    text-decoration: none;

  }

  .pro-gallry .circle:hover p {
    opacity: 1;
  }

  .pro-gallry .circle-btn {
    margin-top: 12px;
    background: #121b24;
    color: white;
    border-radius: 20px;
    padding: 6px 16px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }

  .pro-gallry .circle-btn:hover {
    background: #6d4f19;
  }

  /* grid gallery */
  .pro-gallry .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0;
  }

  .pro-gallry .grid-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
  }

  .pro-gallry .grid-item img {
    width: 100%;
    display: block;
    transition: 0.4s;
    aspect-ratio: 1;
    height: auto;
  }

  .pro-gallry .grid-item:hover img {
    filter: brightness(100%) sepia(1) hue-rotate(15deg) saturate(100%);
  }

  .pro-gallry .grid-item div {
    margin: 10px 0;
    font-weight: 600;
  color: #121b24;
  }

  /* Before-After card style */
  .pro-gallry .before-after {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ddd;
  }

  .pro-gallry .before-after img {
    width: 100%;
    transition: 0.4s;
  }

  .pro-gallry .before-after:hover img {
     filter: brightness(80%) sepia(1) hue-rotate(15deg) saturate(60%);
  }

  .pro-gallry .before-after p {
    margin: 10px 0;
    font-weight: 600;
  color: #121b24;
  }

  /* View all pics link */
  .pro-gallry h4 {
    margin-top: 20px;
    font-size: 18px;
  }

  .pro-gallry h4 a {
    color: #926c24;
    text-decoration: none;
    font-weight: bold;
  }

  .pro-gallry h4 a:hover {
    text-decoration: underline;
  }


  /*=======================================review page css===============================*/
   .review {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: "Source Sans Pro", sans-serif;
    color: #121b24;
  }
  .review h2 {
    font-family: "Lora", serif;
    color: #926c24;
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0 1.5rem;
  }

  /* grid */
  .review .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px,1fr));
    gap: 1.2rem;
  }
  .review .cards-video {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.2rem;
  }

  /* text review card */
  .review .card {
    border: 1px solid #926c24;
    border-radius: 8px;
    padding: 1.2rem;
    background: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .review .card:hover {
    box-shadow: 0 6px 16px rgba(18,27,36,0.15);
    transform: translateY(-4px);
  }
  .review .card p.text {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  .review .rating {
    color: #926c24;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .review .card .author {
    font-weight: bold;
    color: #926c24;
    font-family: "Lora", serif;
    text-align: right;
  }

  /* video card */
  .review .video-card {
    border: 1px solid #926c24;
    border-radius: 8px;
    background: #000;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .review .video-card iframe {
    width: 100%;
    height: 200px;
    display: block;
  }
  .review .video-card:hover {
    box-shadow: 0 6px 16px rgba(18,27,36,0.2);
    transform: translateY(-4px);
  }
  .review .video-card .rating {
    color: #926c24;
    font-size: 1.1rem;
    text-align: center;
    padding: 0.5rem 0;
    background: #fff;
  }

  @media (max-width: 767px) {
    .review h2 { font-size: 1.6rem; }
    .review .card p.text { font-size: 0.9rem; }
    .review .video-card iframe { height: 180px; }
    .review .cards { grid-template-columns: 1fr;}
    .review .cards-video { grid-template-columns: 1fr;}

  .ksf-spacer-inner {
    --spacer-size: 300px;
  }
  }












.Glowing-content-right {
    position: relative; 
    max-width: 100%;
    overflow: hidden;
    height: 100vh;
}

.Glowing-image {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* initially half visible */
}

.Glowing-slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 10;
    pointer-events: none;
}

.Glowing-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Glowing-slider-handle i {
    color: #000;
    font-size: 12px;
}



/* ===================== FORM WRAPPER ===================== */
.tc-form-section {
    padding: 20px 0 40px 0;
    background: #fff;
}

.tc-form-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* ===================== HEADINGS ===================== */
.tc-form-title {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

.tc-form-subtitle {
    font-size: 15px;
    color: #444;
    margin-bottom: 30px;
}

/* ===================== FORM ===================== */
.tc-form {
    width: 100%;
}

.tc-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tc-row input,
.tc-row select {
    flex: 1;
}

.tc-input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tc-textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    height: 140px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ===================== LABEL ===================== */
.tc-label {
    font-weight: 600;
    color: #444;
    text-align: left;
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

/* ===================== CHECKBOX ===================== */
.tc-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.tc-checkbox {
    margin-top: 4px;
}

.tc-checkbox-label {
    font-size: 14px;
    color: #555;
}

/* ===================== SUBMIT BUTTON ===================== */
.tc-submit-row {
    margin-top: 25px;
}

.tc-submit-btn {
  background-color: #a3772c;
  color: white;
  padding: 8px 25px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}


