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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Berkshire Swash", serif;
  /* font-family: "Yatra One", system-ui; */
}

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c79d5c 0%, #222 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 2rem;
}

.loader-logo {
  margin-bottom: 2rem;
}

.loader-logo-img {
  width: 120px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-spinner {
  margin-bottom: 2rem;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #c79d5c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.loader-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  animation: textFade 2s ease-in-out infinite;
}

.loader-text p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
  animation: textFade 2s ease-in-out infinite 0.5s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes textFade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Hide body content while loading */
/*body.loading {*/
/*  overflow: hidden;*/
/*}*/

/* Smooth Animations */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Performance optimizations */
.will-change {
  will-change: transform, opacity;
}

/* Optimize animations for better performance */
.scroll-animation,
.slide-up,
.fade-in,
.logo-animation {
  will-change: transform, opacity;
}

/* Custom Scroll Animations */
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

.logo-animation {
  opacity: 0;
  transform: scale(0.8);
  animation: logoAppear 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

/* Smooth hover effects */
.custom-btn, .custom-btn2 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  position: relative;
  overflow: hidden;
}

.custom-btn::before, .custom-btn2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-btn:hover::before, .custom-btn2:hover::before {
  left: 100%;
}

.custom-btn:hover, .custom-btn2:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 157, 92, 0.3);
}

/* Feature items animation */
.feature-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Smooth modal animations */
.modal.fade .modal-dialog {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.8) translateY(-50px);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* Animation keyframes */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hero section enhancements */
.hero-section .content-overlay {
  animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-section .main-title {
  animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

.hero-section .subtitle {
  animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.7s;
}

.hero-section .custom-btn {
  animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.9s;
}

/* Floating animation for feature icons */
.feature-item .icon {
  animation: float 3s ease-in-out infinite;
}

/* Pulse animation for important elements */
.cta-button {
  animation: pulse 2s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced AOS animations */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth navigation animations */
.navbar-nav .nav-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c79d5c;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Smooth form animations */
.form-control {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 157, 92, 0.15);
}

/* Smooth card animations */
.card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Smooth image animations */
img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img:hover {
  transform: scale(1.05);
}

/* Smooth social icon animations */
.social-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Smooth modal backdrop */
.modal-backdrop {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #c79d5c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a67c3a;
}

/* User Profile Dropdown Styles */
.user-profile-dropdown {
  position: relative;
}

.user-profile-dropdown .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: #333;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}

.user-profile-dropdown .btn:hover {
  background: rgba(199, 157, 92, 0.15);
  color: #c79d5c;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c79d5c;
  box-shadow: 0 2px 8px rgba(199, 157, 92, 0.2);
}

.user-name {
  font-weight: 600;
  color: #333;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.dropdown-item {
  padding: 12px 16px;
  color: #333;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  margin: 2px 8px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.1) 0%, rgba(199, 157, 92, 0.05) 100%);
  color: #c79d5c;
  transform: translateX(5px);
}

.dropdown-divider {
  margin: 8px 0;
  border-color: rgba(199, 157, 92, 0.2);
}

/* Navigation Styles */
.main-nav {
  background: linear-gradient(45deg, #1e1e1d, #c79d5c);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  border-bottom: 1px solid rgba(199, 157, 92, 0.1);
}

.navbar-brand img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(199, 157, 92, 0.2));
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #333;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 2px;
}

.navbar-nav .nav-link:hover {
  color: #c79d5c;
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.1) 0%, rgba(199, 157, 92, 0.05) 100%);
  transform: translateY(-1px);
}

.btn-register {
  background: linear-gradient(135deg, #c79d5c 0%, #a67c3a 100%);
  color: white !important;
  border-radius: 25px;
  padding: 12px 28px !important;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(199, 157, 92, 0.3);
  border: none;
}

.btn-register:hover {
  background: linear-gradient(135deg, #a67c3a 0%, #8b6b2e 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 157, 92, 0.4);
  color: white !important;
}

/* Mobile responsive navigation */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .navbar-toggler {
    display: block;
    border: 2px solid #c79d5c;
    border-radius: 6px;
    padding: 4px 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(199, 157, 92, 0.25);
  }
  
  .user-profile-dropdown .btn {
    padding: 6px 8px;
  }
  
  .user-avatar {
    width: 28px;
    height: 28px;
  }
  
  .user-name {
    max-width: 80px;
    font-size: 0.9rem;
  }
  
  .dropdown-menu {
    min-width: 180px;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
  
  .offcanvas {
    display: none !important;
  }
}

/* Off-Canvas Menu Styles */
.offcanvas {
  background: linear-gradient(135deg, #1e1e1d 0%, #2a2a2a 100%);
  border: none;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
}

.offcanvas-header {
  background: linear-gradient(135deg, #c79d5c 0%, #a67c3a 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.5rem 1rem;
}

.offcanvas-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-close-white {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.btn-close-white:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.offcanvas-body {
  padding: 1.5rem;
  background: linear-gradient(135deg, #1e1e1d 0%, #2a2a2a 100%);
}

.offcanvas-body .navbar-nav {
  gap: 0.5rem;
}

.offcanvas-body .nav-link {
  color: #fff;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.offcanvas-body .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 157, 92, 0.2), transparent);
  transition: left 0.5s ease;
}

.offcanvas-body .nav-link:hover::before {
  left: 100%;
}

.offcanvas-body .nav-link:hover {
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.1) 0%, rgba(199, 157, 92, 0.05) 100%);
  color: #c79d5c;
  border-color: rgba(199, 157, 92, 0.3);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(199, 157, 92, 0.2);
}

.offcanvas-body .btn-register {
  background: linear-gradient(135deg, #c79d5c 0%, #a67c3a 100%);
  color: white !important;
  border-radius: 25px;
  padding: 1rem 2rem !important;
  font-weight: 600;
  margin-top: 1rem;
  border: none;
  box-shadow: 0 4px 15px rgba(199, 157, 92, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas-body .btn-register:hover {
  background: linear-gradient(135deg, #a67c3a 0%, #8b6b2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 157, 92, 0.4);
  color: white !important;
}

.offcanvas-body .user-profile-dropdown {
  margin-top: 1rem;
}

.offcanvas-body .user-profile-dropdown .btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  padding: 1rem 1.5rem;
  width: 100%;
  justify-content: flex-start;
}

.offcanvas-body .user-profile-dropdown .btn:hover {
  background: rgba(199, 157, 92, 0.2);
  border-color: rgba(199, 157, 92, 0.4);
  color: #c79d5c;
}

.offcanvas-body .dropdown-menu {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1d 100%);
  border: 1px solid rgba(199, 157, 92, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-top: 0.5rem;
}

.offcanvas-body .dropdown-item {
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 0.25rem;
  transition: all 0.3s ease;
}

.offcanvas-body .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.2) 0%, rgba(199, 157, 92, 0.1) 100%);
  color: #c79d5c;
  transform: translateX(5px);
}

.offcanvas-body .dropdown-divider {
  border-color: rgba(199, 157, 92, 0.3);
  margin: 0.5rem 0;
}

/* Custom scrollbar for off-canvas */
.offcanvas-body::-webkit-scrollbar {
  width: 6px;
}

.offcanvas-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #c79d5c 0%, #a67c3a 100%);
  border-radius: 3px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a67c3a 0%, #8b6b2e 100%);
}

@media (max-width: 576px) {
  .user-name {
    display: none;
  }
  
  .user-profile-dropdown .btn {
    padding: 4px 6px;
  }
  
  .user-avatar {
    width: 24px;
    height: 24px;
  }
}

/* Mobile responsive loader */
@media (max-width: 768px) {
  .loader-content {
    max-width: 300px;
    padding: 1.5rem;
  }
  
  .loader-logo-img {
    width: 100px;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  
  .loader-text h3 {
    font-size: 1.3rem;
  }
  
  .loader-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .loader-content {
    max-width: 250px;
    padding: 1rem;
  }
  
  .loader-logo-img {
    width: 80px;
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  
  .loader-text h3 {
    font-size: 1.1rem;
  }
  
  .loader-text p {
    font-size: 0.8rem;
  }
}

/* Top Navigation Bar */
.top-nav {
  color: #000000;
  display: flex; /* Flexbox for horizontal alignment */
  justify-content: space-between; /* Space between left and right groups */
  align-items: center; /* Vertical alignment */
  padding: 10px 20px; /* Adjust padding */
  font-size: 16px;
}

/* Contact Info (Left Section) */
.contact-info {
  display: flex; /* Flexbox for horizontal alignment */
  gap: 15px; /* Space between items */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  list-style: none; /* Remove bullets */
}

/* Links Style */
.top-nav .navv-link {
  color: #000000;
  text-decoration: none;
  display: flex; /* Align icon and text */
  align-items: center;
  gap: 5px; /* Space between icon and text */
  font-size: 14px;
}

/* Hover Effect for Links */
.top-nav .navv-link:hover {
  text-decoration: underline;
}

/* Icons Style */
.top-nav .fa {
  font-size: 16px; /* Adjust icon size */
}

/* Main Navigation Bar */
.main-navv {
  background-color: #c79d5c; /* Gold color */
  padding: 10px 0;
}

.main-navv .navvv {
  margin: 0;
  padding: 0;
}

.main-navv .navv-link {
  color: white;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 15px;
}

/* Hero Section */
.hero-section {
  height: 95vh; /* Full screen height */
  text-align: left;
  color: white;
  /* font-family: Arial, sans-serif; */
}

.seekerhero-section{
  height: 90vh; /* Full screen height */
  text-align: left;
  color: white;
  font-family: "Berkshire Swash", serif;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* Behind everything */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: -1; /* Above the video but behind the content */
}

/* Content Overlay */
.content-overlay {
  padding-top: 12%;
  padding-bottom: 3.3%;
}

.content-overlay img {
  width: 160px;
}

.main-title {
  font-size: 4rem;
  font-weight: bold;
  margin: 10px 0;
}
.main-title2 {
  font-size: 35px;
  color: #c29d60;
  font-weight: bold;
  margin: 10px 0;
  /* padding-right: 500px; */
}
.main-title3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 50px ;
  padding-right: 600px;
}
.main-title4 {
  font-size: 20px;
  margin-top: 10px ;
  /* padding-right: 600px; */
}
.subtitle {
  font-size: 3rem;
  /* margin-bottom: 20px; */
}

.cta-button {
  display: inline-block;
  background-color: #c79d5c; /* Golden color */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  /* margin-bottom: 20px; */
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c79d5c; /* Darker gold on hover */
}
@media (max-width: 768px) {
  .about-section {
    height: 100vh !important;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  height: 85vh;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/about.5c37387c0dd76c404318.png"); /* Add your wavy pattern here */
  background-size: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .seekerabout-section{
    height:93vh !important;
  }
}


.seekerabout-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.seekerabout-section::before{ 
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/hoetawkeelWorksBG.82049c6a172c371d0573.png");
  background-size: cover;
  z-index: 1;
}

.seekerabout-section .container {
  position: relative;
  margin-top: 65px;
  padding: 3%;
  width: 100%; /* Make the container cover full width */
  box-shadow: 50px 30px 100px rgba(0, 0, 0, 0.9);
  z-index: 2; /* Ensure the content stays above the background */
}

.seekerabout-section .cta-button {
  display: inline-block;
  background-color: #c79d5c; /* Golden color */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 35px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  /* margin-bottom: 20px; */
  /* transition: background-color 0.3s ease; */
}

.seekerabout-section .cta-button:hover {
  background-color: transparent; 
  border:1px solid #c79d5c;
  color: #c79d5c;/* Darker gold on hover */
}

.about-section .container {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 5%;
  width: 100%; /* Make the container cover full width */
  box-shadow: 50px 30px 80px rgba(0, 0, 0, 0.6);
  z-index: 2; /* Ensure the content stays above the background */
}

.performer-section .container {
  position: relative;
  margin-top: 70px;
  margin-bottom: 15px;
  padding: 5%;
  width: 100%; /* Make the container cover full width */
  box-shadow: 50px 30px 80px rgba(0, 0, 0, 0.6);
  z-index: 2; /* Ensure the content stays above the background */
}

.text-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers items horizontally */
  text-align: center;
}

.text-content .logo {
  width: 80px; /* Adjust the logo size */
  margin-bottom: 20px;
}

.text-content h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff; /* White text color */
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.text-content .btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-content .btn:hover {
  background-color: #fff;
  color: #000;
}

.image-container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-screenshot {
  max-width: 100%;
  height: auto;
}

@media (max-width: 425px) {
  .services-section{
    height: 100vh !important;
  }
  .icon{
    width: 50px !important;
    height: 50px !important;
  }
  .services .cta-button{
     font-size: 11px !important;
     padding: 10px 26px !important;
  }
}

.services-section {
  height: 75vh;
  background-image: url("assets/about.5c37387c0dd76c404318.png");
  background-position: center;
  background-size: cover;
  padding: 50px 0 60px;
}

.services-section h1 {
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px; /* Space between columns and rows */
  max-width: 900px;
  margin: auto;
}

/* Ensure alignment of service items */
.service {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* Icon Wrapper */
.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Circle Icon */
.icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Connecting Line */
.line {
  width: 2px;
  height: 55px;
  background: white;
  position: absolute;
  top: 100%;
}

/* Text Styling */
.text {
  text-align: left;
  color: white;
}

h4 {
  font-size: 22px;
  margin: 0;
}

p {
  font-size: 16px;
  margin: 5px 0;
}

/* Learn More Button */
.services .cta-button {
  display: inline-block;
  background-color: #000000; /* Golden color */
  color: #ffffff;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  /* margin-bottom: 20px; */
  /* transition: background-color 0.3s ease; */
}

.services .cta-button:hover {
  background-color: #ffffff; 
  border:1px solid #000000;
  color: #000000;/* Darker gold on hover */
}

/* Scroll Animation */
.service.visible {
  opacity: 1;
  transform: translateX(0);
}


.distinguish-section {
  min-height: auto; /* Allow section height to adjust dynamically */
  background-image: url("assets/third-bg.908582a94491d7a81de1.png");
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}

.distinguish-section h1 {
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align content */
  text-align: center;
  padding: 20px;
}

.feature-item .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.feature-item p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .distinguish-section h1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .feature-item {
    padding: 15px;
  }
  .feature-item .icon {
    width: 70px;
    height: 70px;
  }
  .feature-item p {
    font-size: 14px;
  }
}


.work-section {
    height: 90vh;
    background-image: url("assets/hoetawkeelWorksBG.82049c6a172c371d0573.png");
    background-position: center;
    background-size: cover;
    padding: 50px 0 100px 0; /* Adjusted bottom padding to 100px */
  }  

.work-section .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}

.heading {
  display: flex;
  justify-content: start;
  gap: 155px; /* Space between Seeker and Performer */
  padding-left: 15%;
  padding-bottom: 2%;
}

.heading h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #ffffff; /* Customize heading color */
}

.agent-section {
  height: 100vh;
  background-image: url("assets/third-bg.908582a94491d7a81de1.png");
  background-position: center;
  background-size: cover;
  padding: 80px 0 20px 0;
}

.agent-section .text-content{
    display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
    color: #ffff;
}

.agent-section .text-content  p{
    font-size: 14px;
}

.button-container {
    display: flex; /* Align items in a row */
    justify-content: center; /* Center the buttons horizontally */
    gap: 15px; /* Add space between the buttons */
  }

 .button-container .cta-button {
    display: inline-block;
    background-color: #c79d5c; /* Golden color */
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 25px;
    /* margin-bottom: 20px; */
    /* transition: background-color 0.3s ease; */
  }
  
  .button-container .cta-button:hover {
    background-color: transparent; 
    border:1px solid #c79d5c;
    color: #c79d5c;/* Darker gold on hover */
  }

    /* Enhanced Modal Styles */
    .modal-lg {
      max-width: 800px;
    }

    .modal-header.bg-primary {
      background: linear-gradient(135deg, #c79d5c 0%, #a88a4a 100%) !important;
      border-bottom: 3px solid #8b7355;
      color: white;
    }

    .modal-header .btn-close-white {
      filter: brightness(0) invert(1);
    }

    .modal-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      margin: 0;
    }

    .modal-body {
      padding: 2rem;
      /* background-color: #f8f9fa; */
    }

    /* Form Styles */
    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      color: #495057;
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .form-control {
      border: 2px solid #e9ecef;
      border-radius: 8px;
      padding: 12px 15px;
      font-size: 16px;
      transition: all 0.3s ease;
      margin: 0;
    }

    .form-control:focus {
      border-color: #c79d5c;
      box-shadow: 0 0 0 0.2rem rgba(199, 157, 92, 0.25);
    }

    .form-control.is-invalid {
      border-color: #dc3545;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

    /* Error message hide by default */
.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Enhanced validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Smooth transition for validation states */
.form-control {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.invalid-feedback {
  transition: opacity 0.15s ease-in-out;
}

    /* Eye icon input ke andar right par */
    .input-group {
      position: relative;
    }
    .input-group .form-control {
      padding-right: 2.5rem;
      border-right: 0;
    }
    .input-group .btn-eye {
      border: none;
      background: transparent;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      color: #888;
      padding: 0 8px;
      height: 100%;
      display: flex;
      align-items: center;
      cursor: pointer;
    }
    .input-group .btn-eye:focus {
      outline: none;
      box-shadow: none;
    }

    .input-group .btn-outline-secondary {
      border-color: #e9ecef;
      color: #6c757d;
    }

    .input-group .btn-outline-secondary:hover {
      background-color: #c79d5c;
      border-color: #c79d5c;
      color: white;
    }

    .form-check-input:checked {
      background-color: #c79d5c;
      border-color: #c79d5c;
    }

    .form-check-label a {
      text-decoration: none;
    }

    .form-check-label a:hover {
      text-decoration: underline;
    }

    /* Hide inactive form */
    .form-container {
      display: none;
    }
    
    .form-container.active {
      display: block;
    }

    /* Enhanced Button Styles */
    .custom-btn2 {
      background: linear-gradient(135deg, #c79d5c 0%, #a88a4a 100%);
      border: none;
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(199, 157, 92, 0.3);
      padding: 12px 40px;
      border-radius: 25px;
    }

    .custom-btn2:hover {
      background: linear-gradient(135deg, #a88a4a 0%, #8b7355 100%);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(199, 157, 92, 0.4);
    }

    /* Responsive Modal */
    @media (max-width: 768px) {
      .modal-lg {
        max-width: 95%;
        margin: 1rem;
      }
      
      .modal-body {
        padding: 1rem;
      }
      
      .form-group {
        margin-bottom: 1rem;
      }
      
      .col-md-6 {
        margin-bottom: 0.5rem;
      }
    }

    /* Animation for modal */
    .modal.fade .modal-dialog {
      transition: transform 0.3s ease-out;
      transform: translate(0, -50px);
    }

    .modal.show .modal-dialog {
      transform: none;
    }
  
  .news-section{
    height: 145vh;
    padding: 60px;
  }

  .newslogo img{
    width: 150px;
  }

  .news-section .cta-button{
    font-size: 12px;
  }

  .contact-section{
    height: 70vh;
    background-image: url("assets/hoetawkeelWorksBG.82049c6a172c371d0573.png");
    background-position: center;
    background-size: cover;
    padding: 54px 0px !important; /* Adjusted bottom padding to 100px */
  }

.contact-section h2{
  color: #ffffff;
  font-weight: bold;
}

  /* Form Styles */
.inputfields {
  position: relative;
  margin-bottom: -10px;
}

.inputfields input{
  width: 100%;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid rgb(116, 116, 116);
  background: transparent;
  outline: none;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inputfields textarea {
  width: 100%;
  height: 100px !important;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid rgb(141, 140, 140);
  background: transparent;
  outline: none;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inputfields #message {
  resize: none;
}

.inputfields input:focus,
.inputfields textarea:focus {
  border: 2px solid #ffffff;
  /* box-shadow: 0 3px 5px #ffffff; */
}

.custom-btn {
  display: inline-block;
  /* margin-top: px; */
  color: white;
  background: linear-gradient(45deg, #1e1e1d, #c79d5c);
  border: 1px solid #c79d5c;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 25px;
  /* text-transform: uppercase; */
  /* transition: background-color 0.3s ease, transform 0.3s ease; */
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;


}

.custom-btn:hover {
  background: rgba(199, 157, 92, 0.1);
    border:1px solid #a67c3a;
    color: #fff;
    transform: translateX(10px);
}
.custom-btn2 {
  display: inline-block;
  /* margin-top: px; */
  color: white;
  background: linear-gradient(45deg, #1e1e1d, #c79d5c);
  border: 1px solid #c79d5c;
  padding: 10px 40px;
  font-size: 14px;
  border-radius: 25px;
  /* text-transform: uppercase; */
  /* transition: background-color 0.3s ease, transform 0.3s ease; */
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;


}

.custom-btn2:hover {
  background: rgba(199, 157, 92, 0.1);
    border:1px solid #a67c3a;
    color: #c79d5c;
    transform: translateX(10px);
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}


.formside{
  border-right: 2px solid #c79d5c;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #1e1e1d, #c79d5c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.socialside{
  margin-top: 10%;
  margin-left: 10% !important;
}

.socialside h4 {
  color: #ffffff;
  font-size: 18px;
  margin: 10px 0 5px;
}

.socialside p {
  font-size: 14px;
  color: #ffffff;
}

.agent{
  /* height: 235vh; */
  background-image: url("assets/third-bg.908582a94491d7a81de1.png");
    background-position: center;
    background-size: cover;
}

.agent .card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure the card takes up full height */
}

.agent .card .feature-item {
  padding: 10px !important;
}
.agent .card .feature-item .icon {
  width: 60px;
  height: 60px;
  /* margin-bottom: 15px; */
}

.agent-overlay {
  /* padding-top: 6%; */
  padding-bottom: 1.3%;
}

.agent h5{
  color: #fff;
}

.agent p{
  font-size: 14px;
  font-weight: 300;
}

.faq {
  display: inline-block;
  padding: 10px 20px;
  color: #c79d5c;
  border: 2px solid #c79d5c;
  background: rgba(255, 215, 0, 0.1); /* Transparent golden background */
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}


@media only screen and (max-width: 1050px) {
  section#home:before {
    width: 60%;
  }
  section#home .play-button button,
  section#home .play-button button span,
  section#home .play-button:after,
  section#home .play-button:before {
    height: 60px;
    width: 60px;
  }
  section#appObjectives
    .appObjectives-wrapper
    .section-content
    .objectives
    .single-objective {
    margin-bottom: 50px;
    max-width: 48%;
  }
  section#downloadApp .downloadApp-wrapper {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  section#downloadApp .downloadApp-wrapper .section-left {
    margin-bottom: 50px;
    max-width: 500px;
    text-align: center;
    width: 100%;
  }
  section#applicationSteps
    .applicationSteps-wrapper
    .section-steps
    .step-column-seperator {
    display: none;
  }
  section#screenshots .screenshots-wrapper .section-right > div {
    max-width: 200px;
    overflow: hidden;
    width: 100%;
  }
  section#screenshots
    .screenshots-wrapper
    .section-right
    > div
    .btn-group
    > a.btn {
    margin: 0 10px;
  }
  section#helpCenter .helpCenter-wrapper {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  section#helpCenter .helpCenter-wrapper .section-left {
    margin-bottom: 40px;
    text-align: center;
  }
  section#helpCenter .helpCenter-wrapper .section-left .btn-group {
    justify-content: center;
  }

  footer .footer-wrapper .footer-row {
    flex-wrap: wrap;
  }
  footer .footer-wrapper .footer-row .footer-column {
    margin-bottom: 50px;
    max-width: 45%;
  }
  footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    order: 1;
  }
  footer .footer-wrapper .footer-row > div.footer-column:last-of-type {
    display: flex;
    flex-direction: column;
    order: 2;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(2) {
    margin-bottom: 0;
    order: 3;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(3) {
    margin-bottom: 0;
    order: 4;
  }
  footer
    .footer-wrapper
    .footer-row
    > div.footer-column:first-of-type
    .text-paragraph {
    margin-bottom: 0;
  }
  footer
    .footer-wrapper
    .footer-row
    > div.footer-column:first-of-type
    .payment-methods {
    margin-top: 10px;
  }
  footer
    .footer-wrapper
    .footer-row
    > div.footer-column:last-of-type
    .text-paragraph {
    margin-bottom: 10px;
  }
  footer .footer-wrapper .footer-row .footer-column .btn-apple svg,
  footer .footer-wrapper .footer-row .footer-column .btn-google svg {
    height: auto;
  }
}
footer {
  background-color: #24282c;
}
footer .footer-wrapper .footer-row {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
footer .footer-wrapper .footer-row .d-inline-block {
  display: inline-block;
}
footer .footer-wrapper .footer-row .footer-column {
  max-width: 355px;
  width: 100%;
}
footer .footer-wrapper .footer-row .footer-column .footer-logo {
  margin: 0 0 20px;
  max-width: 165px;
  width: 100%;
}
footer .footer-wrapper .footer-row .footer-column .footer-text {
  font-size: 16px;
}
footer .footer-wrapper .footer-row .footer-column .text-paragraph {
  color: #f7f7f7;
  margin-bottom: 25px;
}
footer .footer-wrapper .footer-row .footer-column .column-header {
  color:  #c79d5c;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 25px;
}
footer .footer-wrapper .footer-row .footer-column .btn-group .btn.img-btn {
  height: auto;
}
footer .footer-wrapper .footer-row .footer-column .certificate-list {
  display: flex;
  margin-top: 20px;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .certificate-list
  .certificate {
  align-items: center;
  display: flex;
  text-decoration: none;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .certificate-list
  .certificate
  img {
  display: inline-block;
  height: 60px;
  margin-right: 10px;
  object-fit: contain;
  width: 60px;
}
.RTL
  footer
  .footer-wrapper
  .footer-row
  .footer-column
  .certificate-list
  .certificate
  img {
  margin-left: 10px;
  margin-right: 0;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .certificate-list
  .certificate
  p {
  color: #f7f7f7;
  font-size: 14px;
  font-weight: 400;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .certificate-list
  .certificate
  p
  span {
  color: #fff;
  font-weight: 600;
}
footer .footer-wrapper .footer-row .footer-column .additional-logo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
footer .footer-wrapper .footer-row .footer-column .additional-logo img {
  height: auto;
  max-width: 90px;
  width: 100%;
}
footer .btn.img-btn img {
  max-height: 30px;
}
footer .footer-wrapper .footer-row .footer-column .payment-methods {
  align-items: center;
  display: flex;
  margin-top: 30px;
}
footer .footer-wrapper .footer-row .footer-column .payment-methods img {
  margin-right: 20px;
  max-height: 20px;
}
.RTL footer .footer-wrapper .footer-row .footer-column .payment-methods img {
  margin-left: 20px;
  margin-right: 0;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .payment-methods
  > img:last-of-type {
  margin-left: 0;
  margin-right: 0;
}
footer .footer-wrapper .footer-row .footer-column .contact-list,
footer .footer-wrapper .footer-row .footer-column .footer-navigation,
footer .footer-wrapper .footer-row .footer-column .social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer-wrapper .footer-row .footer-column .footer-navigation li {
  margin-bottom: 15px;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .footer-navigation
  > li:last-of-type {
  margin-bottom: 0;
}
footer .footer-wrapper .footer-row .footer-column .footer-navigation li a {
  color: #f7f7f7;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .footer-navigation
  li
  a:hover {
  color: #c29f60;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .contact-list li {
  align-items: center;
  color: #f7f7f7;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .contact-list li i {
  font-size: 20px;
  margin-right: 15px;
}
.RTL footer .footer-wrapper .footer-row .footer-column .contact-list li i {
  margin-left: 15px;
  margin-right: 0;
}
footer .footer-wrapper .footer-row .footer-column .contact-list li a {
  color: #f7f7f7;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .contact-list li a:hover {
  color: #c29f60;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .social-list {
  align-items: center;
  display: flex;
  margin-top: 30px;
}
footer .footer-wrapper .footer-row .footer-column .social-list li {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 7px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  width: 40px;
}
.RTL footer .footer-wrapper .footer-row .footer-column .social-list li {
  margin-left: 10px;
  margin-right: 0;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .social-list
  > li:last-of-type {
  margin-right: 0;
}
.RTL
  footer
  .footer-wrapper
  .footer-row
  .footer-column
  .social-list
  > li:last-of-type {
  margin-left: 0;
  margin-right: 0;
}
footer .footer-wrapper .footer-row .footer-column .social-list li a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .social-list li:hover {
  background-color: #c29f60;
  border: 1px solid #c29f60;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .social-list li:hover a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .btn-apple,
footer .footer-wrapper .footer-row .footer-column .btn-google {
  display: inline-block;
}
footer .footer-wrapper .footer-row .footer-column .btn-apple svg,
footer .footer-wrapper .footer-row .footer-column .btn-google svg {
  max-width: 180px;
}
footer .footer-wrapper .footer-row .footer-column .btn-apple svg path,
footer .footer-wrapper .footer-row .footer-column .btn-google svg path {
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .btn-apple:hover svg .fill,
footer .footer-wrapper .footer-row .footer-column .btn-google:hover svg .fill {
  fill: #3f9a97;
  transition: all 0.3s ease-in-out;
}
footer .footer-wrapper .footer-row .footer-column .btn-apple:hover svg .stroke,
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .btn-google:hover
  svg
  .stroke {
  stroke: #3f9a97;
  transition: all 0.3s ease-in-out;
}
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .btn-apple:hover
  svg
  .fill.light,
footer
  .footer-wrapper
  .footer-row
  .footer-column
  .btn-google:hover
  svg
  .fill.light {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
footer .copyright {
  background-color: #24282c;
  padding: 10px 0;
  text-align: center;
}
footer .copyright p {
  border-top: 1px solid #707070;
  color: #ededed;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  max-width: 1650px;
  padding: 10px 0 0;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 1420px) {
  footer .footer-wrapper .footer-row .footer-column {
    max-width: 30%;
    padding: 0 10px;
    width: 100%;
  }
  footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    max-width: 30%;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(2) {
    max-width: 20%;
  }
  footer .footer-wrapper .footer-row .footer-column .column-header {
    font-size: 22px;
  }
  footer .footer-wrapper .footer-row .footer-column .btn-apple svg,
  footer .footer-wrapper .footer-row .footer-column .btn-google svg {
    max-width: 150px;
  }
  footer .footer-wrapper .footer-row .footer-column .contact-list li,
  footer .footer-wrapper .footer-row .footer-column .footer-navigation li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1040px) {
  footer .footer-wrapper .footer-row .footer-column {
    max-width: 32%;
  }
  footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    max-width: 100%;
    text-align: center;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(3) {
    max-width: 32%;
  }
  footer .footer-wrapper .footer-row .footer-column .certificate-list {
    align-items: center;
    justify-content: center;
  }
  footer .footer-wrapper .footer-row .footer-column .additional-logo,
  footer .footer-wrapper .footer-row .footer-column .btn-group,
  footer .footer-wrapper .footer-row .footer-column .payment-methods,
  footer .footer-wrapper .footer-row .footer-column .social-list {
    justify-content: center;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(2) {
    max-width: 100%;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate {
    flex-direction: column;
    justify-content: center;
    margin: 0 20px;
  }
  .RTL
    footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img,
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img {
    height: 100px;
    margin-left: 0;
    margin-right: 0;
    width: 100px;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    p {
    font-size: 16px;
    margin-top: -10px;
  }
  footer
    .footer-wrapper
    .footer-row
    > div.footer-column:first-of-type
    .payment-methods {
    justify-content: center;
  }
}
@media only screen and (max-width: 800px) {
  footer .footer-wrapper .footer-row .footer-column {
    max-width: 49%;
  }
  footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    max-width: 49%;
    text-align: left;
  }
  .RTL footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    text-align: right;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(3) {
    max-width: 49%;
  }
  footer .footer-wrapper .footer-row .footer-column .certificate-list {
    align-items: start;
    justify-content: start;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate {
    flex-direction: row;
    margin: 0;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img {
    height: 60px;
    margin-right: 10px;
    width: 60px;
  }
  RTL
    footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img {
    margin-left: 10px;
    margin-right: 0;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 719px) {
  .RTL footer .footer-wrapper .footer-row > div.footer-column:first-of-type,
  footer .footer-wrapper .footer-row .footer-column,
  footer .footer-wrapper .footer-row > div.footer-column:first-of-type {
    max-width: 100%;
    text-align: center;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(3) {
    max-width: 100%;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .btn-apple
    footer
    .footer-wrapper
    .footer-row
    .footer-column
    .btn-google,
  footer .footer-wrapper .footer-row > div.footer-column:last-of-type {
    display: inline-block;
  }
  footer .footer-wrapper .footer-row .footer-column .btn-google {
    margin-right: 10px;
  }
  body.RTL footer .footer-wrapper .footer-row .footer-column .btn-google {
    margin-left: 10px;
    margin-right: 0;
  }
  footer .footer-wrapper .footer-row > div.footer-column:nth-of-type(2) {
    margin-bottom: 50px;
  }
  footer .footer-wrapper .footer-row .footer-column .certificate-list {
    align-items: center;
    justify-content: center;
  }
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate {
    flex-direction: column;
    margin: 0 20px;
  }
  .RTL
    footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img,
  footer
    .footer-wrapper
    .footer-row
    .footer-column
    .certificate-list
    .certificate
    img {
    height: 100px;
    margin-left: 0;
    margin-right: 0;
    width: 100px;
  }
  footer .footer-wrapper .footer-row .footer-column .contact-list li,
  footer .footer-wrapper .footer-row .footer-column .footer-navigation li a {
    font-size: 14px;
    justify-content: center;
  }
  footer .footer-wrapper .footer-row .footer-column .social-list {
    justify-content: center;
  }
}
  
/* Scroll Top Button */

.scroll-top {
  text-decoration: none;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #c79d5c;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 18px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #c79d5c, transparent 25%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Attractive Modal Styles */
.stylish-modal .modal-content {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(2px);
  border: none;
}
.stylish-modal .modal-header {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 2px 8px rgba(199,157,92,0.08);
  justify-content: center;
  border-bottom: none;
}
.stylish-modal .modal-header img {
  box-shadow: 0 2px 8px rgba(199,157,92,0.18);
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}
.stylish-modal .modal-header .checked-icon {
  border-radius: 50%;
  background: #ffffff00 !important;
  padding: 6px;
}
.stylish-modal .modal-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-left: 10px;
  letter-spacing: 1px;
}
.stylish-modal .modal-body {
  background: rgba(255,255,255,0.85);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  text-align: center;
  padding: 2.5rem 2rem 2rem 2rem;
}
.stylish-modal .seeker-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c79d5c;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.stylish-modal .modal-footer {
  border: none;
  justify-content: center;
  background: transparent;
}
.stylish-modal .custom-btn,
.stylish-modal .custom-btn2 {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 2.5rem;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(199,157,92,0.12);
  transition: all 0.2s;
}
.stylish-modal .custom-btn:hover,
.stylish-modal .custom-btn2:hover {
  background: linear-gradient(90deg, #222 0%, #c79d5c 100%);
  color: #c79d5c;
  border: 1px solid #c79d5c;
}

.theme-link, .theme-link:visited {
  color: #c79d5c !important;
  text-decoration: underline;
  transition: color 0.2s;
}
.theme-link:hover, .theme-link:focus {
  color: #222 !important;
  text-decoration: underline;
}

/* Custom Behalf Combo Input Styles */
.behalf-combo-input {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(199,157,92,0.08), 0 1.5px 6px rgba(34,34,34,0.06);
  border: 1.5px solid #c79d5c;
  padding: 0 0.5rem;
  min-height: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden; /* Prevent input overflow */
}
.behalf-combo-input:focus-within {
  box-shadow: 0 4px 16px rgba(199,157,92,0.18);
  border-color: #222;
}
.behalf-left {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 32px 0 0 32px;
  background: transparent;
  font-weight: 600;
  color: #222;
  min-width: 110px;
  user-select: none;
}
.behalf-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #c79d5c;
  border-radius: 50%;
  margin-right: 8px;
}
.behalf-separator {
  width: 2px;
  height: 28px;
  background: #eee;
  margin: 0 10px;
  border-radius: 2px;
}
.behalf-name-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #222;
  flex: 1;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}
.behalf-name-input:read-only {
  color: #888;
  background: transparent;
}
.behalf-name-input:focus {
  outline: none;
  background: #f9f6f1;
  border-radius: 0 32px 32px 0;
}
@media (max-width: 500px) {
  .behalf-combo-input {
    font-size: 0.95rem;
    min-height: 40px;
    padding: 0 0.2rem;
  }
  .behalf-left {
    padding: 0.4rem 0.7rem 0.4rem 0.4rem;
    min-width: 80px;
  }
  .behalf-name-input {
    padding: 0.4rem 0.7rem;
  }
}

/* Select On Behalf Modal Styles */
#behalfSelectModal .modal-body {
  background: #c79d5c;
  border-radius: 0 0 18px 18px;
  padding: 2rem 1rem 1.5rem 1rem;
}
#behalfOptions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
#behalfOptions .behalf-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.7rem 1.5rem;
  min-width: 140px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(34,34,34,0.08);
}
#behalfOptions .behalf-btn:hover, #behalfOptions .behalf-btn:focus {
  background: #c79d5c;
  color: #222;
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(34,34,34,0.12);
}
#behalfOptions .behalf-btn.active, #behalfOptions .behalf-btn.selected {
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
#behalfOptions .behalf-btn:last-child {
  flex-basis: 100%;
  background: #222;
  color: #fff;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 10px;
  min-width: 220px;
  padding: 0.9rem 0;
}
#behalfOptions .behalf-btn:last-child:hover, #behalfOptions .behalf-btn:last-child:focus {
  background: #c79d5c;
  color: #222;
}
@media (max-width: 600px) {
  #behalfOptions .behalf-btn {
    min-width: 100px;
    font-size: 0.98rem;
    padding: 0.6rem 0.7rem;
  }
  #behalfOptions .behalf-btn:last-child {
    min-width: 140px;
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}

.appoint-date-group {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.appoint-date-group .calendar-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #c79d5c;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 2;
}
.appoint-date-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  border-radius: 32px;
  border: 1.5px solid #c79d5c;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(199,157,92,0.08);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.appoint-date-input:focus {
  border-color: #222;
  box-shadow: 0 4px 16px rgba(199,157,92,0.18);
  outline: none;
}
.appoint-date-input::placeholder {
  color: #c79d5c;
  opacity: 1;
}
@media (max-width: 500px) {
  .appoint-date-input {
    font-size: 0.98rem;
    padding: 0.6rem 0.7rem 0.6rem 2.1rem;
  }
}

/* Payment Modal - Modern Dark Card Style */
#paymentModal .modal-content {
  background: #23272b !important;
  border-radius: 18px;
  color: #fff;
}
#paymentModal .modal-header {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-radius: 18px 18px 0 0;
  border-bottom: none;
}
#paymentModal .modal-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}
#paymentModal .modal-body {
  padding: 2rem 1.5rem;
  background: #23272b;
}
.payment-card {
  background: #2d3136;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(199,157,92,0.08), 0 1.5px 6px rgba(34,34,34,0.06);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
  color: #fff;
}
.payment-discount-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.payment-discount-input {
  border-radius: 8px;
  border: 1.5px solid #c79d5c;
  background: #23272b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  min-width: 0;
  box-shadow: none;
  padding: 0.5rem 1rem;
  line-height: 1.2;
}
.payment-discount-input::placeholder {
  color: #c79d5c;
  opacity: 1;
}
.payment-card, .payment-card .d-flex span, .payment-card label, .payment-card input, .payment-card .switch, .payment-card .slider {
  color: #fff !important;
}
.payment-card .d-flex span {
  color: #eee !important;
}
.payment-card .d-flex:last-child span {
  color: #c79d5c !important;
  font-weight: bold;
}
.payment-apply-btn {
  background: #c79d5c;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  padding: 0.5rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  transition: background 0.18s;
  white-space: nowrap;
}
.payment-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.payment-option-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.payment-option-row i {
  font-size: 1.25rem;
  color: #c79d5c;
}
.payment-option-row input[type='radio'] {
  accent-color: #c79d5c;
  width: 18px;
  height: 18px;
}
.payment-addcard-btn {
  background: #2d3136;
  color: #fff;
  border: 1.5px solid #c79d5c;
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  padding: 0.8rem 0;
  transition: background 0.18s, color 0.18s;
  margin-top: 0.7rem;
  width: 100%;
  display: block;
}
@media (max-width: 600px) {
  #paymentModal .modal-body { padding: 1rem 0.3rem; }
  .payment-card { padding: 0.7rem 0.5rem; }
  .payment-discount-input { font-size: 0.95rem; }
  .payment-addcard-btn { font-size: 1rem; padding: 0.6rem 0; }
}

.payment-method-box {
  background: #23272b;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: border 0.18s, box-shadow 0.18s;
  margin-bottom: 0;
}
.payment-method-box:hover, .payment-method-box.active {
  border: 2px solid #c79d5c;
  box-shadow: 0 2px 8px rgba(199,157,92,0.10);
}
.payment-method-icon {
  font-size: 1.5rem;
  color: #c79d5c;
  display: flex;
  align-items: center;
}
.payment-method-label {
  font-size: 1.08rem;
  color: #fff;
  font-weight: 500;
}
.payment-method-radio {
  accent-color: #c79d5c;
  width: 20px;
  height: 20px;
}
.payment-pay-btn {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  font-size: 1.1rem;
  padding: 0.9rem 0;
  border: none;
  margin-top: 1rem;
  transition: background 0.18s, color 0.18s;
}
.payment-pay-btn:hover {
  background: #fff;
  color: #c79d5c;
}

/* Profile Modal Styles */
.profile-modal .modal-content {
  background: #f7f6f3;
  border-radius: 18px;
}

.profile-modal .modal-header {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-radius: 18px 18px 0 0;
  border-bottom: none;
  justify-content: center;
}

.profile-modal .modal-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

.profile-modal .modal-body {
  padding: 2rem 1.5rem;
}

.profile-modal .modal-footer {
  border-top: none;
  justify-content: center;
}

/* Profile Avatar */
.profile-avatar-container {
  position: relative;
  display: inline-block;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.profile-avatar-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Profile Image Change Button */
.profile-image-btn {
  position: absolute;
  bottom: 10px;
  right: 0;
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  cursor: pointer;
}

.profile-image-btn:hover {
  color: #fff;
  border: 2px solid #fff;
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.profile-image-btn i {
  font-size: 12px;
}

/* Profile Field Labels */
.profile-field-label {
  color: #222;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Profile Edit Buttons */
.profile-edit-btn {
  background: none;
  border: none;
  color: #c79d5c;
  padding: 0;
  cursor: pointer;
}

.profile-edit-btn:hover {
  color: #c79d5c;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.profile-edit-btn i {
  font-size: 14px;
}

/* Profile Input Fields */
.profile-input {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.profile-input:focus {
  border-color: #c79d5c;
  box-shadow: 0 0 0 0.2rem rgba(199, 157, 92, 0.25);
}

.profile-input.edit-mode {
  border-color: #c79d5c;
  background-color: #fff;
}

/* Profile Field Container */
.profile-field-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Profile Close Button */
.profile-close-btn {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 150px;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.profile-close-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-modal .modal-body {
    padding: 1.5rem 1rem;
  }
  
  .profile-avatar {
    width: 80px;
    height: 80px;
  }
  
  .profile-avatar-text {
    font-size: 2rem;
  }
  
  .profile-image-btn {
    width: 28px;
    height: 28px;
  }
  
  .profile-image-btn i {
    font-size: 10px;
  }
}

/* Profile Upload Styles for Registration Form */
.profile-upload-container {
  position: relative;
  display: inline-block;
}

.profile-avatar-preview {
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-avatar-preview.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-upload-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.profile-upload-btn i {
  font-size: 16px;
}

/* Responsive Design for Profile Upload */
@media (max-width: 768px) {
  .profile-avatar-preview {
    width: 100px;
    height: 100px;
  }
  
  .profile-upload-btn {
    width: 35px;
    height: 35px;
  }
  
  .profile-upload-btn i {
    font-size: 14px;
  }
}

/* Current Order Card Styles */
.current-order-card {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: #fff;
  padding: 18px 18px 14px 18px;
  max-width: 430px;
  margin: 20px auto;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.current-order-card .order-id-bar {
  background: #c79d5c;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
  margin: -18px -18px 12px -18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.current-order-card .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c79d5c;
  margin-right: 18px;
}
.current-order-card .details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
}
.current-order-card .details span {
  font-weight: 600;
  color: #c79d5c;
  min-width: 110px;
  display: inline-block;
}
.current-order-card .row-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
.current-order-card .actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.current-order-card .btn-chat {
  background: #353535;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.current-order-card .btn-chat:hover {
  background: #444;
}
.current-order-card .btn-track {
  background: #c79d5c;
  color: #232323;
  border: none;
  border-radius: 8px;
  padding: 7px 32px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.current-order-card .btn-track:hover {
  background: #b08a4a;
  color: #fff;
}

/* Current Order Modal Header Style */
.current-order-modal-header {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 12px 24px;
}
.current-order-modal-header .modal-title {
  /* background: linear-gradient(90deg, #c79d5c 0%, #222 100%); */
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}
.current-order-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.current-order-modal-header .btn-close:hover {
  opacity: 1;
}

/* Completed Order Modal Body Scroll */
.current-order-modal-body {
  max-height: 86vh;
  overflow-y: auto;
  /* padding-right: 8px; */
}
/* Completed Order Modal Body Scroll */
.completed-order-modal-body {
  max-height: 86vh;
  overflow-y: auto;
  /* padding-right: 8px; */
}

/* Accept Button Styles for Current Order Cards */
.current-order-card .btn-accept {
  background:#28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.current-order-card .btn-accept:hover {
  background: #1db35b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.current-order-card .btn-accept:active {
  transform: translateY(0);
}

.current-order-card .btn-accept:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.current-order-card .btn-accept:disabled:hover {
  background: #6c757d;
  transform: none;
  box-shadow: none;
}

/* Confirmation Modal Styles */
.confirmation-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.confirmation-modal-header {
  background: linear-gradient(90deg, #c79d5c 0%, #222 100%);
  border-bottom: none;
  padding: 25px 30px 20px 30px;
  position: relative;
}

.confirmation-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.1) 0%, rgba(176, 138, 74, 0.1) 100%);
  z-index: 0;
}

.confirmation-modal-header .d-flex {
  position: relative;
  z-index: 1;
}

.confirmation-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.confirmation-icon i {
  font-size: 24px;
  color: white;
}

.confirmation-modal-header .modal-title {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.confirmation-modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.confirmation-modal-header .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.confirmation-modal-body {
  padding: 30px;
  background: white;
  font-family: 'Poppins', sans-serif;
}

.confirmation-content {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.confirmation-message {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e3 100%);
  border-radius: 15px;
  border-left: 5px solid #c79d5c;
}

.confirmation-message i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: #c79d5c;
}

.confirmation-message p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid #e9ecef;
}

.order-summary h6 {
  color: #495057;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  font-weight: 600;
  color: #6c757d;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.summary-item .value {
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.95rem;
  background: #e9ecef;
  padding: 4px 12px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.confirmation-warning {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e3 100%);
  border: 2px solid #c79d5c;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.confirmation-warning i {
  font-size: 24px;
  flex-shrink: 0;
  color: #c79d5c;
}

.confirmation-warning p {
  margin: 0;
  color: #8b6f3d;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.confirmation-modal-footer {
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.confirmation-modal-footer .btn {
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  min-width: 120px;
  font-family: 'Poppins', sans-serif;
}

.confirmation-modal-footer .btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
}

.confirmation-modal-footer .btn-secondary:hover {
  background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.confirm-btn {
  background: linear-gradient(135deg, #c79d5c 0%, #b08a4a 100%);
  color: white;
}

.confirm-btn:hover {
  background: linear-gradient(135deg, #b08a4a 0%, #9a7a3f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 157, 92, 0.3);
}

/* Responsive Design for Confirmation Modal */
@media (max-width: 768px) {
  .confirmation-modal-header {
    padding: 20px 20px 15px 20px;
  }
  
  .confirmation-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .confirmation-icon i {
    font-size: 20px;
  }
  
  .confirmation-modal-header .modal-title {
    font-size: 1.2rem;
  }
  
  .confirmation-modal-body {
    padding: 20px;
  }
  
  .confirmation-message {
    padding: 15px;
  }
  
  .confirmation-message p {
    font-size: 1rem;
  }
  
  .order-summary {
    padding: 20px;
  }
  
  .summary-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .confirmation-warning {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .confirmation-modal-footer {
    padding: 15px 20px;
    flex-direction: column;
  }
  
  .confirmation-modal-footer .btn {
    width: 100%;
  }
}

/* Payment Success Modal Custom Styles */
.payment-modal {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 32px 24px;
  max-width: 550px;
  margin: auto;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}
.payment-modal h2 {
  color: #e0b04b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.payment-modal p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.payment-modal .info-box {
  background: #181818;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 24px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.payment-modal .info-box strong {
  color: #e0b04b;
  font-weight: 600;
}
.payment-modal .dashboard-btn {
  background: linear-gradient(90deg, #e0b04b 0%, #232323 100%);
  color: #232323;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.payment-modal .dashboard-btn:hover {
  background: linear-gradient(90deg, #232323 0%, #e0b04b 100%);
  color: #fff;
}

/* Enhanced Payment Details */
.payment-details {
  background: linear-gradient(135deg, #181818 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  border: 1px solid #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
}

.payment-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.payment-detail-row:hover {
  background: rgba(224, 176, 75, 0.05);
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.payment-detail-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0b04b;
  font-weight: 600;
  font-size: 0.95rem;
}

.payment-detail-label i {
  font-size: 1.1rem;
  opacity: 0.8;
}

.payment-detail-value {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.payment-detail-value.amount {
  color: #e0b04b;
  font-weight: 700;
  font-size: 1.2rem;
}

.payment-detail-value.card-number {
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  color: #ccc;
}

.payment-detail-value.transaction-id {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #aaa;
}

/* Success Animation */
@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.payment-success-icon {
  animation: successPulse 2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 480px) {
  .payment-modal {
    padding: 24px 16px;
    margin: 10px;
  }
  
  .payment-details {
    padding: 20px 16px;
  }
  
  .payment-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .payment-detail-value {
    text-align: left;
    max-width: 100%;
  }
}

/* Dashboard Styles */
.dashboard-container {
  min-height: 100vh;
  background: #f8f9fa;
}

/* Sidebar Styles */
.dashboard-sidebar {
  background: linear-gradient(135deg, #232323 0%, #2d2d2d 100%);
  min-height: 100vh;
  padding: 0;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
}

.sidebar-header {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #444;
}

.sidebar-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.sidebar-header h5 {
  color: #e0b04b;
  font-weight: 600;
  margin: 0;
}

.sidebar-nav {
  padding: 1rem 0;
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-link:hover {
  background: rgba(224, 176, 75, 0.1);
  color: #e0b04b;
  border-left-color: #e0b04b;
}

.nav-link i {
  width: 20px;
  margin-right: 12px;
  font-size: 1.1rem;
}

.nav-item.active .nav-link {
  background: rgba(224, 176, 75, 0.15);
  color: #e0b04b;
  border-left-color: #e0b04b;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid #444;
  text-align: center;
}

/* Dashboard Content */
.dashboard-content {
  padding: 2rem;
  min-height: 100vh;
}

.dashboard-section {
  display: none;
}

.dashboard-section.active {
  display: block;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  color: #232323;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  margin: 0;
}

/* Stats Cards */
.stats-row {
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
}

.stat-content h3 {
  color: #232323;
  font-weight: 700;
  margin: 0;
  font-size: 1.8rem;
}

.stat-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.quick-actions h4 {
  color: #232323;
  margin-bottom: 1rem;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.action-buttons .btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

/* Recent Activity */
.recent-activity {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.recent-activity h4 {
  color: #232323;
  margin-bottom: 1rem;
  font-weight: 600;
}

.activity-list {
  max-height: 300px;
  overflow-y: auto;
}

/* Profile Section */
.profile-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.profile-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.profile-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.profile-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e0b04b;
}

.avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0b04b;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-form .form-group {
  margin-bottom: 1.5rem;
}

.profile-form label {
  font-weight: 600;
  color: #232323;
  margin-bottom: 0.5rem;
}

.profile-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
}

.profile-form .form-control:focus {
  border-color: #e0b04b;
  box-shadow: 0 0 0 0.2rem rgba(224, 176, 75, 0.25);
}

/* Bookings Section */
.bookings-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.bookings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.bookings-filter .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 150px;
}

/* Payments Section */
.payments-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* History Section */
.history-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Responsive Design */
/* Mobile Toggle Button */
.mobile-toggle-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
}

.sidebar-toggle-btn {
  background: linear-gradient(135deg, #c79d5c 0%, #8b6b3a 100%);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.sidebar-toggle-btn i {
  font-size: 1.2rem;
  color: white;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .dashboard-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .dashboard-sidebar.show {
    left: 0;
  }
  
  .dashboard-content {
    padding: 1rem;
    margin-top: 80px;
  }
  
  .stats-row .col-md-3 {
    margin-bottom: 1rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .bookings-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Hide sidebar on mobile by default */
  .col-lg-3.col-md-4 {
    width: 100%;
    padding: 0;
  }
  
  .col-lg-9.col-md-8 {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .dashboard-sidebar {
    width: 100%;
  }
  
  .mobile-toggle-container {
    top: 15px;
    left: 15px;
  }
  
  .sidebar-toggle-btn {
    width: 45px;
    height: 45px;
  }
  
  .sidebar-toggle-btn i {
    font-size: 1.1rem;
  }
}

/* Utility Classes */
.btn-primary {
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c79d5c 0%, #e0b04b 100%);
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: #e0b04b;
  color: #e0b04b;
}

.btn-outline-primary:hover {
  background: #e0b04b;
  border-color: #e0b04b;
  color: white;
}

/* Booking Cards */
.booking-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #e0b04b;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.booking-header h5 {
  color: #232323;
  margin: 0;
  font-weight: 600;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-assigned {
  background: #d1ecf1;
  color: #0c5460;
}

.status-in_progress {
  background: #d4edda;
  color: #155724;
}

.status-completed {
  background: #d1e7dd;
  color: #0f5132;
}

.booking-details p {
  margin-bottom: 0.5rem;
  color: #666;
}

.booking-details strong {
  color: #232323;
}

.booking-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* Payment Cards */
.payment-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #28a745;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.payment-header h5 {
  color: #232323;
  margin: 0;
  font-weight: 600;
}

.payment-details p {
  margin-bottom: 0.5rem;
  color: #666;
}

.payment-details strong {
  color: #232323;
}

/* Activity Items */
.activity-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.activity-icon i {
  color: white;
  font-size: 1rem;
}

.activity-content {
  flex: 1;
}

.activity-text {
  color: #232323;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.activity-time {
  color: #666;
  font-size: 0.85rem;
}

/* Timeline */
.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-icon i {
  color: white;
  font-size: 0.8rem;
}

.timeline-content {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.timeline-content h6 {
  color: #232323;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  margin: 0 0 0.5rem 0;
}

.timeline-content small {
  color: #999;
  font-size: 0.8rem;
}

/* User Info in Sidebar */
.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.sidebar-profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.user-info {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Behalf Selection */
.behalf-select-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  transition: border-color 0.3s ease;
}

.behalf-select-box:hover {
  border-color: #e0b04b;
}

.behalf-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.behalf-btn {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  color: #232323;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.behalf-btn:hover {
  border-color: #e0b04b;
  background: #e0b04b;
  color: white;
}

.behalf-btn.selected {
  border-color: #e0b04b;
  background: #e0b04b;
  color: white;
}

/* Loading States */
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.loading i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e0b04b;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.empty-state h5 {
  color: #232323;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #666;
  margin: 0;
}

/* Simple Booking Cards */
.booking-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.booking-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: #e0b04b;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.booking-header h5 {
  color: #232323;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-assigned {
  background: #d1ecf1;
  color: #0c5460;
}

.status-in_progress {
  background: #d4edda;
  color: #155724;
}

.status-completed {
  background: #d1e7dd;
  color: #0f5132;
}

.booking-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.booking-details p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

.booking-details p:last-child {
  margin-bottom: 0;
}

.booking-details strong {
  color: #232323;
  font-weight: 600;
}

.booking-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.booking-actions .btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.booking-actions .btn-primary {
  background: #e0b04b;
  border-color: #e0b04b;
  color: white;
}

.booking-actions .btn-primary:hover {
  background: #c79d5c;
  border-color: #c79d5c;
}

.booking-actions .btn-outline-primary {
  border-color: #e0b04b;
  color: #e0b04b;
}

.booking-actions .btn-outline-primary:hover {
  background: #e0b04b;
  color: white;
}

/* Simple Payment Cards */
.payment-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.payment-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: #e0b04b;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.payment-header h5 {
  color: #232323;
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.payment-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  background: #e0b04b;
  color: white;
}

.payment-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.payment-details p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

.payment-details p:last-child {
  margin-bottom: 0;
}

.payment-details strong {
  color: #232323;
  font-weight: 600;
}

/* Enhanced Activity Items */
.activity-item {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.activity-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: rgba(224, 176, 75, 0.2);
}

.activity-item:last-child {
  margin-bottom: 0;
}

.activity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224, 176, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.activity-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.activity-item:hover .activity-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.activity-icon i {
  color: white;
  font-size: 1.2rem;
  z-index: 1;
  position: relative;
}

.activity-content {
  flex: 1;
}

.activity-text {
  color: #232323;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.activity-time {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.activity-time i {
  color: #e0b04b;
  font-size: 0.8rem;
}

/* Enhanced Timeline */
.history-timeline {
  position: relative;
  padding-left: 3rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e0b04b 0%, #c79d5c 50%, #e0b04b 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -3.25rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 2;
}

.timeline-icon i {
  color: white;
  font-size: 1rem;
}

.timeline-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.25rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #f8f9fa;
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.timeline-content h6 {
  color: #232323;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.timeline-content small {
  color: #999;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-content small i {
  color: #e0b04b;
  font-size: 0.8rem;
}

/* Enhanced Stats Cards */
.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e0b04b 0%, #c79d5c 50%, #e0b04b 100%);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(224, 176, 75, 0.3);
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.stat-card:hover .stat-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
}

.stat-content h3 {
  color: #232323;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #e0b04b 0%, #c79d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-content p {
  color: #666;
  font-weight: 500;
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
