@charset "UTF-8";
/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

.latest-facility-wrapper {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.latest-facility-wrapper .card-header {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.latest-facility-wrapper .card-header .heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 0;
}
.latest-facility-wrapper .card-header .heading-wrap .sub-heading {
  margin: 0;
}
.latest-facility-wrapper .card-header .heading-wrap form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.latest-facility-wrapper .card-header .heading-wrap form .flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.latest-facility-wrapper .card-header .heading-wrap form .flex input[type=text] {
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  width: 50%;
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s;
}
.latest-facility-wrapper .card-header .heading-wrap form .flex input[type=text]:focus {
  border-color: #2f443b;
}
.latest-facility-wrapper .card-header .heading-wrap form .flex .facility-btn {
  background-color: #2f443b;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.latest-facility-wrapper .card-header .heading-wrap form .flex .facility-btn:hover {
  background-color: #002006;
}
.latest-facility-wrapper .card-body {
  padding: 1.5rem;
}
.latest-facility-wrapper .card-body .facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.latest-facility-wrapper .card-body .facility-list .facility-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9f9f9;
  transition: background-color 0.2s ease;
}
.latest-facility-wrapper .card-body .facility-list .facility-item:hover {
  background: #f9fafb;
}
.latest-facility-wrapper .card-body .facility-list .facility-item:last-child {
  border-bottom: none;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-name {
  font-weight: 500;
  color: #1f2937;
  display: flex;
  align-items: center;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-name .facility-count {
  background-color: #2f443b;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action {
  display: flex;
  align-items: center;
  gap: 8px;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action .edit-facility-btn {
  padding: 0.375rem 0.75rem;
  background: #17a2b8;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action .edit-facility-btn:hover {
  background: #138496;
  color: white;
  text-decoration: none;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action .in-use-text {
  color: #6c757d;
  font-size: 13px;
  font-style: italic;
  padding: 0.375rem 0.75rem;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  cursor: not-allowed;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action .delete-btn {
  padding: 0.375rem 0.75rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.latest-facility-wrapper .card-body .facility-list .facility-item .facility-action .delete-btn:hover {
  background: #dc2626;
}
@media (max-width: 768px) {
  .latest-facility-wrapper .card-body .facility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .latest-facility-wrapper .card-header .heading-wrap {
    flex-direction: column;
    gap: 1.6rem;
    align-items: start;
  }
  .latest-facility-wrapper .card-header .heading-wrap form {
    width: 100%;
  }
  .latest-facility-wrapper .card-header .heading-wrap form .flex {
    flex-grow: 1;
    justify-content: end;
  }
  .latest-facility-wrapper .card-header .heading-wrap form .flex input {
    flex-grow: 1;
  }
  .latest-facility-wrapper .card-body {
    padding: 10px;
  }
  .latest-facility-wrapper .card-body .facility-list {
    grid-template-columns: 1fr;
  }
  .latest-facility-wrapper .card-body .facility-list .facility-item {
    padding: 8px;
  }
}

.facility-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.facility-modal-overlay .modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.facility-modal-overlay .modal-content .facility-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 8px 8px 0 0;
}
.facility-modal-overlay .modal-content .facility-modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.facility-modal-overlay .modal-content .facility-modal-header .modal-close {
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.facility-modal-overlay .modal-content .facility-modal-header .modal-close i {
  font-size: 14px;
  color: #6b7280;
  transition: color 0.2s ease;
}
.facility-modal-overlay .modal-content .facility-modal-header .modal-close:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}
.facility-modal-overlay .modal-content .facility-modal-header .modal-close:hover i {
  color: #374151;
}
.facility-modal-overlay .modal-content .facility-modal-header .modal-close:active {
  transform: scale(0.95);
}
.facility-modal-overlay .modal-content .modal-body {
  padding: 24px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.facility-modal-overlay .modal-content .modal-body .modal-message {
  padding: 12px 16px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}
.facility-modal-overlay .modal-content .modal-body .modal-message.modal-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.facility-modal-overlay .modal-content .modal-body .modal-message.modal-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.facility-modal-overlay .modal-content .modal-body .form-group {
  margin-bottom: 20px;
}
.facility-modal-overlay .modal-content .modal-body .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}
.facility-modal-overlay .modal-content .modal-body .form-group .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.facility-modal-overlay .modal-content .modal-body .form-group .form-control:focus {
  outline: none;
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}
.facility-modal-overlay .modal-content .modal-body .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-primary {
  padding: 10px 24px;
  background: #2f443b;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-primary:hover {
  background: #2f443b;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-primary:disabled {
  background: #a0aec0;
  cursor: not-allowed;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-secondary {
  padding: 10px 24px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-secondary:hover {
  background: #5a6268;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-danger {
  padding: 10px 24px;
  background: #e63946;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-danger:hover {
  background: #c92f3d;
}
.facility-modal-overlay .modal-content .modal-body .modal-actions .btn-danger:disabled {
  background: #f1a5ac;
  cursor: not-allowed;
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

/* Partner Review Section - Clean Isolated Design */
.partner-reviews-section .partner-review-container {
  animation: fadeIn 0.3s ease-in-out;
}
.partner-reviews-section .partner-review-card {
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  transition: 0.3s ease-in-out;
}
.partner-reviews-section .partner-review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.partner-reviews-section .partner-review-card {
  /* Header Area */
}
.partner-reviews-section .partner-review-card .partner-review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.partner-reviews-section .partner-review-card .partner-review-header .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.partner-reviews-section .partner-review-card .partner-review-header .reviewer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info {
  flex-grow: 1;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time .star-rating {
  display: flex;
  gap: 2px;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time .star-rating i {
  font-size: 0.8rem;
  color: #e4e5e9;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time .star-rating i.active {
  color: #f5c518;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time .partner-review-date {
  font-size: 0.85rem;
  color: #64748b;
  position: relative;
  padding-left: 10px;
}
.partner-reviews-section .partner-review-card .partner-review-header .partner-review-info .partner-review-rating-time .partner-review-date::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #ccc;
}
.partner-reviews-section .partner-review-card {
  /* Content Area */
}
.partner-reviews-section .partner-review-card .partner-review-content {
  padding-left: 64px;
  margin-bottom: 16px;
}
.partner-reviews-section .partner-review-card .partner-review-content .partner-review-message {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.partner-reviews-section .partner-review-card {
  /* Reply Section - Nested Card */
}
.partner-reviews-section .partner-review-card.reply {
  margin-top: 20px;
  margin-left: 64px;
  background-color: #f8fafc;
  border-left: 4px solid #2f443b;
  border-radius: 8px;
  padding: 20px;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.partner-reviews-section .partner-review-card.reply .partner-review-header {
  gap: 12px;
  margin-bottom: 12px;
}
.partner-reviews-section .partner-review-card.reply .partner-review-header .reviewer-avatar {
  width: 36px;
  height: 36px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
}
.partner-reviews-section .partner-review-card.reply .partner-review-header .partner-review-name {
  font-size: 1rem;
}
.partner-reviews-section .partner-review-card.reply .partner-review-header .reply-badge {
  font-size: 0.75rem;
  background-color: rgba(47, 68, 59, 0.1);
  color: #2f443b;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  font-weight: 600;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.partner-reviews-section .partner-review-card.reply .partner-review-header .reply-date {
  font-size: 0.85rem;
  color: #64748b;
  position: relative;
  padding-left: 10px;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content {
  padding-left: 0px;
  margin-bottom: 0;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content .partner-review-message {
  font-size: 0.9rem;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content .reply-label {
  font-weight: 600;
  color: #2f443b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content textarea.form-control {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 80px;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content textarea.form-control:focus {
  border-color: #2f443b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
}
.partner-reviews-section .partner-review-card.reply .partner-review-content .theme-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 6px;
  background-color: #2f443b;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.partner-reviews-section .partner-review-card.reply .partner-review-content .theme-btn:hover {
  background-color: rgb(36.5782608696, 52.9217391304, 45.9173913043);
}
.partner-reviews-section {
  /* Reply Connector Logic - Hidden for cleaner look, but structure kept if needed */
}
.partner-reviews-section .partner-reply-section .reply-connector {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner-reviews-section .partner-review-card {
    padding: 16px;
  }
  .partner-reviews-section .partner-review-card .partner-review-content {
    padding-left: 0;
    margin-top: 12px;
  }
  .partner-reviews-section .partner-review-card.reply {
    margin-left: 16px;
    padding: 16px;
  }
  .partner-reviews-section .partner-review-card.reply .partner-review-content {
    padding-left: 0;
  }
}
/* Custom Modal Styling */
.partner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  /* Bootstrap modal z-index */
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}
.partner-modal-overlay.show {
  display: flex;
  opacity: 1;
}
.partner-modal-overlay .partner-modal-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  margin: 20px;
  overflow: hidden;
  /* Animate in */
  animation: modalSlideIn 0.3s forwards;
}
.partner-modal-overlay .partner-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner-modal-overlay .partner-modal-header h5 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
}
.partner-modal-overlay .partner-modal-header .close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.partner-modal-overlay .partner-modal-header .close-btn:hover {
  color: #1e293b;
}
.partner-modal-overlay .partner-modal-body {
  padding: 24px;
}
.partner-modal-overlay .partner-modal-body .form-control {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 100px;
}
.partner-modal-overlay .partner-modal-body .form-control:focus {
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
  outline: none;
}
.partner-modal-overlay .partner-modal-body .theme-btn {
  background-color: #2f443b;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 16px;
}
.partner-modal-overlay .partner-modal-body .theme-btn:hover {
  background-color: rgb(36.5782608696, 52.9217391304, 45.9173913043);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

/* ================================
   Schedule Management Styles
================================ */
.schedule-time-container {
  background: linear-gradient(135deg, #2f443b 0%, #1e2d26 100%);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.schedule-time-container h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-family: "Outfit", sans-serif;
}

.time-slot {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.time-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.time-slot-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #1e293b;
}
.time-slot-header h4 {
  margin: 0;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.time-slot-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}
.time-slot-icon.morning-icon {
  background: linear-gradient(135deg, #f1c72e 0%, #f5576c 100%);
}
.time-slot-icon.afternoon-icon {
  background: linear-gradient(135deg, #4a6b5a 0%, rgb(94.8508287293, 137.1491712707, 115.3591160221) 100%);
}
.time-slot-icon.evening-icon {
  background: linear-gradient(135deg, #586880 0%, #374151 100%);
}
.time-slot-icon i {
  color: #ffffff;
}

.time-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.time-input-group {
  position: relative;
}
.time-input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #5a6c7d;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
}
.time-input-group input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease-in-out;
}
.time-input-group input:focus {
  outline: none;
  border-color: #2f443b;
}

.am-pm-display {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #f1f5f9;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #586880;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease-in-out;
}
.am-pm-display.pm {
  background: linear-gradient(135deg, #2f443b 0%, #1e2d26 100%);
  color: #ffffff;
}

.days-selector {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.days-selector label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.day-checkbox {
  display: none;
}

.day-label {
  display: block;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  color: #374151;
}
.day-label:hover {
  border-color: #2f443b;
  background: rgba(47, 68, 59, 0.05);
}

.day-checkbox:checked + .day-label {
  background: linear-gradient(135deg, #2f443b 0%, #1e2d26 100%);
  color: #ffffff;
  border-color: #2f443b;
  transform: scale(1.05);
}
.day-checkbox:checked + .day-label:hover {
  background: linear-gradient(135deg, #1e2d26 0%, #2f443b 100%);
}

.schedule-name-input {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.schedule-name-input label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
}
.schedule-name-input input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease-in-out;
}
.schedule-name-input input:focus {
  outline: none;
  border-color: #2f443b;
}
.schedule-name-input input::-moz-placeholder {
  color: #6c757d;
}
.schedule-name-input input::placeholder {
  color: #6c757d;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.action-btn {
  background: linear-gradient(135deg, #2f443b 0%, #1e2d26 100%);
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: "Outfit", sans-serif;
}
.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(47, 68, 59, 0.3) 0px 6px 20px;
}
.action-btn:active {
  transform: translateY(0);
}
.action-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Quick Time Buttons */
.quick-time-buttons {
  margin-top: 5px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.quick-time-btn {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease-in-out;
}
.quick-time-btn:hover {
  background-color: #2f443b;
  border-color: #2f443b;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .schedule-time-container {
    padding: 15px;
  }
  .time-inputs {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .days-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
  .time-slot {
    padding: 15px;
  }
  .action-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .days-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quick-time-buttons {
    gap: 3px;
  }
  .quick-time-btn {
    font-size: 10px;
    padding: 1px 4px;
  }
}
/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.schedule-time-container,
.days-selector,
.schedule-name-input {
  animation: fadeIn 0.5s ease-out;
}

.time-slot {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}
.time-slot:nth-child(1) {
  animation-delay: 0.1s;
}
.time-slot:nth-child(2) {
  animation-delay: 0.2s;
}
.time-slot.time-slot:nth-child(3) {
  animation-delay: 0.3s;
}

/* Status Toggle Switch */
.status-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.status-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.status-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.3s ease-in-out;
  border-radius: 24px;
}
.status-toggle .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  border-radius: 50%;
}
.status-toggle input:checked + .slider {
  background: linear-gradient(135deg, #06d6a0 0%, rgb(22.5181818182, 248.4818181818, 189.8181818182) 100%);
}
.status-toggle input:focus + .slider {
  box-shadow: 0 0 1px #06d6a0;
}
.status-toggle input:checked + .slider:before {
  transform: translateX(26px);
}
.status-toggle.loading {
  pointer-events: none;
  opacity: 0.6;
}
.status-toggle.loading .slider:before {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(6, 214, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
  }
}
/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}
.status-badge.active {
  background: rgba(6, 214, 160, 0.1);
  color: #06d6a0;
}
.status-badge.inactive {
  background: rgba(148, 163, 184, 0.1);
  color: #64748b;
}

/* Appointment Management Styles */
.appointment-stats .stat-card, .service-stats .stat-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.appointment-stats .stat-card:hover, .service-stats .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.appointment-stats .stat-card .stat-icon, .service-stats .stat-card .stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.appointment-stats .stat-card .stat-icon.total, .service-stats .stat-card .stat-icon.total {
  background: linear-gradient(135deg, #2f443b 0%, #1e2d26 100%);
  color: #ffffff;
}
.appointment-stats .stat-card .stat-icon.upcoming, .appointment-stats .stat-card .stat-icon.active, .service-stats .stat-card .stat-icon.upcoming, .service-stats .stat-card .stat-icon.active {
  background: linear-gradient(135deg, #f1c72e 0%, #f5576c 100%);
  color: #ffffff;
}
.appointment-stats .stat-card .stat-icon.completed, .service-stats .stat-card .stat-icon.completed {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
}
.appointment-stats .stat-card .stat-icon.inactive, .service-stats .stat-card .stat-icon.inactive {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
}
.appointment-stats .stat-card .stat-icon.cancelled, .appointment-stats .stat-card .stat-icon.global-inactive, .service-stats .stat-card .stat-icon.cancelled, .service-stats .stat-card .stat-icon.global-inactive {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: #ffffff;
}
.appointment-stats .stat-card .stat-info h3, .service-stats .stat-card .stat-info h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
}
.appointment-stats .stat-card .stat-info p, .service-stats .stat-card .stat-info p {
  margin: 0;
  font-size: 14px;
  color: #586880;
  font-family: "Outfit", sans-serif;
}

.filter-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.filter-section .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out;
}
.filter-section .form-control:focus {
  outline: none;
  border-color: #2f443b;
}

.appointment-student-input,
.appointment-date-input,
.appointment-time-input,
.appointment-service-input,
.appointment-duration-input,
.appointment-status-input,
.appointment-notes-input {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.appointment-student-input label,
.appointment-date-input label,
.appointment-time-input label,
.appointment-service-input label,
.appointment-duration-input label,
.appointment-status-input label,
.appointment-notes-input label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1e293b;
  font-family: "Outfit", sans-serif;
}
.appointment-student-input .form-control,
.appointment-date-input .form-control,
.appointment-time-input .form-control,
.appointment-service-input .form-control,
.appointment-duration-input .form-control,
.appointment-status-input .form-control,
.appointment-notes-input .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  transition: border-color 0.3s ease-in-out;
}
.appointment-student-input .form-control:focus,
.appointment-date-input .form-control:focus,
.appointment-time-input .form-control:focus,
.appointment-service-input .form-control:focus,
.appointment-duration-input .form-control:focus,
.appointment-status-input .form-control:focus,
.appointment-notes-input .form-control:focus {
  outline: none;
  border-color: #2f443b;
}
.appointment-student-input .form-control::-moz-placeholder, .appointment-date-input .form-control::-moz-placeholder, .appointment-time-input .form-control::-moz-placeholder, .appointment-service-input .form-control::-moz-placeholder, .appointment-duration-input .form-control::-moz-placeholder, .appointment-status-input .form-control::-moz-placeholder, .appointment-notes-input .form-control::-moz-placeholder {
  color: #6c757d;
}
.appointment-student-input .form-control::placeholder,
.appointment-date-input .form-control::placeholder,
.appointment-time-input .form-control::placeholder,
.appointment-service-input .form-control::placeholder,
.appointment-duration-input .form-control::placeholder,
.appointment-status-input .form-control::placeholder,
.appointment-notes-input .form-control::placeholder {
  color: #6c757d;
}
.appointment-student-input textarea.form-control,
.appointment-date-input textarea.form-control,
.appointment-time-input textarea.form-control,
.appointment-service-input textarea.form-control,
.appointment-duration-input textarea.form-control,
.appointment-status-input textarea.form-control,
.appointment-notes-input textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

/* ============================================================
   Premium Appointment Details Styles
   ============================================================ */
.appointment-details-view {
  padding: 30px 0;
  font-family: "Outfit", sans-serif;
}
.appointment-details-view .back-btn {
  background: #2f443b;
  padding: 8px 12px;
  color: white;
  font-size: clamp(12px, 1vw, 16px);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.appointment-details-view .back-btn:hover {
  background: rgb(26.1565217391, 37.8434782609, 32.8347826087);
}
.appointment-details-view .details-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: none;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
}
.appointment-details-view .details-card .details-header {
  display: none;
  /* Removed for system-heading compatibility */
}
.appointment-details-view .details-card .card-action-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.appointment-details-view .details-card .card-action-header .badge-group {
  display: flex;
  gap: 10px;
}
.appointment-details-view .details-card .details-body {
  padding: 30px 40px;
}
.appointment-details-view .details-card .details-body .section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .appointment-details-view .details-card .details-body .section-grid {
    grid-template-columns: 1fr;
  }
}
.appointment-details-view .details-card .details-body .info-group .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 6px;
}
.appointment-details-view .details-card .details-body .info-group .value {
  font-size: 1.1rem;
  color: #1e2d26;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.appointment-details-view .details-card .details-body .info-group .value i {
  color: #4a6b5a;
  font-size: 1rem;
}
.appointment-details-view .details-card .details-body .info-group.notes-group {
  grid-column: 1/-1;
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #4a6b5a;
}
.appointment-details-view .details-card .details-body .info-group.notes-group .value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #374151;
  display: block;
}
.appointment-details-view .details-card {
  /* Global Premium Buttons within Card */
}
.appointment-details-view .details-card .btn-premium {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.appointment-details-view .details-card .btn-premium.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 6px;
}
.appointment-details-view .details-card .btn-premium.btn-back {
  background: transparent;
  color: #586880;
  border: 1px solid #e2e8f0;
}
.appointment-details-view .details-card .btn-premium.btn-back:hover {
  background: #e2e8f0;
  color: #1e2d26;
}
.appointment-details-view .details-card .btn-premium.btn-approve {
  background: linear-gradient(135deg, #06d6a0 0%, rgb(4.6090909091, 164.3909090909, 122.9090909091) 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(6, 214, 160, 0.2);
}
.appointment-details-view .details-card .btn-premium.btn-approve:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 214, 160, 0.3);
}
.appointment-details-view .details-card .btn-premium.btn-inprogress {
  background: linear-gradient(135deg, #2f443b 0%, rgb(26.1565217391, 37.8434782609, 32.8347826087) 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(47, 68, 59, 0.2);
}
.appointment-details-view .details-card .btn-premium.btn-inprogress:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 68, 59, 0.3);
}
.appointment-details-view .details-card .btn-premium.btn-onhold {
  background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2);
}
.appointment-details-view .details-card .btn-premium.btn-onhold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}
.appointment-details-view .details-card .btn-premium.btn-unapprove {
  background: linear-gradient(135deg, #DC3545 0%, rgb(189.2151898734, 32.7848101266, 47.7721518987) 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}
.appointment-details-view .details-card .btn-premium.btn-unapprove:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}
.appointment-details-view .details-card .btn-premium.active-status {
  transform: scale(1.02);
  filter: brightness(1.1);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
.appointment-details-view .details-card .btn-premium.active-status::after {
  content: "\F058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffffff;
  color: #06d6a0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.appointment-details-view .details-card .details-footer {
  padding: 24px 50px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .appointment-details-view .details-card .details-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
.appointment-details-view .details-card .details-footer .btn-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.appointment-details-view .details-card .details-footer .pending-notice {
  font-size: 0.9rem;
  color: #586880;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 68, 59, 0.05);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px dashed rgba(47, 68, 59, 0.3);
}
.appointment-details-view .details-card .details-footer .pending-notice i {
  color: #2f443b;
}
.appointment-details-view .details-card .details-footer .pending-notice strong {
  font-size: inherit;
  color: #1e2d26;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}
.status-indicator.status-approved {
  background: rgba(6, 214, 160, 0.1);
  color: #06d6a0;
}
.status-indicator.status-unapproved {
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
}

/* ============================================================
   Student Appointment Detail View - Additional Styles
   ============================================================ */
.appointment-details-view .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.appointment-details-view .student-details-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-top: 20px;
  animation: fadeIn 0.6s ease-out;
}
.appointment-details-view .student-details-card .card-action-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.appointment-details-view .session-status .badge {
  background: #ebf4ff;
  color: #2b6cb0;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
}
.appointment-details-view .student-details-layout {
  display: flex;
  gap: 0;
}
@media (max-width: 768px) {
  .appointment-details-view .student-details-layout {
    flex-direction: column;
  }
}
.appointment-details-view .student-details-main {
  flex: 0 0 58%;
  padding: 30px 40px;
}
@media (max-width: 768px) {
  .appointment-details-view .student-details-main {
    padding: 20px;
  }
}
.appointment-details-view .student-details-sidebar {
  flex: 1;
  padding: 30px 40px;
  border-left: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .appointment-details-view .student-details-sidebar {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding: 20px;
  }
}
.appointment-details-view .notes-section {
  background: #f8fafc;
  border-left: 4px solid #4a6b5a;
  border-radius: 8px;
  margin-top: 30px;
  padding: 20px;
}
.appointment-details-view .notes-section .notes-group .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 6px;
}
.appointment-details-view .notes-section .notes-group .label i {
  margin-right: 4px;
}
.appointment-details-view .notes-section .notes-group .value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  display: block;
}
.appointment-details-view .session-summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
  color: #64748b;
  margin-bottom: 20px;
}
.appointment-details-view .timeline-summary .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.appointment-details-view .timeline-summary .icon-box {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.appointment-details-view .timeline-summary .icon-box.icon-duration {
  background: #e2e8f0;
  color: #374151;
}
.appointment-details-view .timeline-summary .icon-box.icon-payment {
  background: #c6f6d5;
  color: #2f855a;
}
.appointment-details-view .timeline-summary .timeline-title {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.appointment-details-view .timeline-summary .timeline-text {
  color: #64748b;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.appointment-details-view .instruction-box {
  background: #ebf8ff;
  border-radius: 8px;
  color: #2b6cb0;
  font-size: 0.85rem;
  padding: 12px 16px;
  margin-top: 10px;
}
.appointment-details-view .instruction-box i {
  margin-right: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 992px) {
  .dash-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dash-stat-row {
    grid-template-columns: 1fr;
  }
}

.dash-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dash-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.dash-stat-card .dash-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: #fff;
}
.dash-stat-card .dash-stat-info .dash-stat-number {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1;
  color: #1a2332;
}
.dash-stat-card .dash-stat-info .dash-stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7b8a9b;
  margin-top: 4px;
}
.dash-stat-card.dash-stat-total {
  border-left-color: #2f443b;
}
.dash-stat-card.dash-stat-total .dash-stat-icon {
  background: linear-gradient(135deg, #2f443b, #4a6b5a);
}
.dash-stat-card.dash-stat-approved {
  border-left-color: #06d6a0;
}
.dash-stat-card.dash-stat-approved .dash-stat-icon {
  background: linear-gradient(135deg, #06d6a0, #04b585);
}
.dash-stat-card.dash-stat-pending {
  border-left-color: #f1c72e;
}
.dash-stat-card.dash-stat-pending .dash-stat-icon {
  background: linear-gradient(135deg, #f1c72e, #d4a800);
  color: #fff !important;
}
.dash-stat-card.dash-stat-rejected {
  border-left-color: #dc3545;
}
.dash-stat-card.dash-stat-rejected .dash-stat-icon {
  background: linear-gradient(135deg, #dc3545, #b02030);
}
.dash-stat-card.dash-stat-info {
  border-left-color: #4a6b5a;
}
.dash-stat-card.dash-stat-info .dash-stat-icon {
  background: linear-gradient(135deg, #4a6b5a, rgb(53.1491712707, 76.8508287293, 64.6408839779));
}

.dash-chart-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
}
.dash-chart-card .dash-chart-header {
  background: linear-gradient(135deg, #2f443b 0%, rgb(34.4939130435, 49.9060869565, 43.3008695652) 100%);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.dash-chart-card .dash-chart-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dash-chart-card .dash-chart-body canvas {
  max-width: 100%;
}

.dash-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.dash-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}

.dash-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dash-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #9ca3af;
}
.dash-empty-state i {
  font-size: 42px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.dash-empty-state p {
  font-size: 14px;
  color: #9ca3af;
}

.dash-rate-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 18px 20px;
  flex: 1;
}
.dash-rate-card .dash-rate-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7b8a9b;
  margin-bottom: 10px;
}
.dash-rate-card .dash-rate-bar-wrap {
  width: 100%;
  height: 8px;
  background: #f0f2f5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.dash-rate-card .dash-rate-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.8s ease;
  min-width: 2px;
}
.dash-rate-card .dash-rate-value {
  font-size: 20px;
  font-weight: 800;
  color: #1a2332;
}
.dash-rate-card .dash-rate-value span {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 4px;
}

.dash-filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dash-filter-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Outfit", sans-serif;
}
.dash-filter-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.dash-filter-btn.active {
  background: #fff;
  color: #2f443b;
  border-color: #fff;
}

.dash-courses-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dash-course-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f5;
  transition: background 0.15s;
}
.dash-course-row:last-child {
  border-bottom: none;
}
.dash-course-row:hover {
  background: #f8fafc;
}

.dash-course-rank {
  font-size: 13px;
  font-weight: 800;
  color: #c5cdd8;
  width: 28px;
  flex-shrink: 0;
  text-align: center;
}

.dash-course-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #e8ecf0;
}
.dash-course-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.dash-course-no-thumb {
  width: 100%;
  height: 100%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5cdd8;
  font-size: 18px;
}

.dash-course-info {
  flex: 1;
  min-width: 0;
}
.dash-course-info .dash-course-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.dash-course-info .dash-course-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.dash-course-info .dash-course-date {
  font-size: 12px;
  color: #9ca3af;
}

.dash-course-likes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  min-width: 46px;
}
.dash-course-likes i {
  font-size: 16px;
  color: #e25c6a;
}
.dash-course-likes span {
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
}

.dash-courses-loading,
.dash-courses-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #9ca3af;
  gap: 10px;
}
.dash-courses-loading i,
.dash-courses-empty i {
  font-size: 28px;
  opacity: 0.5;
}
.dash-courses-loading p,
.dash-courses-empty p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

.whl-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.whl-section {
  padding: 12px 0 4px;
}

.whl-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #9ca3af;
  padding: 0 20px 8px;
}

.whl-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid #f4f6f8;
}
.whl-bar-row:last-child {
  border-bottom: none;
}
.whl-bar-row:hover {
  background: #f8fafc;
}
.whl-bar-row:hover .whl-bar-fill {
  filter: brightness(1.1);
}

.whl-bar-rank {
  font-size: 12px;
  font-weight: 800;
  color: #c5cdd8;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.whl-bar-body {
  flex: 1;
  min-width: 0;
}

.whl-bar-name {
  font-size: 13px;
  font-weight: 600;
  color: #1a2332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.whl-bar-track {
  width: 100%;
  height: 6px;
  background: #f0f2f5;
  border-radius: 10px;
  overflow: hidden;
}

.whl-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #4a6b5a, #2f443b);
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 4px;
}

.whl-bar-count {
  font-size: 12px;
  font-weight: 700;
  color: #e25c6a;
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
}
.whl-bar-count i {
  font-size: 10px;
}

.whl-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f8fafc;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
  margin-top: 4px;
}
.whl-divider span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7b8a9b;
}
.whl-divider small {
  font-size: 11px;
  color: #9ca3af;
}

.whl-audience-list {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 240px;
}
.whl-audience-list::-webkit-scrollbar {
  width: 4px;
}
.whl-audience-list::-webkit-scrollbar-track {
  background: #f8fafc;
}
.whl-audience-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.whl-liker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-bottom: 1px solid #f4f6f8;
  transition: background 0.12s;
}
.whl-liker-row:last-child {
  border-bottom: none;
}
.whl-liker-row:hover {
  background: #f8fafc;
}

.whl-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e8ecf0;
}
.whl-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.whl-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2f443b, #4a6b5a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.whl-liker-info {
  flex: 1;
  min-width: 0;
}

.whl-liker-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.whl-liker-role {
  display: inline-block;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 8px;
}

.whl-liker-count {
  font-size: 12px;
  font-weight: 700;
  color: #e25c6a;
  flex-shrink: 0;
}
.whl-liker-count i {
  font-size: 10px;
}

.dash-likers-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dash-likers-chart-wrap {
  padding: 16px 20px 8px;
  border-bottom: 1px solid #f0f2f5;
}

.dash-likers-total {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}
.dash-likers-total strong {
  color: #1a2332;
  font-size: 14px;
}

.dash-likers-list {
  display: flex;
  flex-direction: column;
  max-height: 320px;
  overflow-y: auto;
}
.dash-likers-list::-webkit-scrollbar {
  width: 4px;
}
.dash-likers-list::-webkit-scrollbar-track {
  background: #f8fafc;
}
.dash-likers-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.dash-liker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid #f0f2f5;
  transition: background 0.15s;
}
.dash-liker-row:last-child {
  border-bottom: none;
}
.dash-liker-row:hover {
  background: #f8fafc;
}

.dash-liker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e8ecf0;
}
.dash-liker-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.dash-liker-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2f443b, #4a6b5a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.dash-liker-info {
  flex: 1;
  min-width: 0;
}
.dash-liker-info .dash-liker-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a2332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.dash-liker-role {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}

.dash-liker-count {
  font-size: 13px;
  font-weight: 700;
  color: #e25c6a;
  flex-shrink: 0;
}
.dash-liker-count i {
  font-size: 11px;
}

.clp-trigger {
  cursor: pointer;
  transition: transform 0.15s, color 0.15s;
}
.clp-trigger:hover {
  transform: scale(1.15);
}
.clp-trigger:hover i {
  color: #c0392b;
}

.clp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.clp-card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  animation: clpSlide 0.2s ease;
}

@keyframes clpSlide {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.clp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
  flex-shrink: 0;
}

.clp-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #9ca3af;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.clp-close:hover {
  background: #f0f2f5;
  color: #1a2332;
}

.clp-body {
  overflow-y: auto;
  flex: 1;
}
.clp-body::-webkit-scrollbar {
  width: 4px;
}
.clp-body::-webkit-scrollbar-track {
  background: #f8fafc;
}
.clp-body::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.clp-liker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f9fafb;
  transition: background 0.1s;
}
.clp-liker-row:last-child {
  border-bottom: none;
}
.clp-liker-row:hover {
  background: #f8fafc;
}

.clp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e8ecf0;
}
.clp-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.clp-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2f443b, #4a6b5a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
}

.clp-info {
  flex: 1;
  min-width: 0;
}
.clp-info .clp-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.clp-role {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}

.clp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #9ca3af;
  gap: 10px;
}
.clp-empty i {
  font-size: 28px;
  opacity: 0.5;
}
.clp-empty p {
  font-size: 14px;
  margin: 0;
}

.elq-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.elq-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #2f443b 0%, rgb(34.4939130435, 49.9060869565, 43.3008695652) 100%);
  flex-shrink: 0;
}

.elq-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.elq-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.elq-card-icon--lead {
  background: rgba(241, 199, 46, 0.25);
  color: #f1c72e;
}

.elq-card-count {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.elq-card-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.elq-view-all {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 5px 12px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.elq-view-all:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.elq-list {
  overflow-y: auto;
  flex: 1;
  max-height: 360px;
}
.elq-list::-webkit-scrollbar {
  width: 4px;
}
.elq-list::-webkit-scrollbar-track {
  background: #f8fafc;
}
.elq-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.elq-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f5;
  transition: background 0.12s;
}
.elq-row:last-child {
  border-bottom: none;
}
.elq-row:hover {
  background: #f8fafc;
}

.elq-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}
.elq-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #e8ecf0;
  display: block;
}

.elq-verified-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #06d6a0;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
}

.elq-info {
  flex: 1;
  min-width: 0;
}

.elq-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.elq-verified-icon {
  font-size: 12px;
  color: #06d6a0;
}

.elq-location {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 3px;
}
.elq-location i {
  font-size: 10px;
}

.elq-msg {
  font-size: 12px;
  color: #7b8a9b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.elq-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.elq-status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
}
.elq-status-badge.elq-badge--new {
  background: #e0f7f7;
  color: #0c9397;
}
.elq-status-badge.elq-badge--processing {
  background: #fff8e1;
  color: #d4a800;
}
.elq-status-badge.elq-badge--booked {
  background: #e0faf2;
  color: #06d6a0;
}
.elq-status-badge.elq-badge--completed {
  background: #e6f0f0;
  color: #2f443b;
}
.elq-status-badge.elq-badge--rejected {
  background: #fde8ea;
  color: #dc3545;
}
.elq-status-badge.elq-badge--lead {
  background: #fff3cd;
  color: #856404;
}
.elq-status-badge.elq-badge--unknown {
  background: #f0f0f0;
  color: #9ca3af;
}

.elq-time {
  font-size: 11px;
  color: #9ca3af;
  white-space: nowrap;
}
.elq-time i {
  font-size: 10px;
}

.elq-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  color: #9ca3af;
  gap: 10px;
}
.elq-empty i {
  font-size: 30px;
  opacity: 0.4;
}
.elq-empty p {
  font-size: 14px;
  margin: 0;
}

body {
  font-family: "Outfit", sans-serif;
}

p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(13px, 1.6vw, 16px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

@keyframes dash {
  to {
    background-position: 100% 0%, 0% 100%, 0% 0%, 100% 100%;
  }
}
@keyframes toastEnter {
  0% {
    opacity: 0;
    transform: translateX(120%) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateX(-8px) scale(1);
  }
  100% {
    transform: translateX(0);
  }
}
.spacing {
  padding: clamp(20px, 4vw, 40px) 0;
}

.bg-alt {
  background: radial-gradient(white, #e7f3f3);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.action-btn {
  background-color: #2f443b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 15px);
  cursor: pointer;
  padding: 8px 14px;
  transition: 0.3s ease-in-out ease-in-out;
}
.action-btn:hover {
  background: #0c9397;
  transition: 0.3s ease-in-out ease-in-out;
}
.action-btn.action-btn-circle {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.action-btn.action-btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.action-btn.action-btn-circle.disabled-state {
  background-color: #6c757d;
  cursor: not-allowed;
}
.action-btn.action-btn-circle.disabled-state:hover {
  transform: none;
  box-shadow: none;
}

/* State Classes - Global Override */
.active-state {
  background: #28a745 !important;
  color: #ffffff !important;
}

.active-state:hover {
  background: #218838 !important;
}

.inactive-state {
  background: #dc3545 !important;
  color: #ffffff !important;
}

.inactive-state:hover {
  background: #c82333 !important;
}

.close-btn {
  font: 600 clamp(0.9rem, 1.5vw, 1rem) "Outfit", sans-serif;
  padding: 10px 15px;
  background: #2f443b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.close-btn:hover {
  background: #0c9397;
}

.img-wrap {
  width: 100%;
  height: 100%;
  border: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.full-content-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 12px;
}

.heading-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(26px, 3.6vw, 36px);
}
.heading-wrap.alt-left {
  text-align: left;
  align-items: start;
}
.heading-wrap .sub-title {
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.section-heading .common-heading {
  margin: 0;
}

.common-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  background: linear-gradient(45deg, #2f443b 0%, #4a6b5a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease-in-out;
}
.common-heading:hover {
  background: linear-gradient(-45deg, #2f443b 0%, #4a6b5a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease-in-out;
}

.card-heading {
  display: inline-block;
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.white-space-normal {
  white-space: normal !important;
  word-break: break-word;
}

.text-wrap {
  white-space: normal !important;
}

.sub-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.status-pill.active {
  background-color: #28a745;
}
.status-pill.inactive {
  background-color: #dc3545;
}
.status-pill.pending {
  background-color: #ffc107;
  color: #212529;
}
.status-pill.gray {
  background-color: #6c757d;
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

@keyframes shrinkExpand {
  0% {
    width: 30px;
  }
  50% {
    width: 15px;
  }
  100% {
    width: 30px;
  }
}
@keyframes scroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.top-header {
  background-color: rgb(36.5782608696, 52.9217391304, 45.9173913043);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-header .top-header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
}
.top-header .top-left,
.top-header .top-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.top-header a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.top-header a:hover {
  color: #4a6b5a;
}
.top-header a i {
  margin-right: 6px;
  font-size: 14px;
}
.top-header .welcome-msg {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  font-size: 13px;
  transition: all 0.3s ease;
  margin-right: 15px;
}
.top-header .welcome-msg:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.top-header .welcome-msg .welcome-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.top-header .welcome-msg .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.top-header .welcome-msg .user-role {
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  margin-right: 6px;
}
.top-header .welcome-msg .user-name {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 768px) {
  .top-header .welcome-msg {
    margin-right: 0;
    padding: 4px 12px;
    font-size: 12px;
  }
  .top-header .welcome-msg .separator {
    margin: 0 5px;
  }
  .top-header .welcome-msg .user-role {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .top-header .top-header-wrap {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  .top-header .top-left,
  .top-header .top-right {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .top-header .top-right {
    width: 100%;
    gap: 8px;
  }
  .top-header .top-right a {
    font-size: 9px;
  }
  .top-header .top-right a i {
    margin-right: 3px;
    font-size: 10px;
  }
}

header {
  background: #2f443b;
  position: relative;
  z-index: 1000;
}
header.sticky {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: scroll 0.4s linear forwards;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo-wrap {
  display: inline-flex;
  height: clamp(60px, 8vw, 80px);
  max-width: clamp(160px, 18vw, 180px);
  padding: 8px;
}
header nav .logo-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav .menu-backdrop {
  position: fixed;
}
header nav .middle-wrap .logo-wrap {
  display: none;
}
header nav .middle-wrap ul.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.1vw, 16px);
  padding: 10px 0px;
}
header nav .middle-wrap ul.main-nav li .nav-link {
  padding: 10px 5px;
  color: white;
  transition: 0.3s ease-in-out;
}
header nav .middle-wrap ul.main-nav li .nav-link:hover {
  color: #E9B949;
  transition: 0.3s ease-in-out;
}
header nav .middle-wrap ul.main-nav li.has-dropdown {
  position: relative;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .nav-link {
  cursor: pointer;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .nav-link::after {
  vertical-align: 0.255em;
  content: "";
  border-right: 0.3em solid rgba(255, 255, 255, 0);
  border-left: 0.3em solid rgba(255, 255, 255, 0);
  display: inline-block;
  margin-left: 5px;
  margin-top: 1px;
  border-top: 0.3em solid;
  border-bottom: 0;
}
@media (min-width: 992px) {
  header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list {
    position: absolute;
    left: 0;
    min-width: 170px;
  }
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  backdrop-filter: blur(5px);
  white-space: nowrap;
  max-height: 0px;
  transform: scaleY(0);
  transform-origin: top;
  overflow: hidden;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list li {
  width: 100%;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  display: block;
  background: rgba(255, 255, 255, 0);
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list li .drop-link {
  position: relative;
  display: block;
  padding: 0.6rem 1.5rem;
  z-index: 3;
  color: #2f443b;
  transition: 0.6s;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list li .drop-link:hover {
  background: white;
  color: #E9B949;
  padding-left: 20px;
  transition: 0.6s;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list li .drop-link:hover:after {
  max-width: 100%;
  transition: 0.6s;
}
header nav .middle-wrap ul.main-nav li.has-dropdown .dropdown-list li:last-child {
  border-bottom: none;
}
@media (min-width: 992px) {
  header nav .middle-wrap ul.main-nav li.has-dropdown:hover .dropdown-list {
    max-height: 500px;
    transform: scaleY(1);
    display: block;
  }
}
header nav .middle-wrap ul.main-nav li.has-dropdown.active .dropdown-list {
  max-height: 500px;
  transform: scaleY(1);
  display: block;
}
header nav .right-btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav .right-btn-wrap .navbar-toggler {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-direction: column;
  padding: 7px;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
  width: 40px;
  display: none;
}
header nav .right-btn-wrap .navbar-toggler span {
  height: 3px;
  width: 30px;
  background: white;
  transition: width 0.3s ease;
}
header nav .right-btn-wrap .navbar-toggler:hover span:nth-child(1) {
  animation: shrinkExpand 0.9s ease forwards;
}
header nav .right-btn-wrap .navbar-toggler:hover span:nth-child(2) {
  animation: shrinkExpand 0.9s ease forwards;
  animation-delay: 0.15s;
}
header nav .right-btn-wrap .navbar-toggler:hover span:nth-child(3) {
  animation: shrinkExpand 0.9s ease forwards;
  animation-delay: 0.3s;
}
@media (max-width: 991px) {
  header nav {
    position: relative;
    gap: 5px;
  }
  header nav .menu-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(3px);
    display: none;
  }
  header nav .menu-backdrop.active {
    display: block;
  }
  header nav .middle-wrap .logo-wrap {
    height: auto;
    max-width: 100%;
    display: flex;
  }
  header nav .middle-wrap {
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100vh;
    width: 280px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transform: translateX(-100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease-in-out;
  }
  header nav .middle-wrap.active {
    transform: translateX(0);
  }
  header nav .middle-wrap ul.main-nav {
    width: 100%;
    flex-direction: column;
    align-items: unset;
    gap: 5px;
  }
  header nav .middle-wrap ul.main-nav li {
    flex-grow: 1;
  }
  header nav .middle-wrap ul.main-nav li .nav-link {
    width: 100%;
    color: #2f443b;
  }
  header nav .right-btn-wrap {
    gap: 7px;
  }
  header nav .right-btn-wrap .navbar-toggler {
    display: flex;
  }
}

.register-holder {
  position: relative;
  display: inline-block;
}
.register-holder span {
  font-size: clamp(14px, 1.6vw, 16px);
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  line-height: 1.2;
  background: #fff;
  color: #0F4D4A;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.25s;
}
.register-holder span i {
  margin-right: 4px;
}
.register-holder span b {
  font-weight: inherit;
}
@media (max-width: 1200px) {
  .register-holder span b {
    display: none;
  }
}
.register-holder span:hover {
  background: #f3f3f3;
}
.register-holder .dropdown-list {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 170px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s;
}
.register-holder .dropdown-list li {
  margin: 0;
  padding: 0;
}
.register-holder .dropdown-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s;
}
.register-holder .dropdown-list li a i {
  width: 18px;
  text-align: center;
  color: #0F4D4A;
  font-size: 14px;
}
.register-holder .dropdown-list li a:hover {
  background: #f4f4f4;
  color: #0F4D4A;
}
@media (min-width: 992px) {
  .register-holder:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .register-holder.active .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

/* Profile Dropdown */
.profile-dropdown {
  position: relative;
}
.profile-dropdown .profile-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  outline: 0;
  background: inherit;
}
.profile-dropdown .profile-btn i {
  color: #ffffff;
  font-size: 14px;
}
.profile-dropdown .profile-btn .profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.profile-dropdown .profile-btn .profile-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-dropdown .profile-btn .profile-picture:hover {
  background-color: #f1f5f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.profile-dropdown .profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 320px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 16px;
  z-index: 9999;
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .profile-dropdown .profile-dropdown-menu {
    right: -50px;
  }
}
.profile-dropdown.active .profile-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.profile-dropdown .profile-initials {
  width: 100%;
  height: 100%;
  background: #2f443b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
}

.dropdown-header {
  padding: 10px 15px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}
.dropdown-header .user-name-text {
  display: block;
  color: #2f443b;
  font-weight: 700;
}
.dropdown-header .user-email-text {
  font-size: 12px;
  color: #586880;
}

.profile-dropdown-btn {
  display: block;
  text-align: center;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  width: 100%;
}
.profile-dropdown-btn.primary {
  background-color: #2f443b;
  color: #ffffff;
}
.profile-dropdown-btn.primary:hover {
  background-color: #1e2d26;
  transform: translateY(-2px);
  color: #ffffff;
}
.profile-dropdown-btn.danger {
  border: 2px solid #DC3545;
  color: #DC3545;
  background: transparent;
}
.profile-dropdown-btn.danger:hover {
  background-color: #DC3545;
  transform: translateY(-2px);
  color: #ffffff;
}

.profile-dropdown-link {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-top: 8px;
  text-decoration: none;
  color: #2f443b;
  border-radius: 8px;
  background-color: #f8fafc;
  transition: 0.2s ease;
}
.profile-dropdown-link i {
  margin-right: 10px;
  font-size: 18px;
}
.profile-dropdown-link:hover {
  background-color: #f1f5f9;
  color: #1e2d26;
}

.gallery-field,
.video-field {
  margin-bottom: 15px;
}
.gallery-field .form-label,
.video-field .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2f443b;
}
.gallery-field .file-upload-wrapper,
.video-field .file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.gallery-field .file-upload-wrapper .hidden-input,
.video-field .file-upload-wrapper .hidden-input {
  display: none;
}
.gallery-field .file-upload-wrapper .upload-btn,
.video-field .file-upload-wrapper .upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: white;
  color: #2f443b;
  border: 1px solid #2f443b;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-field .file-upload-wrapper .upload-btn i,
.video-field .file-upload-wrapper .upload-btn i {
  font-size: 16px;
}
.gallery-field .file-upload-wrapper .upload-btn:hover,
.video-field .file-upload-wrapper .upload-btn:hover {
  background-color: #2f443b;
  color: white;
}
.gallery-field .file-upload-wrapper .file-count,
.video-field .file-upload-wrapper .file-count {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.gallery-preview-container,
.video-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.gallery-preview-container .preview-item,
.video-preview-container .preview-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
.gallery-preview-container .preview-item:hover,
.video-preview-container .preview-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.gallery-preview-container .preview-item img,
.gallery-preview-container .preview-item video,
.video-preview-container .preview-item img,
.video-preview-container .preview-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-preview-container .preview-item .remove-btn,
.video-preview-container .preview-item .remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: white;
  color: #dc3545;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
}
.gallery-preview-container .preview-item .remove-btn i,
.video-preview-container .preview-item .remove-btn i {
  font-size: 12px;
}
.gallery-preview-container .preview-item .remove-btn:hover,
.video-preview-container .preview-item .remove-btn:hover {
  background: #dc3545;
  color: white;
  transform: scale(1.1);
}
.gallery-preview-container .preview-item.uploading-video,
.video-preview-container .preview-item.uploading-video {
  width: 200px;
  height: auto;
  min-height: 100px;
  border-radius: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.video-progress-wrap .vp-filename {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-progress-wrap .vp-bar-bg {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
}
.video-progress-wrap .vp-bar-bg .vp-bar {
  height: 100%;
  background: linear-gradient(90deg, #2f443b 0%, rgb(78.2652173913, 113.2347826087, 98.247826087) 100%);
  border-radius: 100px;
  transition: width 0.25s ease;
}
.video-progress-wrap .vp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-progress-wrap .vp-meta .vp-pct {
  font-size: 11px;
  font-weight: 700;
  color: #2f443b;
}
.video-progress-wrap .vp-meta .vp-status {
  font-size: 11px;
  color: #64748b;
}
.video-progress-wrap.done .vp-bar {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.video-progress-wrap.done .vp-pct {
  color: #10b981;
}

.website-note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: clamp(10px, 1.5vw, 15px);
  font-size: 14px;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 5px;
}
.website-note strong {
  color: #d9534f;
}
.website-note .list {
  list-style-type: none;
}
.website-note .list li {
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
}
.website-note .list li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9534f;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}
.website-note p {
  margin: 0;
}

.height-vh {
  min-height: 90vh;
}

.footer {
  background: #2f443b;
  padding: 30px 0;
}
.footer p {
  text-align: center;
  color: white;
}
.footer.bottom-line {
  padding: 10px 0;
}

.dashboard-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: start;
}
.dashboard-row .dashboard-card {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.dashboard-row .dashboard-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.dashboard-row .dashboard-card .card-main-link {
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 25px;
  transition: background-color 0.2s ease;
}
.dashboard-row .dashboard-card .card-main-link:hover {
  background-color: #f9f9f9;
}
.dashboard-row .dashboard-card .card-main-link .card-head {
  display: flex;
  align-items: center;
}
.dashboard-row .dashboard-card .card-main-link .card-head .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(#4a6b5a, rgb(67.8434782609, 98.1565217391, 85.1652173913), #4a6b5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 24px;
}
.dashboard-row .dashboard-card .card-main-link .card-head .card-icon i {
  color: white;
}
.dashboard-row .dashboard-card .card-main-link .card-head .card-title {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  margin: 0;
}
.dashboard-row .dashboard-card .card-main-link .card-content {
  text-align: center;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.dashboard-row .dashboard-card .card-main-link .card-content .card-value {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #2c3e50;
}
.dashboard-row .dashboard-card .card-main-link .card-content {
  /* progress bar */
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50%;
  border-width: 30px;
  border-style: solid;
  -o-border-image: initial;
     border-image: initial;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress > span {
  width: 76px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: white;
  font-size: 33px;
  color: #6b6666;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-left {
  left: 0;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  transform-origin: center left;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-right {
  right: 0;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 30px;
  border-style: solid;
  position: absolute;
  top: 0;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress.theme-color .progress-bar {
  border-color: #4a6b5a;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress.theme-color .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress.yellow .progress-bar {
  border-color: #7c88d8;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progress.yellow .progress-left .progress-bar {
  animation: loading-3 1s linear forwards 1.8s;
}
@keyframes loading-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes loading-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(140deg);
  }
}
.dashboard-row .dashboard-card .card-main-link .card-content .service-content h4 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 10px;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progressbar {
  display: flex;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progressbar .progressbar-details p {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progressbar .red-color {
  width: 14px;
  height: 13px;
  border-radius: 2px;
  margin-top: 3px;
  background: #f34336;
  margin-right: 10px;
}
.dashboard-row .dashboard-card .card-main-link .card-content .progressbar .green-color {
  width: 14px;
  height: 13px;
  border-radius: 2px;
  margin-top: 3px;
  background: #2f443b;
  margin-right: 10px;
}
.dashboard-row .dashboard-card .card-main-link .card-content .card-description {
  color: #7b8a8b;
  font-size: 14px;
}
.dashboard-row .dashboard-card .card-footer {
  padding: 15px 25px;
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
}
.dashboard-row .dashboard-card .card-footer .view-all-link {
  color: #2f443b;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 6px;
  background-color: rgb(224, 239, 240);
}
.dashboard-row .dashboard-card .card-footer .view-all-link i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.2s ease;
}
.dashboard-row .dashboard-card .card-footer .view-all-link:hover {
  color: #4a6b5a;
  background-color: rgb(222, 239, 240);
}
.dashboard-row .dashboard-card .card-footer .view-all-link:hover i {
  transform: translateX(3px);
}

.social-lists {
  list-style: none;
  padding: 0px;
  display: flex;
  gap: 10px;
}
.social-lists li {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2f443b;
  background-color: #fff;
  transition: 0.5s ease-in-out;
}
.social-lists li a {
  color: #2f443b;
  transition: all 0.4s;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.social-lists li a i {
  font-size: 20px;
}
.social-lists li a:hover {
  transition: all 0.4s;
  color: #fff;
}
.social-lists li:hover {
  background-color: #2f443b;
  border: 1px solid #fff;
}

footer {
  background: #2f443b;
  padding: 30px 0;
  position: relative;
  z-index: 10;
}
footer::before {
  content: "";
  background-image: url("/images/icons/footer-left-pattern.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 268px;
  max-width: 50%;
  height: 80%;
  max-height: 70%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
footer::after {
  content: "";
  background-image: url("/images/icons/footer-right-pattern.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 268px;
  height: 80%;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}
footer .footer-heading {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}
footer .footer-column {
  display: table;
  margin: auto;
  gap: 1rem;
}
footer .footer-column .footer-logo {
  margin-bottom: 1rem;
}
footer .footer-column .footer-logo img {
  height: 70px;
  display: block;
}
footer .footer-column .footer-quote {
  margin-bottom: 1rem;
  color: white;
}
footer .footer-column .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 8px;
}
footer .footer-column .list li a {
  position: relative;
  color: white;
  padding-left: 20px;
}
footer .footer-column .list li a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  background: white;
}
footer .footer-column .list.legal-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-column .list.legal-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #2f443b;
  padding: 3px 15px;
  margin: 4px 5px;
  position: relative;
  z-index: 9;
}
footer .footer-column .list.legal-list li a:before {
  display: none;
}
footer .footer-column .list.legal-list li a:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: skewX(-10deg);
  z-index: -1;
  position: absolute;
}
footer .footer-column.payment-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer .footer-column.payment-column .footer-heading {
  margin: 0;
}
footer .footer-column.payment-column .pay-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .footer-column.payment-column .pay-wrap li a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
}
footer .footer-column.payment-column .pay-wrap li a img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  footer .footer-column {
    display: block;
  }
}

.footer-bottom {
  background-color: #181818;
  padding: 10px 0px;
}
.footer-bottom p {
  margin: 0px;
  color: #b7b7b7;
  text-align: center;
}
.footer-bottom p a {
  color: white;
  transition: 0.3s ease-in-out;
}
.footer-bottom p a:hover {
  color: #4a6b5a;
  transition: 0.3s ease-in-out;
}

.mini-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.mini-header .mh-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0;
}
.mini-header .mh-logo-img {
  height: 56px;
  width: auto;
  max-width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}
.mini-header .mh-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mini-header .mh-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}
.mini-header .mh-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.mini-header .mh-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none !important;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.mini-header .mh-chip i {
  font-size: 11px;
}
.mini-header .mh-chip--location {
  background: rgba(108, 117, 125, 0.1);
  color: #555;
}
.mini-header .mh-chip--verified {
  background: rgba(40, 167, 69, 0.1);
  color: #1a7431;
}
.mini-header .mh-chip--verified i {
  color: #28a745;
}
.mini-header .mh-chip--rating {
  background: rgba(255, 193, 7, 0.12);
  color: #7a5800;
}
.mini-header .mh-chip--rating:hover {
  background: rgba(255, 193, 7, 0.24);
  color: #5a4000;
}
.mini-header .mh-chip--rating .mh-stars i {
  color: #ddd;
  font-size: 11px;
}
.mini-header .mh-chip--rating .mh-stars i.mh-star--active {
  color: #ffc107;
}
.mini-header .mh-chip--rating .mh-rating-num {
  font-weight: 700;
  margin-left: 2px;
}

.mini-navbar {
  background: linear-gradient(#f1f5f9, #f1f5f9);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  position: sticky;
  top: 70px;
  width: 100%;
  padding: 5px;
  z-index: 999;
}
.mini-navbar .inner-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mini-navbar .inner-flex ul.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.active {
  background: #4a6b5a;
  border-radius: 5px 10px;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.active .nav-link {
  color: white;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.has-dropdown {
  position: relative;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 999;
  padding: 0;
  display: none;
  overflow: hidden;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.has-dropdown .dropdown-menu li a.nav-link {
  transition: 0.3s ease-in-out;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.has-dropdown .dropdown-menu li a.nav-link:hover {
  background: #2f443b;
  color: white;
  transition: 0.3s ease-in-out;
}
.mini-navbar .inner-flex ul.nav-list .nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
}
.mini-navbar .inner-flex ul.nav-list .nav-item .nav-link {
  color: #2f443b;
  padding: 5px 10px;
  font-weight: 600;
}
.mini-navbar .inner-flex ul.nav-list .nav-item .nav-link.first-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.mini-navbar .inner-flex ul.nav-list .nav-item .nav-link.first-link span {
  position: absolute;
  font-weight: 600;
  font-size: 12px;
  right: 12px;
}
.mini-navbar .inner-flex ul.nav-list .nav-item .nav-link.first-link span::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/images/icons/arrow-left-tail.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(21%) sepia(14%) saturate(4096%) hue-rotate(141deg) brightness(94%) contrast(103%);
}
.mini-navbar .inner-flex ul.nav-list .nav-item .nav-link.first-link img {
  width: 180px;
  position: relative;
  top: 5px;
}
.mini-navbar .toggle-bar {
  padding: 5px;
  border: 1px solid #2f443b;
  display: none;
}
.mini-navbar .toggle-bar span {
  display: block;
  width: 28px;
  height: 3px;
  flex-shrink: 0;
  background: #2f443b;
  margin-bottom: 5px;
}
.mini-navbar .toggle-bar span:last-child {
  margin: 0;
}
@media (max-width: 768px) {
  .mini-navbar .toggle-bar {
    display: block;
    cursor: pointer;
  }
  .mini-navbar .inner-flex {
    top: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    gap: 5px;
    padding: 15px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .mini-navbar .inner-flex .nav-list {
    flex-direction: column;
    width: 100%;
  }
  .mini-navbar .inner-flex.show {
    display: flex;
  }
}

.breadcrumb-section {
  position: relative;
  background-image: url("/images/yogatribex-bread.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.breadcrumb-section.home-banner {
  height: 80vh;
}
.breadcrumb-section.home-banner .hero-heading {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: white;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.breadcrumb-section.home-banner .pattern-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.breadcrumb-section.home-banner .pattern-overlay img {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .breadcrumb-section.home-banner .pattern-overlay img {
    opacity: 0.7;
    transform: scale(0.9);
  }
}
.breadcrumb-section.home-banner .pattern-overlay img:nth-child(1) {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
}
.breadcrumb-section.home-banner .pattern-overlay img:nth-child(2) {
  top: 0;
  right: 0;
  width: auto;
  height: auto;
}
.breadcrumb-section.home-banner .pattern-overlay img:nth-child(3) {
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}
.breadcrumb-section.home-banner .pattern-overlay img:nth-child(4) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.breadcrumb-section.home-banner .banner-wrap .top-title {
  font-size: clamp(12px, 2vw, 18px);
  padding: 3px 10px 3px 40px;
  border: 1.5px solid white;
  border-radius: 30px;
  position: relative;
}
.breadcrumb-section.home-banner .banner-wrap .top-title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/images/icons/flower.svg") no-repeat center center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  position: absolute;
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate {
  display: flex;
  justify-content: end;
  flex-grow: 1;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li {
  background: white;
  padding: 5px;
  border-radius: 50%;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li {
  transform: translateY(0px);
  transition: transform 0.2s ease-in-out;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li.d-none {
  display: none;
}
.breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li:hover {
  transform: translateY(-5px);
  transition: transform 0.2s ease-in-out;
}
.breadcrumb-section::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3882352941), rgba(0, 0, 0, 0.431372549));
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.breadcrumb-section .bread-double {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.breadcrumb-section .banner-wrap {
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: start;
  gap: 20px;
  max-width: 800px;
}
.breadcrumb-section .banner-wrap .bread-heading {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1024px) {
  .breadcrumb-section {
    padding: 60px 0;
  }
  .breadcrumb-section .bread-double {
    flex-direction: column;
  }
  .breadcrumb-section .bread-double .contact-form {
    display: none;
  }
}
@media (max-width: 768px) {
  .breadcrumb-section {
    min-height: -moz-max-content;
    min-height: max-content;
  }
}
@media (max-width: 576px) {
  .breadcrumb-section.home-banner {
    height: auto;
  }
  .breadcrumb-section.home-banner .banner-wrap {
    align-items: center;
  }
  .breadcrumb-section.home-banner .banner-wrap .hero-heading {
    text-align: center;
  }
  .breadcrumb-section.home-banner .banner-wrap .company-certificate .logo-list li img {
    height: auto;
    width: 80px;
    aspect-ratio: 1/1;
  }
}

.bread-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  color: rgba(255, 255, 255, 0.85);
}
.bread-list li {
  margin: 0 6px;
  text-transform: capitalize;
}
.bread-list li:last-child {
  border-bottom: 1px dashed #fff;
}
.bread-list li.active {
  font-weight: 600;
  color: white;
  cursor: default;
}
.bread-list li a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.bread-list li a:hover {
  color: #4a6b5a;
}
.bread-list.direct-list {
  padding: 4px 10px;
  border-bottom: 1px solid #e2e8f0;
}
.bread-list.direct-list li {
  color: #374151;
  font-size: 10px;
}
.bread-list.direct-list li a {
  font-size: 11px;
  color: #2f443b;
  font-weight: 700;
}

.contact-form {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  max-width: 500px;
}
.contact-form .form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}
.contact-form form input,
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.contact-form form input:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
  outline: none;
}
.contact-form form .form-group textarea {
  resize: none;
}
.contact-form .mv_loader_wrapper {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}
.contact-form .mv_loader_wrapper .mv_loader img {
  width: 50px;
  height: 50px;
}
.contact-form.loading .mv_loader_wrapper {
  display: flex;
}

.school-section {
  background: linear-gradient(135deg, #f9fafb, #f1f5f9);
  padding: 4rem 0;
}
.school-section .heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.school-section .heading-wrap .common-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111;
}
.school-section .heading-wrap .sub-title {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

.contact-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #2f443b;
  margin-bottom: 1.5rem;
}
.contact-section .get-Intouch .footer-enquries-link {
  margin-bottom: 1rem;
}
.contact-section .get-Intouch .footer-enquries-link h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2f443b;
}
.contact-section .get-Intouch .footer-enquries-link .logo-wrap {
  margin-bottom: 15px;
  display: block;
}
.contact-section .get-Intouch .footer-enquries-link .logo-wrap img {
  width: 100px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-section .get-Intouch .footer-enquries-link .footer-icons p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2f443b;
}
.contact-section .get-Intouch .footer-enquries-link .footer-icons .flex-social {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.contact-section .get-Intouch .footer-enquries-link .footer-icons .flex-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2f443b;
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.contact-section .get-Intouch .footer-enquries-link .footer-icons .flex-social a:hover {
  background: #4a6b5a;
  transform: translateY(-2px);
}
.contact-section .get-Intouch .quotes-info {
  margin-top: 1.5rem;
}
.contact-section .get-Intouch .quotes-info a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: #2f443b;
  color: #fff;
  margin-right: 0.8rem;
  transition: all 0.3s ease;
}
.contact-section .get-Intouch .quotes-info a i {
  margin-right: 0.5rem;
}
.contact-section .get-Intouch .quotes-info a:hover {
  background: #4a6b5a;
}
.contact-section .contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}
.contact-section .contact-form::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("/images/icons/form-bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-section .contact-form .form-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2f443b;
}
.contact-section .contact-form .form-control,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-form .form-control:focus,
.contact-section .contact-form select:focus,
.contact-section .contact-form textarea:focus {
  border-color: #4a6b5a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 107, 90, 0.25);
}
.contact-section .contact-form textarea {
  resize: none;
}
.contact-section .contact-form .theme-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2f443b, #4a6b5a);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form .theme-btn:hover {
  background: linear-gradient(90deg, #4a6b5a, #2f443b);
  color: white !important;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-section .contact-form {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-section {
    padding: 2.5rem 0;
  }
  .contact-section h3 {
    font-size: 1.5rem;
  }
  .contact-section .get-Intouch .footer-enquries-link h3 {
    font-size: 1.1rem;
  }
  .contact-section .contact-form {
    padding: 1.5rem;
  }
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.footer-links li a i {
  margin-right: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
}
.footer-links li a:hover {
  color: #94a3b8;
}
.footer-links li .d-flex {
  align-items: flex-start;
}
.footer-links li .d-flex .title-icon {
  margin-right: 0.85rem;
  font-size: 1.2rem;
  color: white;
}
.footer-links li .d-flex .enqurycontact-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}
.footer-links li .d-flex .enqurycontact-info p {
  font-size: 0.9rem;
  color: white;
  margin: 0.25rem 0 0;
}

.location-cta {
  position: relative;
  width: 100%;
  max-width: 516px;
  margin: auto;
  background: linear-gradient(#2f443b, #4a6b5a);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  height: 500px;
  border-radius: 10px;
  z-index: 1;
}
.location-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/icons/form-bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.location-cta .inner-wrap {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #fff;
  padding: 30px 15px;
  border-radius: 10px;
}
.location-cta .inner-wrap .sub-heading {
  color: #fff;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.location-cta .inner-wrap .title {
  color: #fff;
  text-align: center;
}
.location-cta .inner-wrap p {
  color: #fff;
  text-align: center;
  font-size: 15px;
  margin: 0;
}
.location-cta .inner-wrap .contact-list {
  background: radial-gradient(rgb(255, 255, 255), rgba(248, 241, 254, 0.6705882353));
  margin: 0;
  display: flex;
  flex-flow: column;
  border-radius: 0;
  gap: 8px;
  padding: 15px;
  width: 100%;
  border-radius: 10px;
}
.location-cta .inner-wrap .contact-list li {
  flex-grow: 1;
  margin: 0;
}
.location-cta .inner-wrap .contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  overflow-wrap: anywhere;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}
.location-cta .inner-wrap .contact-list li a span {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #2f443b;
}
.location-cta .inner-wrap .contact-list li a span img {
  height: 25px;
  width: 25px;
  filter: invert(21%) sepia(14%) saturate(4096%) hue-rotate(141deg) brightness(94%) contrast(103%);
  transition: 0.4s;
}
.location-cta .inner-wrap .contact-list li a:hover {
  color: #504d4d;
  transition: 0.4s ease-in-out;
}
.location-cta .inner-wrap .contact-list li a:hover span {
  background: #2f443b;
  transition: 0.4s;
}
.location-cta .inner-wrap .contact-list li a:hover span img {
  filter: invert(1) brightness(100);
  transition: 0.4s;
}
@media (max-width: 768px) {
  .location-cta .inner-wrap {
    width: auto;
  }
}
@media (max-width: 576px) {
  .location-cta {
    padding: 25px;
  }
}

.wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
}
.wrapper .topbar {
  background: transparent;
  padding: clamp(10px, 1.5vw, 15px);
  display: none;
  background: #ededed;
}
.wrapper .topbar #mvTopbarBtn {
  background: #2f443b;
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: 0.3s ease-in-out;
}
.wrapper .topbar #mvTopbarBtn i {
  font-size: 18px;
}
.wrapper .topbar #mvTopbarBtn:hover {
  background: #4a6b5a;
  transform: translateY(-1px);
}
.wrapper .topbar #mvTopbarBtn:active {
  transform: translateY(0);
}
@media screen and (max-width: 992px) {
  .wrapper .topbar {
    display: block;
  }
}

nav#sidebar {
  min-width: 250px;
  max-width: 250px;
  background-color: #ffffff;
  color: #fff;
  transition: all 0.3s;
  border-right: 1px solid #efefef;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
nav#sidebar #mvCloseBtn {
  background: transparent;
  border: none;
  color: #2f443b;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  display: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: 0.3s ease-in-out;
  z-index: 10;
}
nav#sidebar #mvCloseBtn:hover {
  color: #4a6b5a;
  transform: scale(1.1);
}
nav#sidebar .admin-details {
  padding: 1rem;
}
nav#sidebar .admin-details .d-flex img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0px 0px 1px 1px #aba8a8;
}
nav#sidebar .admin-details .d-flex .fixcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}
nav#sidebar .admin-details .d-flex .fixcenter .clientName {
  color: #2f443b;
  font-size: 15px;
  margin-bottom: 0px;
}
nav#sidebar .admin-details .d-flex .fixcenter .clientName a i {
  font-size: 13px;
  margin-left: 6px;
}
nav#sidebar .admin-details .d-flex .admin-info {
  color: #2f443b;
  margin: 0px;
  font-size: 15px;
  font-weight: 600;
}
nav#sidebar .admin-details .d-flex .rating {
  width: 58px;
  height: 27px;
  text-align: center;
  background: whitesmoke;
  line-height: 27px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  color: black;
}
nav#sidebar .admin-details .d-flex .rating i {
  color: #f1c72e;
}
nav#sidebar .admin-details .web-link {
  color: #4a6b5a !important;
  font-weight: 600;
}
nav#sidebar ul.components {
  padding: 20px 0;
  top: 0px;
  position: sticky;
}
nav#sidebar ul.components li {
  margin-bottom: 6px;
}
nav#sidebar ul.components li a {
  display: flex;
  align-items: center;
  color: #4f4f4f;
  color: #2f443b;
  padding: 10px;
  font-size: 15px;
  border-left: 3px solid transparent;
  transition: 0.3s ease-in-out;
}
nav#sidebar ul.components li a i {
  margin-right: 10px;
}
nav#sidebar ul.components li a span.dashboard-menu {
  font-size: 15px;
  display: block;
}
nav#sidebar ul.components li a:hover {
  color: #ffffff;
  background: #2f443b;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 992px) {
  nav#sidebar {
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 100%;
    display: none;
  }
  nav#sidebar #mvCloseBtn {
    display: block;
  }
}

.profile-form-section {
  padding: 1rem 0;
}
.profile-form-section .profile-forms ul.nav-pills li a,
.profile-form-section .profile-forms ul.nav-pills li .nav-link,
.profile-form-section .profile-forms ul.nav-pills .nav-item a,
.profile-form-section .profile-forms ul.nav-pills .nav-item .nav-link {
  color: #898b8c;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  margin-right: 30px;
  background-color: white;
  transition: 0.3s;
  border-radius: 0px;
}
.profile-form-section .profile-forms ul.nav-pills li a.active,
.profile-form-section .profile-forms ul.nav-pills li .nav-link.active,
.profile-form-section .profile-forms ul.nav-pills .nav-item a.active,
.profile-form-section .profile-forms ul.nav-pills .nav-item .nav-link.active {
  background: white;
  color: #2f443b;
  border-bottom: 2px solid #2f443b;
}
.profile-form-section .profile-forms .profile-form form .formheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 1rem;
  background-color: #f9f9f9;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card.view {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card.file-upload {
  cursor: pointer;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card.mt-0 {
  margin-top: 0 !important;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card:hover {
  border-color: #4a6b5a;
  background-color: #4a6b5a;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card img.profile_preview {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card .image-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #2f443b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  z-index: 10;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card .image-action.add-image:hover {
  transform: scale(1.1);
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card .image-action input[type=file].uploadprofile {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 11;
}
.profile-form-section .profile-forms .profile-form form .profile-upload .card .image-action i {
  color: #ffffff;
  font-size: 1rem;
  pointer-events: none;
}
.profile-form-section .profile-forms .profile-form form div {
  position: relative;
}
.profile-form-section .profile-forms .profile-form form div .custom-input {
  z-index: 1;
  border-radius: 0px;
  height: 44px !important;
  line-height: 44px !important;
  position: relative;
  transition: all 200ms;
  background-color: rgba(42, 133, 228, 0);
}
.profile-form-section .profile-forms .profile-form form div .custom-input:focus {
  box-shadow: 0 0 6px 2px rgba(0, 70, 72, 0.25);
  border-color: #2f443b;
}
.profile-form-section .profile-forms .profile-form form div .custom-input.map-textarea {
  min-height: 100px;
  height: auto !important;
  overflow-y: auto;
  line-height: 1 !important;
}
.profile-form-section .profile-forms .profile-form form div .alert-box {
  background: #e7feff;
  padding: 8px 12px;
  margin-top: 6px;
  border-left: 4px solid #2f443b;
  color: #333;
  display: inline-block;
}
.profile-form-section .profile-forms .profile-form form div label {
  position: absolute;
  top: 7px;
  left: 24px;
  font-size: 15px;
  background-color: white;
  font-size: 90%;
  transform: translate3d(0, -18px, 0);
  opacity: 1;
  padding: 0px 6px;
  z-index: 12;
  transition: all 200ms;
  color: #717171;
  font-weight: 500;
}
.profile-form-section .profile-forms .profile-form form .select2-selection {
  border-radius: 0px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  background-color: #fff;
  border: 1px solid #aaa;
}
.profile-form-section .profile-forms .profile-form form .submitbn .theme-btn {
  padding: 8px 25px;
}
@media (max-width: 576px) {
  .profile-form-section .profile-forms ul.nav-pills {
    gap: 1rem;
  }
  .profile-form-section .profile-forms ul.nav-pills li,
  .profile-form-section .profile-forms ul.nav-pills .nav-item {
    flex-grow: 1;
  }
  .profile-form-section .profile-forms ul.nav-pills li .nav-link,
  .profile-form-section .profile-forms ul.nav-pills .nav-item .nav-link {
    margin: 0;
  }
}

/*select2 search*/
.mv_select .select2.select2-container {
  margin-bottom: 34px !important;
  height: 44px !important;
  width: 100% !important;
}

.mv_select .select2-selection {
  border-radius: 0px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.mv_select .select2-selection__arrow {
  top: unset !important;
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

.enquiries-wrapper {
  display: flex;
  height: calc(100vh - 126px);
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .enquiries-wrapper {
    height: calc(100vh - 146px);
  }
}

body.is-enquiry-page {
  overflow: hidden !important;
  height: 100vh !important;
}
body.is-enquiry-page footer,
body.is-enquiry-page .footer {
  display: none !important;
}
body.is-enquiry-page .height-vh {
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
}

.enquiries-list {
  width: 380px;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  transition: transform 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 991px) {
  .enquiries-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0);
  }
  .enquiries-list.mobile-hidden {
    transform: translateX(-100%);
  }
}
.enquiries-list .list-header {
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.enquiries-list .list-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2f443b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enquiries-list .list-header h3 .count {
  font-size: 0.875rem;
  background: #f1f5f9;
  padding: 2px 10px;
  border-radius: 20px;
  color: #586880;
}
.enquiries-list .list-header .search-box {
  position: relative;
}
.enquiries-list .list-header .search-box input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: 0.3s ease-in-out;
}
.enquiries-list .list-header .search-box input:focus {
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
  outline: none;
}
.enquiries-list .list-header .search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}
.enquiries-list .list-items {
  flex: 1;
  overflow-y: auto;
}
.enquiries-list .list-items::-webkit-scrollbar {
  width: 5px;
}
.enquiries-list .list-items::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.enquiries-list .enquiry-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
}
.enquiries-list .enquiry-item:hover {
  background: #ffffff;
}
.enquiries-list .enquiry-item.active {
  background: #ffffff;
  border-left: 4px solid #2f443b;
  padding-left: 16px;
}
.enquiries-list .enquiry-item.unread {
  background: rgba(47, 68, 59, 0.03);
}
.enquiries-list .enquiry-item.unread .name {
  font-weight: 700;
}
.enquiries-list .enquiry-item.unread::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: #2f443b;
  border-radius: 50%;
}
.enquiries-list .enquiry-item .item-info .name {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 4px;
  display: block;
}
.enquiries-list .enquiry-item .item-info .sub-text {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.enquiries-list .enquiry-item .item-info .sub-text i {
  width: 16px;
  margin-right: 4px;
}
.enquiries-list .enquiry-item .item-info .sub-text.text-primary {
  color: #2f443b !important;
}
.enquiries-list .enquiry-item .item-info .sub-text.text-primary i {
  color: #2f443b;
}
.enquiries-list .enquiry-item .item-info .tags {
  margin-top: 8px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.enquiries-list .enquiry-item .item-info .tags .tag {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #586880;
}
.enquiries-list .enquiry-item .item-info .tags .status-tag {
  background: rgba(6, 214, 160, 0.1);
  color: #06d6a0;
  font-weight: 600;
}

.enquiry-more {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}
.enquiry-more__btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-size: 13px;
}
.enquiry-more__btn:hover {
  background: #f1f5f9;
  color: #374151;
}
.enquiry-more__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  padding: 4px 0;
  z-index: 10;
}
.enquiry-more__menu.show {
  display: block;
}
.enquiry-more__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 14px;
  border: none;
  background: none;
  font-size: 0.85rem;
  color: #374151;
  cursor: pointer;
  transition: background 0.1s;
}
.enquiry-more__item:hover {
  background: #f8fafc;
}
.enquiry-more__item--danger {
  color: #dc3545;
}
.enquiry-more__item--danger:hover {
  background: rgba(220, 53, 69, 0.05);
}

.enquiry-delete-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.enquiry-delete-modal.show {
  display: flex;
}
.enquiry-delete-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}
.enquiry-delete-modal__box {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.enquiry-delete-modal__box h4 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
  color: #0f172a;
}
.enquiry-delete-modal__box p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
}
.enquiry-delete-modal__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
  font-size: 18px;
}
.enquiry-delete-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.enquiry-delete-modal__btn {
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.enquiry-delete-modal__btn--cancel {
  background: #f1f5f9;
  color: #374151;
}
.enquiry-delete-modal__btn--cancel:hover {
  background: #e2e8f0;
}
.enquiry-delete-modal__btn--delete {
  background: #dc3545;
  color: #ffffff;
}
.enquiry-delete-modal__btn--delete:hover {
  background: rgb(197.9088607595, 34.2911392405, 49.9670886076);
}

.chat-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  position: relative;
}
@media (max-width: 991px) {
  .chat-screen {
    width: 100%;
  }
  .chat-screen.mobile-hidden {
    display: none;
  }
}
.chat-screen .chat-header {
  padding: 15px 25px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  z-index: 5;
}
.chat-screen .chat-header .user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.chat-screen .chat-header .user-meta .back-btn {
  display: none;
}
@media (max-width: 991px) {
  .chat-screen .chat-header .user-meta .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #374151;
    border: none;
  }
}
.chat-screen .chat-header .user-meta .info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #2f443b;
}
.chat-screen .chat-header .user-meta .info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}
.chat-screen .chat-header .header-actions {
  display: flex;
  gap: 10px;
}
.chat-screen .chat-header .header-actions .action-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #374151;
}
.chat-screen .chat-header .header-actions .action-btn:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.chat-screen .chat-header .header-actions .action-btn.btn-primary-alt {
  background: rgba(47, 68, 59, 0.1);
  color: #2f443b;
  border-color: transparent;
}
.chat-screen .chat-header .header-actions .action-btn.btn-primary-alt:hover {
  background: #2f443b;
  color: #ffffff;
}
.chat-screen .chat-header .header-actions select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  background: #f8fafc;
  outline: none;
}
.chat-screen .chat-body {
  flex: 1;
  padding: 25px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fbfcfc;
}
.chat-screen .chat-body::-webkit-scrollbar {
  width: 6px;
}
.chat-screen .chat-body::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}
.chat-screen .chat-body .message-row {
  display: flex;
  max-width: 80%;
  flex-direction: column;
}
.chat-screen .chat-body .message-row.sent {
  align-self: flex-end;
  align-items: flex-end;
}
.chat-screen .chat-body .message-row.sent .bubble {
  background: #2f443b;
  color: #ffffff;
  border-radius: 15px 15px 2px 15px;
}
.chat-screen .chat-body .message-row.received {
  align-self: flex-start;
  align-items: flex-start;
}
.chat-screen .chat-body .message-row.received .bubble {
  background: #ffffff;
  color: #1e293b;
  border-radius: 15px 15px 15px 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}
.chat-screen .chat-body .message-row .bubble {
  padding: 12px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}
.chat-screen .chat-body .message-row .time {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 5px;
}
.chat-screen .chat-body .chat-notice {
  text-align: center;
  margin: 10px 0;
}
.chat-screen .chat-body .chat-notice span {
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chat-screen .chat-footer {
  padding: 15px 25px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}
.chat-screen .chat-footer .input-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
.chat-screen .chat-footer .input-wrapper input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  background: #f8fafc;
  font-size: 0.95rem;
  transition: 0.3s ease-in-out;
}
.chat-screen .chat-footer .input-wrapper input:focus {
  background: #ffffff;
  border-color: #2f443b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: none;
}
.chat-screen .chat-footer .input-wrapper .send-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2f443b;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.chat-screen .chat-footer .input-wrapper .send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(47, 68, 59, 0.3);
}
.chat-screen .chat-footer .input-wrapper .send-btn:disabled {
  background: #e2e8f0;
  cursor: not-allowed;
  transform: none;
}
.chat-screen .chat-footer.mv_chat_disabled .input-wrapper {
  opacity: 0.6;
  pointer-events: none;
}

.empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: #f8fafc;
}
.empty-state img {
  width: 150px;
  margin-bottom: 25px;
  opacity: 0.5;
}
.empty-state h5 {
  font-size: 1.25rem;
  color: #586880;
  margin-bottom: 10px;
}
.empty-state p {
  color: #64748b;
  max-width: 300px;
}

/* ================================
   Brand Colors
================================ */
/* ================================
   Gray Scale
================================ */
/* ================================
   Status Colors
================================ */
/* ================================
   UI Colors
================================ */
/* ================================
   Typography
================================ */
/* ================================
   Radius
================================ */
/* ================================
   Shadows
================================ */
/* ================================
   Transitions
================================ */
/* ================================
   SVG / Icon Filters
================================ */
a, span, ul, li, strong, button, p, b {
  font-size: clamp(12px, 1.6vw, 16px);
  list-style-type: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}

/* ============================================================
   Google-style Review Summary
============================================================ */
.rv-summary {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.rv-summary__left {
  text-align: center;
  flex-shrink: 0;
  min-width: 90px;
}
.rv-summary__avg {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}
.rv-summary__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.rv-summary__stars i {
  font-size: 0.8rem;
  color: #e2e8f0;
}
.rv-summary__stars i.active {
  color: #f1c72e;
}
.rv-summary__count {
  font-size: 0.78rem;
  color: #64748b;
}
.rv-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rv-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rv-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  width: 12px;
  text-align: right;
  flex-shrink: 0;
}

.rv-bar-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.rv-bar-fill {
  height: 100%;
  background: #f1c72e;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* ============================================================
   Tabs (Partner reviews)
============================================================ */
.rv-tabs {
  border-bottom: 2px solid #f1f5f9;
}
.rv-tabs .nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: #64748b;
  border: none;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.rv-tabs .nav-link.active {
  color: #2f443b;
  border-bottom-color: #2f443b;
  background: transparent;
}

.rv-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  margin-left: 4px;
}
.active .rv-tab-count {
  background: rgba(47, 68, 59, 0.1);
  color: #2f443b;
}

/* ============================================================
   Sort Filter
============================================================ */
.rv-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rv-filter__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}
.rv-filter__options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.rv-filter__btn {
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
}
.rv-filter__btn:hover {
  border-color: #2f443b;
  color: #2f443b;
}
.rv-filter__btn.active {
  background: #2f443b;
  border-color: #2f443b;
  color: #ffffff;
}

/* ============================================================
   Reply Toggle Button
============================================================ */
.rv-reply-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  margin-left: calc(40px + 0.5rem);
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rv-reply-toggle i {
  font-size: 0.75rem;
}
.rv-reply-toggle:hover {
  color: #2f443b;
  border-color: #2f443b;
  background: rgba(47, 68, 59, 0.04);
}

.rv-reply-cancel {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.rv-reply-cancel:hover {
  color: #111;
}

/* ============================================================
   Reply Form (Partner unreplied reviews)
============================================================ */
.rv-reply-form {
  margin-top: 10px;
  margin-left: calc(40px + 0.5rem);
  padding: 12px 14px;
  background: #f7f8fa;
  border-left: 3px solid #2f443b;
  border-radius: 0 8px 8px 0;
}
.rv-reply-form__head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f443b;
  margin-bottom: 8px;
}
.rv-reply-form__head i {
  font-size: 0.75rem;
}
.rv-reply-form textarea.form-control {
  font-size: 0.88rem;
  border-radius: 6px;
  resize: none;
}
.rv-reply-form__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ============================================================
   Empty State
============================================================ */
.rv-empty {
  padding: 48px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.rv-empty i {
  font-size: 2.5rem;
  color: #e2e8f0;
  display: block;
  margin-bottom: 10px;
}
.rv-empty p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   Review Section - Cards
============================================================ */
.mini-reviews-section .mini-review-container {
  background-color: transparent;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 12px);
}
.mini-reviews-section .mini-review-card {
  padding: clamp(12px, 1.6vw, 18px);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.mini-reviews-section .mini-review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.mini-reviews-section .mini-review-card .mini-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mini-reviews-section .mini-review-card .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f1f5f9;
  flex-shrink: 0;
}
.mini-reviews-section .mini-review-card .reviewer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none !important;
  box-shadow: none !important;
}
.mini-reviews-section .mini-review-card .mini-review-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mini-reviews-section .mini-review-card .mini-review-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 !important;
  color: #111 !important;
  line-height: 1.3;
}
.mini-reviews-section .mini-review-card .mini-review-rating-time {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mini-reviews-section .mini-review-card .star-rating {
  display: flex;
  gap: 2px;
  margin: 0 !important;
}
.mini-reviews-section .mini-review-card .star-rating i {
  font-size: 0.72rem;
  color: #e2e8f0;
}
.mini-reviews-section .mini-review-card .star-rating i.active {
  color: #f1c72e;
}
.mini-reviews-section .mini-review-card .mini-review-date {
  color: #64748b;
  font-size: 0.75rem;
  background: transparent !important;
  padding: 0 !important;
  font-weight: 500;
}
.mini-reviews-section .mini-review-card .mini-review-content {
  padding-left: calc(40px + 0.5rem);
}
.mini-reviews-section .mini-review-card .mini-review-message {
  color: #444;
  line-height: 1.5;
  font-size: 0.88rem;
  margin: 0 !important;
}
.mini-reviews-section .mini-review-reply {
  margin-top: 10px;
  margin-left: calc(40px + 0.5rem);
  padding: 10px 14px;
  background: #f7f8fa;
  border-left: 3px solid #2f443b;
  border-radius: 0 8px 8px 0;
}
.mini-reviews-section .mini-review-reply__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.mini-reviews-section .mini-review-reply__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.mini-reviews-section .mini-review-reply__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mini-reviews-section .mini-review-reply__info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.mini-reviews-section .mini-review-reply__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-reviews-section .mini-review-reply__badge {
  font-size: 0.65rem;
  color: #2f443b;
  background: rgba(47, 68, 59, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.mini-reviews-section .mini-review-reply__badge i {
  font-size: 0.6rem;
  margin-right: 2px;
}
.mini-reviews-section .mini-review-reply__time {
  font-size: 0.72rem;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
}
.mini-reviews-section .mini-review-reply__edit {
  background: none;
  border: none;
  color: #64748b;
  padding: 2px 6px;
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.mini-reviews-section .mini-review-reply__edit:hover {
  color: #2f443b;
}
.mini-reviews-section .mini-review-reply__msg {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.mini-reviews-section {
  /* Stats section */
}
.mini-reviews-section .review-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background-color: #ffffff;
  margin-bottom: clamp(15px, 2.5vw, 25px);
}
.mini-reviews-section .review-stats .stat-item {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: clamp(10px, 2vw, 20px);
  display: flex;
  gap: clamp(10px, 1.3vw, 16px);
  flex: 1;
}
.mini-reviews-section .review-stats .stat-item .review-icon {
  height: clamp(36px, 4vw, 50px);
  width: clamp(36px, 4vw, 50px);
  flex-shrink: 0;
}
.mini-reviews-section .review-stats .stat-item .review-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(21%) sepia(14%) saturate(4096%) hue-rotate(141deg) brightness(94%) contrast(103%);
}
.mini-reviews-section .review-stats .stat-item:nth-child(2) {
  justify-content: center;
}
.mini-reviews-section .review-stats .stat-item:last-child {
  justify-content: end;
}
.mini-reviews-section .review-stats .stat-value {
  font-size: clamp(14px, 2.5vw, 24px);
  font-weight: 800;
  color: #2f443b;
  line-height: 1;
  margin-bottom: 5px;
}
.mini-reviews-section .review-stats .stat-label {
  color: #64748b;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mini-reviews-section {
  /* Input Sidebar */
}
.mini-reviews-section .review-input-box {
  background: #ffffff;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  max-width: 100%;
  border: 1px solid #e2e8f0;
}
.mini-reviews-section .review-input-box .review-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
}
.mini-reviews-section .review-input-box .theme-btn {
  background-color: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}
.mini-reviews-section .review-input-box .theme-btn:hover {
  background-color: #fff !important;
  color: #111 !important;
}
.mini-reviews-section .review-input-box .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
}
.mini-reviews-section .review-input-box .form-control:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   Partner Review Modal
============================================================ */
.partner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.partner-modal-overlay.show {
  display: flex;
}

.partner-modal-container {
  background-color: white;
  width: calc(100% - 15px);
  max-width: 500px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.partner-modal-container .partner-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.partner-modal-container .partner-modal-header .close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
}
.partner-modal-container .partner-modal-header .close-btn:hover {
  color: #111;
}

/* ============================================================
   Mini Website Edit Review Modal
============================================================ */
.mini-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mini-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.mini-modal-container {
  background-color: white;
  width: calc(100% - 15px);
  max-width: 500px;
  padding: clamp(10px, 2vw, 20px);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.mini-modal-overlay.active .mini-modal-container {
  transform: translateY(0);
}

.mini-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(10px, 2vw, 20px);
}
.mini-modal-header .card-heading {
  margin-bottom: 0;
}
.mini-modal-header .mini-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.mini-modal-header .mini-modal-close:hover {
  color: #111;
}

.custom-star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin-bottom: clamp(10px, 2vw, 20px);
}
.custom-star-rating input {
  display: none;
}
.custom-star-rating label {
  cursor: pointer;
  width: clamp(20px, 3vw, 30px);
  height: clamp(20px, 3vw, 30px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ddd'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease, background-image 0.2s ease;
}
.custom-star-rating label:hover {
  transform: scale(1.1);
}
.custom-star-rating input:checked ~ label,
.custom-star-rating label:hover,
.custom-star-rating label:hover ~ label {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.form-group {
  margin-bottom: clamp(10px, 2vw, 20px);
}

.form-control-custom {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: clamp(10px, 1.6vw, 16px);
  background-color: #fcfcfc;
  transition: all 0.2s ease;
  resize: none;
}
.form-control-custom:focus {
  border-color: #111;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
}

.theme-btn-full {
  background-color: #2f443b;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.theme-btn-full:hover {
  background-color: #1e2d26;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 991px) {
  .mini-reviews-section .mini-review-card .mini-review-content {
    padding-left: 0 !important;
  }
  .mini-reviews-section .mini-review-reply {
    margin-left: 0 !important;
  }
  .mini-reviews-section .rv-reply-form {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .rv-summary {
    flex-direction: column;
    text-align: center;
  }
  .rv-summary__bars {
    width: 100%;
  }
  .mini-reviews-section .review-stats {
    flex-direction: column;
    gap: 12px;
  }
  .mini-reviews-section .review-stats .stat-item .review-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    justify-content: space-between;
  }
  .mini-reviews-section .review-stats .stat-item .review-content .stat-value {
    font-size: 30px;
  }
  .mini-reviews-section .review-stats .stat-item .review-content .stat-label {
    font-size: 14px;
    text-transform: capitalize;
  }
}
.sc-color {
  color: #eff1f3;
}

.extracolor {
  color: #f56a6c;
}

.buyleads-info.margin-top {
  margin-top: 2rem;
}
.buyleads-info .buyleads-details {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
}
.buyleads-info .buyleads-details .commonheading {
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.buyleads-info .buyleads-details .buyleads-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.buyleads-info .buyleads-details .buyleads-header ul li a {
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.buyleads-info .buyleads-details .buyleads-header ul li a i {
  color: #4a6b5a;
}
.buyleads-info .buyleads-details .buyleads-header ul li a i.sc-color1 {
  color: #f1c72e;
}
.buyleads-info .buyleads-details .buyleads-header ul li a:hover {
  color: #4a6b5a;
}
.buyleads-info .buyleads-details .buyleads-header .buyleads-txt {
  color: #555;
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  margin-top: 1rem;
}
.buyleads-info .buyleads-details .buyleads-header .buylead-points li {
  margin-bottom: 0.5rem;
}
.buyleads-info .buyleads-details .buyleads-header .buylead-points li .buyleads-content {
  color: #666;
  font-family: "Outfit", sans-serif;
  margin: 0;
}
.buyleads-info .buyleads-details .buyleads-header .buylead-points li .buyleads-content .chatscreen-txt {
  color: #2f443b;
  font-weight: 500;
}
.buyleads-info .buyleads-details .cartservice {
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.buyleads-info .buyleads-details .buyleads-content {
  color: #666;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
}
.buyleads-info .inquerybtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.buyleads-info .inquerybtn .findhelp {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e7f3f3;
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.buyleads-info .inquerybtn .findhelp i {
  margin-right: 0.5rem;
  color: #4a6b5a;
}
.buyleads-info .inquerybtn .findhelp:hover {
  background-color: #4a6b5a;
  color: #ffffff;
}
.buyleads-info .inquerybtn .findhelp:hover i {
  color: #ffffff;
}
.buyleads-info .inquerybtn .formsubmitbtn {
  padding: 0.75rem 1.5rem;
  background-color: #2f443b;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 1rem;
  width: 100%;
}
.buyleads-info .inquerybtn .formsubmitbtn:hover {
  background-color: #4a6b5a;
  transform: translateY(-2px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.buyleads-info .inquerybtn .formsubmitbtn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .buyleads-info .buyleads-details {
    margin-bottom: 1rem;
  }
  .buyleads-info .inquerybtn {
    flex-direction: row;
    justify-content: flex-start;
  }
  .buyleads-info .inquerybtn .findhelp,
  .buyleads-info .inquerybtn .formsubmitbtn {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 576px) {
  .buyleads-info .inquerybtn {
    flex-direction: column;
  }
  .buyleads-info .inquerybtn .findhelp,
  .buyleads-info .inquerybtn .formsubmitbtn {
    width: 100%;
  }
}
#profile-form {
  padding: 3rem 0;
  font-family: "Outfit", sans-serif;
  min-height: 90vh;
}
#profile-form .container {
  max-width: 1200px;
}
#profile-form .profile-forms {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}
#profile-form .profile-forms.bg-white {
  background-color: #ffffff;
}
#profile-form .profile-forms .alert-success {
  margin: 0 10px 10px 10px;
}
#profile-form .profile-forms .nav-tabs {
  display: flex;
  padding: 0;
  background-color: #ffffff;
  margin-bottom: 1rem;
}
#profile-form .profile-forms .nav-tabs.border-bottom {
  border-bottom: 2px solid #e0e0e0 !important;
}
#profile-form .profile-forms .nav-tabs.mt-3 {
  margin-top: 1rem;
}
#profile-form .profile-forms .nav-tabs.section-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#profile-form .profile-forms .nav-tabs .nav-item {
  flex: 1;
}
#profile-form .profile-forms .nav-tabs .nav-item .nav-link {
  width: 100%;
  padding: clamp(10px, 2vw, 20px);
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #666;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 16px);
  text-align: center;
  transition: 0.3s ease-in-out;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
#profile-form .profile-forms .nav-tabs .nav-item .nav-link span {
  font-size: inherit;
}
@media (max-width: 576px) {
  #profile-form .profile-forms .nav-tabs .nav-item .nav-link {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 1rem;
  }
  #profile-form .profile-forms .nav-tabs .nav-item .nav-link span {
    font-size: 10px;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#profile-form .profile-forms .nav-tabs .nav-item .nav-link.active {
  background: #2f443b;
  color: white;
  border-bottom: 3px solid #4a6b5a;
}
#profile-form .profile-forms .nav-tabs .nav-item .nav-link:hover {
  background: #4a6b5a;
  color: white;
  border-bottom: 3px solid #4a6b5a;
}
#profile-form .profile-forms .tab-content {
  padding: 1rem;
}
#profile-form .profile-forms .tab-content.heading-tab {
  background-color: #ffffff;
}
#profile-form .profile-forms .tab-content.pb-5 {
  padding-bottom: 3rem !important;
}
#profile-form .profile-forms .tab-content .tab-pane.fade {
  transition: opacity 0.3s ease;
}
#profile-form .profile-forms .tab-content .tab-pane.show {
  opacity: 1;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .formheading {
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 1rem;
  background-color: #f9f9f9;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card.view {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card.file-upload {
  cursor: pointer;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card.mt-0 {
  margin-top: 0 !important;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card:hover {
  border-color: #4a6b5a;
  background-color: #4a6b5a;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card img.addimage {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card img.addimage.profile_preview {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card .image-action {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #2f443b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  z-index: 10;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card .image-action.add-image:hover {
  background-color: #4a6b5a;
  transform: scale(1.1);
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card .image-action input[type=file].uploadprofile {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 11;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .profile-upload .card .image-action i {
  color: #ffffff;
  font-size: 1rem;
  pointer-events: none;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor {
  width: 100%;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor.ck-rounded-corners {
  border-radius: 8px;
  overflow: hidden;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-bottom: none;
  padding: 0.5rem;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-toolbar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-button,
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-dropdown__button {
  padding: 0.4rem;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-button:hover,
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-dropdown__button:hover {
  background-color: rgb(157.1391304348, 187.3608695652, 174.4086956522);
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-button.ck-on,
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-dropdown__button.ck-on {
  background-color: #4a6b5a;
  color: #ffffff;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-button.ck-on .ck-icon,
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-dropdown__button.ck-on .ck-icon {
  fill: #ffffff;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-toolbar .ck-toolbar__separator {
  width: 1px;
  background-color: #ddd;
  margin: 0 0.25rem;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-editor__main .ck-content {
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid #ddd;
  background-color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-editor__main .ck-content:focus {
  outline: none;
  border-color: #4a6b5a;
  box-shadow: 0 0 0 0.2rem rgba(12, 147, 151, 0.15);
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .ck-editor .ck-editor__main .ck-content.ck-blurred {
  border-color: #ddd;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form label.form-control-placeholder {
  display: block;
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .submitbn {
  display: flex;
  justify-content: flex-start;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .submitbn button.theme-btn {
  padding: 0.75rem 2rem;
  background-color: #2f443b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .submitbn button.theme-btn:hover {
  background-color: #4a6b5a;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .controls form .submitbn button.theme-btn:active {
  transform: translateY(0);
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .mv_business_profile_preview {
  max-width: 150px;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
#profile-form .profile-forms .tab-content .tab-pane .profile-form .note strong {
  color: #f57c00;
  font-weight: 600;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background-color: #f9f9f9;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit:hover {
  border-color: #4a6b5a;
  background-color: #2f443b;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit:hover .mv_portfolio_plus {
  transform: scale(1.2);
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit .mv_portfolio_image_remover {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background-color: #dc3545;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit .mv_portfolio_image_remover:hover {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  transform: scale(1.1);
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit .mv_portfolio_image_remover i {
  font-size: 0.9rem;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit input[type=file].mv_portfolio_file_chooser {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 5;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit input[type=hidden] {
  display: none;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit img[src]:not([src=""]) {
  display: block;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit .mv_portfolio_plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #ccc;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit:has(img[src]:not([src=""])) .mv_portfolio_image_remover {
  display: flex;
}
#profile-form .profile-forms .tab-content .tab-pane .mv_portfolio_edit_wrapper .mv_portfolio_edit:has(img[src]:not([src=""])) .mv_portfolio_plus {
  display: none;
}
#profile-form .profile-forms .tab-content .tab-pane h5 {
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
#profile-form .profile-forms .tab-content .tab-pane h5.mb-4 {
  margin-bottom: 1.5rem;
}
#profile-form .profile-forms .tab-content .tab-pane h5.fw-bold {
  font-weight: 700;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box {
  position: relative;
  background-color: #f9f9f9;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease-in-out;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box:hover {
  border-color: #4a6b5a;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box input[type=file].form-control.d-none {
  display: none !important;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: #666;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .upload-label:hover {
  color: #2f443b;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .upload-label:hover i {
  transform: scale(1.2);
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .upload-label i {
  font-size: 2.5rem;
  color: #4a6b5a;
  transition: 0.3s ease-in-out;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .upload-label span {
  font-size: 1rem;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .preview {
  margin-top: 1rem;
  width: 100%;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .preview.mt-2 {
  margin-top: 1rem;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .preview img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card .upload-box .preview img[src]:not([src=""]) {
  display: block;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card label.form-label {
  display: block;
  margin-top: 1rem;
  color: #2f443b;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
#profile-form .profile-forms .tab-content .tab-pane .banner-card label.form-label.fw-semibold {
  font-weight: 600;
}
#profile-form .profile-forms .tab-content .tab-pane button.theme-btn {
  padding: 0.75rem 2rem;
  background-color: #2f443b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
#profile-form .profile-forms .tab-content .tab-pane button.theme-btn:hover {
  background-color: #4a6b5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#profile-form .profile-forms .tab-content .tab-pane button.theme-btn:active {
  transform: translateY(0);
}
#profile-form .profile-forms .tab-content .tab-pane button.theme-btn i {
  font-size: 0.9rem;
}
#profile-form .profile-forms .tab-content .tab-pane button.theme-btn i.me-2 {
  margin-right: 0.5rem;
}
#profile-form .profile-forms .tab-content .tab-pane .mt-4 {
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  #profile-form {
    padding: 2rem 0;
  }
  #profile-form .profile-forms .nav-pills .nav-item {
    width: 100%;
  }
  #profile-form .profile-forms .nav-pills .nav-item .nav-link {
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    border-left: 3px solid transparent;
  }
  #profile-form .profile-forms .nav-pills .nav-item .nav-link.active {
    border-bottom: 1px solid #e0e0e0;
    border-left: 3px solid #2f443b;
  }
  #profile-form .profile-forms .tab-content {
    padding: 1.5rem;
  }
  #profile-form .profile-forms .tab-content .profile-form .controls form .row .col-lg-3,
  #profile-form .profile-forms .tab-content .profile-form .controls form .row .col-lg-9 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  #profile-form .profile-forms .tab-content .mv_portfolio_edit_wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  #profile-form {
    padding: 1.5rem 0;
  }
  #profile-form .profile-forms {
    border-radius: 0;
  }
  #profile-form .profile-forms .nav-pills .nav-item .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  #profile-form .profile-forms .tab-content {
    padding: 1rem;
  }
  #profile-form .profile-forms .tab-content .mv_portfolio_edit_wrapper {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  #profile-form .profile-forms .tab-content .banner-card .upload-box {
    padding: 1.5rem;
    min-height: 150px;
  }
  #profile-form .profile-forms .tab-content .banner-card .upload-box .upload-label i {
    font-size: 2rem;
  }
  #profile-form .profile-forms .tab-content .banner-card .upload-box .upload-label span {
    font-size: 0.9rem;
  }
  #profile-form .profile-forms .tab-content button.theme-btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
  #profile-form .profile-forms .tab-content .note {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
}
.popup-form {
  background: linear-gradient(135deg, #2f443b 0%, #4a6b5a 100%);
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.popup-form .modal-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2rem;
  position: relative;
}
.popup-form .modal-header .modal-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
.popup-form .modal-header .close {
  color: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.popup-form .modal-header .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: url("/images/icons/cross.svg");
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.popup-form .modal-header .close:hover {
  opacity: 1;
  transform: scale(1.1);
}
.popup-form .modal-body {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}
.popup-form .form-group {
  margin-bottom: 1.5rem;
}
.popup-form .form-group label {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.popup-form .input-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.popup-form .input-field:focus-within {
  border-color: #2f443b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
}
.popup-form .input-field:focus-within .input-field2 span {
  color: #2f443b;
}
.popup-form .input-field2 {
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.popup-form .input-field2 span {
  color: #64748b;
  transition: color 0.3s ease;
}
.popup-form .form-control {
  border: none;
  background: transparent;
  padding: 1rem 0;
  font-size: 1rem;
  color: #0f172a;
  flex: 1;
  outline: none;
  font-weight: 500;
}
.popup-form .form-control:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.popup-form .form-control::-moz-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.popup-form .form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.popup-form .toggle-password {
  padding: 0 1rem;
  color: #64748b;
  transition: color 0.3s ease;
  cursor: pointer;
}
.popup-form .toggle-password:hover {
  color: #2f443b;
}
.popup-form #toggleEye {
  font-size: 1.1rem;
}
.popup-form .submitbtn .btn-primary {
  background: linear-gradient(135deg, #2f443b 0%, #4a6b5a 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 3rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(47, 68, 59, 0.3);
  position: relative;
  overflow: hidden;
}
.popup-form .submitbtn .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 68, 59, 0.4);
}
.popup-form .submitbtn .btn-primary:active {
  transform: translateY(0);
}
.popup-form .submitbtn .btn-primary::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;
}
.popup-form .submitbtn .btn-primary:hover::before {
  left: 100%;
}
.popup-form .text-center a {
  color: #2f443b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.popup-form .text-center a:hover {
  color: rgb(26.1565217391, 37.8434782609, 32.8347826087);
}
.popup-form .text-center a.forget-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #2f443b;
  transition: width 0.3s ease;
}
.popup-form .text-center a.forget-link:hover::after {
  width: 100%;
}
.popup-form .google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.popup-form .google-btn:hover {
  border-color: #2f443b;
  transform: translateY(-2px);
  transition: 0.3s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #2f443b;
}
.popup-form .google-btn__icon {
  display: flex;
  align-items: center;
}
.popup-form .google-btn__label {
  font-size: 0.9rem;
}
.popup-form .mv_response.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid rgb(176.0491803279, 221.9508196721, 187.0655737705);
}
.popup-form .mv_response.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid rgb(240.4042553191, 171.5957446809, 177.8510638298);
}
@media (max-width: 576px) {
  .popup-form .modal-body {
    padding: 1.5rem;
  }
  .popup-form .modal-header {
    padding: 1rem 1.5rem;
  }
  .popup-form .submitbtn .btn-primary {
    padding: 0.875rem 2rem;
    width: 100%;
  }
  .popup-form .google-btn {
    width: 100%;
    justify-content: center;
  }
}

/*ajax loader*/
.mv_loader_wrapper {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5411764706);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.mv_loader_wrapper .mv_loader img {
  height: 70px;
  width: 70px;
}

.mv_loader_show {
  display: flex !important;
}

.mv_response .alert-danger {
  color: #ffffff;
  background-color: #ff6673;
  border-color: #ff6673;
}

.mv_response .alert-success {
  color: #ffffff;
  background-color: #63ce7d;
  border-color: #63ce7d;
}

.mv_response ul {
  margin: 0px;
}

.manage-client-review {
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
}

/* REMOVED DUPLICATE REVIEW STYLES THAT CONFLICTED WITH MINI-WEBSITE REDESIGN */
.mv_empty_data_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  padding: 2rem;
  background-color: #fafafa;
}
.mv_empty_data_wrapper .mv_empty_data_block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mv_empty_data_wrapper .mv_empty_data_block img {
  width: 250px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.mv_empty_data_wrapper .mv_empty_data_block img:hover {
  opacity: 1;
}
.mv_empty_data_wrapper .mv_empty_data_block .mv_empty_data_content span {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

@media (max-width: 768px) {
  .manage-client-review {
    padding: 16px;
  }
  .manage-review-info .manage-review-details {
    padding: 16px;
  }
  .manage-review-info .manage-review-details img {
    width: 50px;
    height: 50px;
  }
  .manage-review-info .manage-review-details .review-name {
    font-size: 16px;
  }
  .manage-review-info .reviewadd .theme-btn {
    width: 100%;
    padding: 12px 20px;
  }
}
.activity-service {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  padding: clamp(10px, 1.5vw, 20px);
}
.activity-service .service-content {
  padding: 1.5rem;
}
.activity-service .service-content.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.activity-service .service-content.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.activity-service .service-content p {
  font-family: "Outfit", sans-serif;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.activity-service .service-content p.font-bold {
  font-weight: 700;
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 0.75rem;
}
.activity-service .service-content p.mb-3 {
  margin-bottom: 1.5rem;
}
.activity-service .service-content form {
  width: 100%;
}
.activity-service .service-content form input[type=hidden] {
  display: none;
}
.activity-service .service-content form .service-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.activity-service .service-content form .service-table .table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}
.activity-service .service-content form .service-table .table thead {
  background-color: #2f443b;
}
.activity-service .service-content form .service-table .table thead tr th {
  padding: 1rem 1.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  border-bottom: 2px solid #4a6b5a;
}
.activity-service .service-content form .service-table .table thead tr th:last-child {
  width: 100px;
  text-align: center;
}
.activity-service .service-content form .service-table .table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: 0.3s ease-in-out;
}
.activity-service .service-content form .service-table .table tbody tr:hover {
  background-color: #e7f3f3;
}
.activity-service .service-content form .service-table .table tbody tr:last-child {
  border-bottom: none;
}
.activity-service .service-content form .service-table .table tbody tr td {
  padding: 1rem 1.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #1e293b;
  vertical-align: middle;
}
.activity-service .service-content form .service-table .table tbody tr td:last-child {
  text-align: center;
}
.activity-service .service-content form .service-table .table tbody tr td .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #94a3b8;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  position: relative;
}
.activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input:checked {
  background-color: #2f443b;
  border-color: #2f443b;
}
.activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input:hover {
  border-color: #4a6b5a;
}
.activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 147, 151, 0.2);
}
.activity-service .service-content form .service-table .actionbtn {
  padding: 1.5rem 1.25rem;
  text-align: right;
  background-color: #f8fafc;
  border-top: 2px solid #e2e8f0;
}
.activity-service .service-content form .service-table .actionbtn button[type=submit] {
  display: inline-block;
  padding: 12px 32px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #2f443b;
  border: 2px solid #2f443b;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.activity-service .service-content form .service-table .actionbtn button[type=submit]:hover {
  background-color: #4a6b5a;
  border-color: #4a6b5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 70, 72, 0.25);
}
.activity-service .service-content form .service-table .actionbtn button[type=submit]:active {
  transform: translateY(0);
}
.activity-service .service-content form .service-table .actionbtn button[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(12, 147, 151, 0.2);
}
.activity-service .service-content form .service-table .actionbtn button[type=submit]:disabled {
  background-color: #94a3b8;
  border-color: #94a3b8;
  cursor: not-allowed;
  transform: none;
}
.activity-service .service-content form .service-table .actionbtn button[type=submit]:disabled:hover {
  box-shadow: none;
}

@media (max-width: 768px) {
  .activity-service .service-content.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .activity-service .service-content.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .activity-service .service-content p {
    font-size: 14px;
  }
  .activity-service .service-content p.font-bold {
    font-size: 16px;
  }
  .activity-service .service-content form .service-table .table thead tr th {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
  .activity-service .service-content form .service-table .table tbody tr td {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
  .activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input {
    width: 18px;
    height: 18px;
  }
  .activity-service .service-content form .service-table .table tbody tr td .form-check .form-check-input:checked::after {
    left: 5px;
    top: 1px;
  }
  .activity-service .service-content form .service-table .actionbtn {
    padding: 1rem;
    text-align: center;
  }
  .activity-service .service-content form .service-table .actionbtn button[type=submit] {
    width: 100%;
    padding: 12px 24px;
  }
}
/* Service Table */
.service-table {
  background: white;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}
.service-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.service-table table thead {
  background-color: rgba(47, 68, 59, 0.05);
  border-bottom: 2px solid #ededed;
}
.service-table table thead tr th {
  padding: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2f443b;
  border: none;
}
.service-table table thead tr th:last-child {
  text-align: center;
}
.service-table table tbody tr {
  border-bottom: 1px solid #ededed;
  transition: 0.3s ease-in-out;
}
.service-table table tbody tr:last-child {
  border-bottom: none;
}
.service-table table tbody tr:hover {
  background-color: rgba(47, 68, 59, 0.02);
}
.service-table table tbody tr td {
  padding: 1rem;
  font-size: 14px;
  color: #2f443b;
  vertical-align: middle;
  border: none;
}
.service-table table tbody tr td i {
  font-size: 16px;
}
.service-table table tbody tr td i.text-warning {
  color: #ffc107;
}
.service-table table tbody tr td i.mr-2 {
  margin-right: 0.5rem;
}
.service-table table tbody tr td.text-center {
  text-align: center;
}
.service-table .enable-btn {
  display: inline-block;
}
.service-table .enable-btn .custom-control.custom-switch {
  position: relative;
  display: inline-block;
  padding-left: 2.25rem;
  min-height: 1.5rem;
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #2f443b;
  border-color: #2f443b;
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: white;
  transform: translateX(1rem);
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(47, 68, 59, 0.25);
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(99.1086956522, 143.3913043478, 124.4130434783);
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: rgb(126.9826086957, 166.5173913043, 149.5739130435);
  border-color: rgb(126.9826086957, 166.5173913043, 149.5739130435);
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  cursor: pointer;
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-label::before {
  position: absolute;
  top: 0;
  left: -2.25rem;
  display: block;
  width: 2rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #dee2e6;
  border: 1px solid #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.service-table .enable-btn .custom-control.custom-switch .custom-control-label::after {
  position: absolute;
  top: 0.125rem;
  left: -2.125rem;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background: white;
  border-radius: 50%;
  transition: transform 0.15s ease-in-out;
}

.leadmanager-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.leadmanager-info:hover {
  transform: translateY(-4px);
  box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 32px;
}

.leadmanager-title {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e7f3f3;
}

.leadmanager-icon {
  width: 50px;
  height: 50px;
  background: #e7f3f3;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}
.leadmanager-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.title-info h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2f443b;
  margin: 0;
  line-height: 1;
}
.title-info p {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  margin: 0.25rem 0 0;
}

.listing-table {
  flex: 1;
  margin-bottom: 1rem;
}
.listing-table .table {
  width: 100%;
  margin-bottom: 0;
}
.listing-table .table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: 0.3s ease-in-out;
}
.listing-table .table tbody tr:last-child {
  border-bottom: none;
}
.listing-table .table tbody tr:hover {
  background: #f8fafc;
}
.listing-table .table tbody tr td {
  padding: 1rem 0.5rem;
  border: none;
  vertical-align: middle;
}

.leadmanager-details .clientname {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.25rem;
}
.leadmanager-details .location {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
}
.leadmanager-details .client-content {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

.timing-info {
  text-align: right;
  min-width: 100px;
}
.timing-info a {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: 0.3s ease-in-out;
}
.timing-info a i {
  font-size: 0.9rem;
}
.timing-info a:hover {
  color: #2f443b;
}

.moreinfo-btn {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.moreinfo-btn a {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f443b;
  text-decoration: none;
  display: inline-block;
  padding: 0.65rem 2rem;
  border: 2px solid #2f443b;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.moreinfo-btn a:hover {
  background: #2f443b;
  color: #ffffff;
}

.listing-table .table tbody:empty::after {
  content: "No data available";
  display: block;
  text-align: center;
  padding: 2rem;
  color: #94a3b8;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
}

.popupform {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 70, 72, 0.15);
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.popupform .modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: linear-gradient(135deg, #2f443b 0%, #4a6b5a 100%);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.popupform .modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.popupform .modal-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
.popupform .modal-header .modal-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.popupform .modal-header .close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  transition: 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.popupform .modal-header .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: url("/images/icons/cross.svg") center center no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(30%) saturate(122%) hue-rotate(232deg) brightness(112%) contrast(100%);
}
.popupform .modal-body {
  padding: 2rem 1.5rem;
  background: #ffffff;
}
.popupform .modal-body .contact-form {
  box-shadow: none;
  border: none;
}
.popupform .modal-body .contact-form .mvShowCustomerForm,
.popupform .modal-body .contact-form .mvGetOrgQuoteForm,
.popupform .modal-body .contact-form .mvGetQuoteForm,
.popupform .modal-body .contact-form .mvModalDirectQuoteForm {
  position: relative;
}
.popupform .modal-body .contact-form .mv_loader_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.popupform .modal-body .contact-form .mv_loader_wrapper.active {
  opacity: 1;
  visibility: visible;
}
.popupform .modal-body .contact-form .mv_loader_wrapper .mv_loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.popupform .modal-body .contact-form .mv_loader_wrapper .mv_loader img {
  width: 60px;
  height: 60px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
.popupform .modal-body .contact-form .mv_get_quote_response {
  margin-bottom: 1.5rem;
}
.popupform .modal-body .contact-form .mv_get_quote_response .alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popupform .modal-body .contact-form .mv_get_quote_response .alert::before {
  content: "\2713";
  font-size: 1.25rem;
  font-weight: bold;
}
.popupform .modal-body .contact-form .mv_get_quote_response .alert.success {
  background: linear-gradient(135deg, #d4edda 0%, rgb(222.7852459016, 241.5147540984, 227.2803278689) 100%);
  color: #155724;
  border: 1px solid rgb(158.0737704918, 214.4262295082, 171.5983606557);
  box-shadow: 0 4px 12px rgba(21, 87, 36, 0.1);
}
.popupform .modal-body .contact-form .mv_get_quote_response .alert.error {
  background: linear-gradient(135deg, #f8d7da 0%, rgb(250.2787234043, 228.0212765957, 230.0446808511) 100%);
  color: #721c24;
  border: 1px solid rgb(236.6063829787, 149.8936170213, 157.7765957447);
  box-shadow: 0 4px 12px rgba(114, 28, 36, 0.1);
}
.popupform .modal-body .contact-form .mv_get_quote_response .alert.error::before {
  content: "\2715";
}
.popupform .modal-body .contact-form .row.mb-3 {
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .popupform .modal-body .contact-form .row {
    flex-direction: column;
  }
}
.popupform .modal-body .contact-form .col {
  flex: 1;
  padding-right: 10px;
  padding-left: 10px;
  min-width: 0;
}
.popupform .modal-body .contact-form .col.pr-2 {
  padding-right: 10px;
}
.popupform .modal-body .contact-form .col.pl-2 {
  padding-left: 10px;
}
@media (max-width: 576px) {
  .popupform .modal-body .contact-form .col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  .popupform .modal-body .contact-form .col:last-child {
    margin-bottom: 0;
  }
}
.popupform .modal-body .contact-form .col label {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #586880;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}
.popupform .modal-body .contact-form .col p {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  word-wrap: break-word;
}
.popupform .modal-body .contact-form .form-control {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
}
.popupform .modal-body .contact-form .form-control::-moz-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.popupform .modal-body .contact-form .form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.popupform .modal-body .contact-form .form-control:hover {
  border-color: #e2e8f0;
  background: #ffffff;
}
.popupform .modal-body .contact-form .form-control:focus {
  border-color: #4a6b5a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(12, 147, 151, 0.1);
  transform: translateY(-1px);
}
.popupform .modal-body .contact-form .form-control.valid {
  border-color: #22c55e;
  background: rgb(212.7857142857, 247.7142857143, 225.6428571429);
}
.popupform .modal-body .contact-form .form-control.valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}
.popupform .modal-body .contact-form .form-control.error, .popupform .modal-body .contact-form .form-control.invalid {
  border-color: #ef4444;
  background: white;
}
.popupform .modal-body .contact-form .form-control.error:focus, .popupform .modal-body .contact-form .form-control.invalid:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.popupform .modal-body .contact-form .form-control[readonly] {
  background: #f1f5f9;
  cursor: not-allowed;
  border-color: #e2e8f0;
}
.popupform .modal-body .contact-form .form-control[readonly]:hover, .popupform .modal-body .contact-form .form-control[readonly]:focus {
  border-color: #e2e8f0;
  box-shadow: none;
  transform: none;
}
.popupform .modal-body .contact-form select.form-control {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.popupform .modal-body .contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.popupform .modal-body .contact-form .form-group.mb-3 {
  margin-bottom: 1.5rem;
}
.popupform .modal-body .contact-form .form-group label {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #586880;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}
.popupform .modal-body .contact-form .form-group #additionalDetails {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  white-space: pre-wrap;
  line-height: 1.6;
  min-height: 60px;
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .popupform .modal-body .contact-form .mv_show_contact_details_actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn:hover::before {
  width: 300px;
  height: 300px;
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn.alt-green {
  background: linear-gradient(135deg, #4a6b5a 0%, #2f443b 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(12, 147, 151, 0.3);
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn.alt-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 147, 151, 0.4);
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn.alt-green:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(12, 147, 151, 0.3);
}
.popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn.alt-green a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  .popupform .modal-body .contact-form .mv_show_contact_details_actions .theme-btn {
    width: 100%;
  }
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, #4a6b5a 0%, #2f443b 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(12, 147, 151, 0.3);
  position: relative;
  overflow: hidden;
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 147, 151, 0.4);
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:hover::before {
  width: 400px;
  height: 400px;
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:active {
  transform: translateY(-1px);
  box-shadow: 0 44px 15px rgba(12, 147, 151, 0.3);
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:disabled {
  background: #e2e8f0;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.popupform .modal-body .contact-form #mvGetOrgQuoteBtn:disabled:hover::before {
  width: 0;
  height: 0;
}
.popupform .modal-body .contact-form input[type=hidden] {
  display: none;
}
@media (max-width: 768px) {
  .popupform {
    max-width: 95%;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .popupform .modal-header {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .popupform .modal-header .modal-title {
    font-size: 1.35rem;
  }
  .popupform .modal-header .close {
    width: 32px;
    height: 32px;
  }
  .popupform .modal-header .close span {
    font-size: 1.25rem;
  }
  .popupform .modal-body {
    padding: 1.75rem 1.25rem;
  }
  .popupform .modal-body .contact-form .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }
  .popupform .modal-body .contact-form #mvGetOrgQuoteBtn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-heading .common-heading {
  font: 700 clamp(1.5rem, 3vw, 2rem) "Outfit", sans-serif;
  color: #0f172a;
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-heading .common-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2f443b;
}

.update-service-modal {
  background: #ffffff;
  width: 100%;
  position: relative;
}
.update-service-modal .loader-overlay {
  position: fixed;
  z-index: 1000000;
  border-radius: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.update-service-modal .loader-overlay.active, .update-service-modal .loader-overlay.mv_loader_show {
  display: flex;
}
.update-service-modal .loader-overlay .loader img {
  width: 60px;
  height: 60px;
}
.update-service-modal .form-response.mv_update_service_response .alert, .update-service-modal .form-response.mv_add_service_response .alert {
  padding: 1rem;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
}
.update-service-modal .form-response.mv_update_service_response .alert.alert-success, .update-service-modal .form-response.mv_add_service_response .alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid rgb(176.0491803279, 221.9508196721, 187.0655737705);
  margin-bottom: 1.5rem;
}
.update-service-modal .form-response.mv_update_service_response .alert.alert-danger, .update-service-modal .form-response.mv_add_service_response .alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid rgb(240.4042553191, 171.5957446809, 177.8510638298);
  margin-bottom: 1.5rem;
}
.update-service-modal .form-response.mv_update_service_response:empty, .update-service-modal .form-response.mv_add_service_response:empty {
  display: none;
}
.update-service-modal .service-body {
  background: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border-radius: 8px;
}
.update-service-modal .service-body input[type=hidden] {
  display: none;
}
.update-service-modal .service-body input[type=hidden]#serviceId, .update-service-modal .service-body input[type=hidden]#isImageChanged {
  display: none;
}
.update-service-modal .service-body .form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(12px, 1.6vw, 16px);
}
@media (max-width: 768px) {
  .update-service-modal .service-body .form-grid {
    grid-template-columns: 1fr;
  }
}
.update-service-modal .service-body .form-section .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  display: block;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview {
  position: relative;
  width: 100%;
  max-height: 200px;
  max-width: 768px;
  aspect-ratio: 1;
  border-radius: 12px;
  margin: auto;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview img.updateImage {
  transition: 0.3s ease-in-out;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f443b;
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn.mv_update_image i {
  color: #ffffff;
  font-size: 1rem;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn.mv_update_image i.fas, .update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn.mv_update_image i.fa-pencil-alt {
  color: #ffffff;
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn:hover {
  background: #4a6b5a;
  transform: scale(1.1);
}
.update-service-modal .service-body .form-section.image-section .image-upload .image-preview .edit-image-btn:active {
  transform: scale(0.95);
}
.update-service-modal .service-body .form-section.image-section .image-upload input[type=hidden] {
  display: none;
}
.update-service-modal .service-body .form-section.image-section .image-upload input[type=hidden]#isImageChanged {
  display: none;
}
.update-service-modal .service-body .form-section.image-section .image-upload input[type=file] {
  display: none;
}
.update-service-modal .service-body .form-section.image-section .image-upload input[type=file].image-picker, .update-service-modal .service-body .form-section.image-section .image-upload input[type=file].mv_update_service_image_picker {
  display: none;
}
@media (max-width: 768px) {
  .update-service-modal .service-body .form-section.image-section .image-upload .image-preview {
    max-height: clamp(200px, 40vw, 320px);
  }
}
.update-service-modal .service-body .form-section.details-section .form-group {
  margin-bottom: 1rem;
}
.update-service-modal .service-body .form-section.details-section .form-group:last-of-type {
  margin-bottom: 0;
}
.update-service-modal .service-body .form-section.details-section .form-group input[type=text],
.update-service-modal .service-body .form-section.details-section .form-group input[type=number],
.update-service-modal .service-body .form-section.details-section .form-group input[type=date],
.update-service-modal .service-body .form-section.details-section .form-group input[type=url],
.update-service-modal .service-body .form-section.details-section .form-group input[type=file],
.update-service-modal .service-body .form-section.details-section .form-group select,
.update-service-modal .service-body .form-section.details-section .form-group textarea {
  width: 100%;
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 1.6vw, 16px);
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #0f172a;
  transition: 0.3s ease-in-out;
  background: #ffffff;
}
.update-service-modal .service-body .form-section.details-section .form-group input[type=text]:focus,
.update-service-modal .service-body .form-section.details-section .form-group input[type=number]:focus,
.update-service-modal .service-body .form-section.details-section .form-group input[type=date]:focus,
.update-service-modal .service-body .form-section.details-section .form-group input[type=url]:focus,
.update-service-modal .service-body .form-section.details-section .form-group input[type=file]:focus,
.update-service-modal .service-body .form-section.details-section .form-group select:focus,
.update-service-modal .service-body .form-section.details-section .form-group textarea:focus {
  outline: none;
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
}
.update-service-modal .service-body .form-section.details-section .form-group input[type=text]::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group input[type=number]::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group input[type=date]::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group input[type=url]::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group input[type=file]::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group select::-moz-placeholder, .update-service-modal .service-body .form-section.details-section .form-group textarea::-moz-placeholder {
  color: #94a3b8;
}
.update-service-modal .service-body .form-section.details-section .form-group input[type=text]::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group input[type=number]::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group input[type=date]::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group input[type=url]::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group input[type=file]::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group select::placeholder,
.update-service-modal .service-body .form-section.details-section .form-group textarea::placeholder {
  color: #94a3b8;
}
.update-service-modal .service-body .form-section.details-section .form-group input[type=text]:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group input[type=number]:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group input[type=date]:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group input[type=url]:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group input[type=file]:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group select:required:invalid,
.update-service-modal .service-body .form-section.details-section .form-group textarea:required:invalid {
  box-shadow: none;
}
.update-service-modal .service-body .form-section.details-section .form-group textarea {
  min-height: 155px;
  resize: vertical;
  line-height: 1.6;
}
.update-service-modal .service-body .form-section.details-section .form-group textarea#updateEditor {
  font-family: "Outfit", sans-serif;
}
.update-service-modal .service-body .form-section.details-section .form-group.single-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: flex-start;
}
.update-service-modal .service-body .form-section.details-section .form-group.double-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: flex-start;
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.double-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.double-column .input-icon:first-child {
    margin-bottom: 0;
  }
}
.update-service-modal .service-body .form-section.details-section .form-group.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: flex-start;
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.two-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.two-column .input-icon:first-child {
    margin-bottom: 0;
  }
}
.update-service-modal .service-body .form-section.details-section .form-group.four-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(12px, 1.6vw, 16px);
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .update-service-modal .service-body .form-section.details-section .form-group.four-column {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.four-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .update-service-modal .service-body .form-section.details-section .form-group.four-column .input-icon:first-child {
    margin-bottom: 0;
  }
}
.update-service-modal .service-body .form-section.details-section .form-group.five-column {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 16px);
  align-items: flex-start;
  /* Large tablets / small laptops */
}
@media (max-width: 1400px) {
  .update-service-modal .service-body .form-section.details-section .form-group.five-column {
    grid-template-columns: repeat(3, 1fr);
  }
}
.update-service-modal .service-body .form-section.details-section .form-group.five-column {
  /* Tablets */
}
@media (max-width: 992px) {
  .update-service-modal .service-body .form-section.details-section .form-group.five-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
.update-service-modal .service-body .form-section.details-section .form-group.five-column {
  /* Mobile */
}
@media (max-width: 576px) {
  .update-service-modal .service-body .form-section.details-section .form-group.five-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .update-service-modal .service-body .form-section.details-section .form-group.five-column .input-icon:first-child {
    margin-bottom: 0;
  }
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon {
  position: relative;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon i {
  position: absolute;
  left: 12px;
  top: clamp(13px, 1.8vw, 18px);
  color: #94a3b8;
  font-size: clamp(14px, 1.6vw, 16px);
  pointer-events: none;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon i.fas.fa-dollar-sign, .update-service-modal .service-body .form-section.details-section .form-group .input-icon i.fas.fa-calendar-alt, .update-service-modal .service-body .form-section.details-section .form-group .input-icon i.fas.fa-list {
  color: #94a3b8;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon input,
.update-service-modal .service-body .form-section.details-section .form-group .input-icon select {
  padding-left: 36px;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon select option {
  padding: 0.5rem;
  background: #ffffff;
  color: #0f172a;
}
.update-service-modal .service-body .form-section.details-section .form-group .input-icon select option:first-child {
  color: #94a3b8;
}
.update-service-modal .service-body .form-section.details-section .form-group .error-message,
.update-service-modal .service-body .form-section.details-section .form-group label.error {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: #DC3545;
  margin-top: 0.5rem;
  display: block;
}
.update-service-modal .service-body .form-section.details-section .form-group .error-message#description-error,
.update-service-modal .service-body .form-section.details-section .form-group label.error#description-error {
  margin-top: 0.5rem;
}
.update-service-modal .service-body .form-section.details-section .form-group .error-message.d-none,
.update-service-modal .service-body .form-section.details-section .form-group label.error.d-none {
  display: none;
}
.update-service-modal .service-body .form-section .form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
}
.update-service-modal .service-body label.error {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: #DC3545;
  margin-top: 0.5rem;
  display: block;
}
.update-service-modal .service-body .pricing-section {
  background: #f8f9fa;
  padding: clamp(12px, 1.5vw, 20px);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.update-service-modal .service-body .pricing-section .sub-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}
.update-service-modal .service-body .pricing-section .add-price-btn {
  background: #2f443b;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.update-service-modal .service-body .pricing-section .add-price-btn:hover {
  background: rgb(57.4217391304, 83.0782608696, 72.0826086957);
  transform: translateY(-1px);
}
.update-service-modal .service-body .pricing-section .remove-price-btn {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 2px;
  transition: all 0.2s;
}
.update-service-modal .service-body .pricing-section .remove-price-btn:hover {
  background: #fecaca;
  color: #b91c1c;
}
.update-service-modal .service-body .pricing-section .pricing-container.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 15px);
}
@media (max-width: 1400px) {
  .update-service-modal .service-body .pricing-section .pricing-container.grid-2 {
    grid-template-columns: 1fr;
  }
}
.update-service-modal .service-body .pricing-section .pricing-row {
  animation: slideDown 0.3s ease-out;
  background: #ffffff;
  padding: clamp(10px, 1.5vw, 15px);
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(10px, 1.6vw, 16px);
  width: 100%;
  position: relative;
}
.update-service-modal .service-body .pricing-section .pricing-row .field.flex-grow-1 {
  flex: 1;
}
.update-service-modal .service-body .pricing-section .pricing-row .field.flex-grow-0 {
  flex: 0 0 auto;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  display: block;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon {
  position: relative;
  width: 100%;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon i {
  position: absolute;
  left: clamp(4px, 1vw, 12px);
  top: clamp(13px, 1.8vw, 16px);
  color: #94a3b8;
  font-size: 14px;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon input {
  width: 100%;
  padding: 10px 12px 12px clamp(22px, 3.6vw, 36px);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  color: #1e293b;
  transition: all 0.2s;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon input:focus {
  outline: none;
  border-color: #2f443b;
  box-shadow: 0 0 0 3px rgba(0, 70, 72, 0.1);
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon input::-moz-placeholder {
  color: #94a3b8;
}
.update-service-modal .service-body .pricing-section .pricing-row .field .input-icon input::placeholder {
  color: #94a3b8;
}
.update-service-modal .service-body .pricing-section .pricing-row .action-field {
  display: flex;
  justify-content: center;
  position: absolute;
  right: clamp(5px, 1vw, 10px);
  top: clamp(5px, 1vw, 10px);
}

.social-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1200px) {
  .social-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.all-service-section .manageproducts-info {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 2rem;
}
.all-service-section .manageproducts-info .manageproducts-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.all-service-section .manageproducts-info .manageproducts-table::-webkit-scrollbar {
  height: 8px;
}
.all-service-section .manageproducts-info .manageproducts-table::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}
.all-service-section .manageproducts-info .manageproducts-table::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.all-service-section .manageproducts-info .manageproducts-table table.table {
  width: 100% !important;
  min-width: 800px;
  margin: 0;
  border-collapse: collapse;
  background: #ffffff;
}
@media (max-width: 991px) {
  .all-service-section .manageproducts-info .manageproducts-table table.table {
    min-width: 700px;
  }
}
@media (max-width: 767px) {
  .all-service-section .manageproducts-info .manageproducts-table table.table {
    min-width: 600px;
  }
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th {
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.25rem, 1vw, 0.75rem);
  background: #2f443b;
  color: #ffffff !important;
  font: 600 clamp(0.75rem, 1.5vw, 0.95rem) "Outfit", sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th:hover {
  background: rgb(57.4217391304, 83.0782608696, 72.0826086957);
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_asc, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_desc {
  position: relative;
  padding-right: 1.5rem;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting::after, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_asc::after, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_desc::after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #ffffff !important;
  display: flex;
  align-items: center;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting::before, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_asc::before, .all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_desc::before {
  display: none;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting::after {
  content: "\21C5";
  opacity: 0.5;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_asc {
  background: #4a6b5a;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_asc::after {
  content: "\25B2";
  opacity: 1;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_desc {
  background: #4a6b5a;
}
.all-service-section .manageproducts-info .manageproducts-table table.table thead th.sorting_desc::after {
  content: "\25BC";
  opacity: 1;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: 0.3s ease-in-out;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody tr:hover {
  background: #e7f3f3;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody tr.even {
  background: rgb(248.14, 250.1, 252.06);
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td {
  padding: clamp(0.5rem, 1.5vw, 0.95rem) clamp(0.25rem, 1vw, 0.75rem);
  color: #374151;
  vertical-align: middle;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td a {
  font: 400 clamp(0.75rem, 1.5vw, 0.9rem) "Outfit", sans-serif;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td.sorting_1 {
  font-weight: 500;
  color: #2f443b;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td.dataTables_empty {
  text-align: center;
  color: #64748b;
  font-style: italic;
  padding: 2rem;
  background: rgb(251.71, 252.65, 253.59);
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(50px, 10vw, 80px);
  height: clamp(50px, 10vw, 80px);
  margin: 0 auto;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .product-image img {
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e7f3f3;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
  transition: 0.3s ease-in-out;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .product-image img:hover {
  transform: scale(1.15);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
  border-color: #4a6b5a;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .product-price2 {
  font: 600 clamp(0.9rem, 1.5vw, 1.05rem) "Outfit", sans-serif;
  color: #2f443b;
  margin: 0;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn {
    flex-direction: column;
    gap: 0.3rem;
  }
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button {
  padding: 0.5rem 1rem;
  font: 500 clamp(0.75rem, 1.5vw, 0.85rem) "Outfit", sans-serif;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a,
  .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button {
    width: 100%;
    text-align: center;
  }
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.editServiceBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.editTeacherBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.option-color1,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.editServiceBtn,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.editTeacherBtn,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.option-color1 {
  background: #4a6b5a;
  color: #ffffff;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.editServiceBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.editTeacherBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.option-color1:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.editServiceBtn:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.editTeacherBtn:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.option-color1:hover {
  background: rgb(53.1491712707, 76.8508287293, 64.6408839779);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
  color: #ffffff;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.deleteServiceBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.deleteTeacherBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.option-color3,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.deleteServiceBtn,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.deleteTeacherBtn,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.option-color3 {
  background: #dc3545;
  color: #ffffff;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.deleteServiceBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.deleteTeacherBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn a.option-color3:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.deleteServiceBtn:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.deleteTeacherBtn:hover,
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .actionbtn button.option-color3:hover {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
  color: #ffffff;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a:hover {
  transform: translateY(-1px);
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.editArticleBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.editBtn {
  background-color: #f5f5f5;
  color: #06d6a0;
  border: 1px solid #e0e0e0;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.editArticleBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.editBtn:hover {
  background-color: #e8e8e8;
  color: #555;
  border-color: #d0d0d0;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.deleteArticleBtn, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.deleteBtn {
  background-color: #f9f9f9;
  color: #DC3545;
  border: 1px solid #e8e8e8;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.deleteArticleBtn:hover, .all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a.deleteBtn:hover {
  background-color: #f0f0f0;
  color: #777;
  border-color: #ddd;
}
.all-service-section .manageproducts-info .manageproducts-table table.table tbody td .multi-btn-wrap a i {
  font-size: 14px;
}
.all-service-section .manageproducts-info .dataTables_wrapper {
  font-family: "Outfit", sans-serif;
}
.all-service-section .manageproducts-info .dataTables_wrapper .row {
  margin-bottom: 1.5rem;
}
.all-service-section .manageproducts-info .dataTables_wrapper .row:last-child {
  margin-top: 1.5rem;
}
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  margin: 0;
}
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label select.form-control,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label input.form-control,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label select.form-control,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label input.form-control {
  padding: 0.375rem 0.75rem;
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  transition: 0.3s ease-in-out;
}
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label select.form-control:focus,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label input.form-control:focus,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label select.form-control:focus,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label input.form-control:focus {
  border-color: #4a6b5a;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(47, 68, 59, 0.15);
}
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_length label select.form-control,
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label select.form-control {
  color: #2f443b;
  cursor: pointer;
}
.all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label {
  justify-content: end;
}
@media (max-width: 767px) {
  .all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter {
    margin-top: 1rem;
  }
  .all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label {
    width: 100%;
  }
  .all-service-section .manageproducts-info .dataTables_wrapper .dataTables_filter label input {
    flex: 1;
  }
}
.all-service-section .manageproducts-info .status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  transition: 0.3s ease-in-out;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.all-service-section .manageproducts-info .status-badge.active {
  background-color: #d1fadf !important;
  color: #027a48 !important;
  border-color: #abefc6;
}
.all-service-section .manageproducts-info .status-badge.active:hover {
  background-color: #abefc6 !important;
}
.all-service-section .manageproducts-info .status-badge.booked {
  background-color: #fffaeb !important;
  color: #b54708 !important;
  border-color: #fedf89;
}
.all-service-section .manageproducts-info .status-badge.booked:hover {
  background-color: #fec84b !important;
  color: #93370d !important;
}
.all-service-section .manageproducts-info .status-badge.completed {
  background-color: #eff8ff !important;
  color: #175cd3 !important;
  border-color: #b2ddff;
}
.all-service-section .manageproducts-info .status-badge.completed:hover {
  background-color: #b2ddff !important;
}
.all-service-section .manageproducts-info .status-badge.not-interested {
  background-color: #fef3f2 !important;
  color: #b42318 !important;
  border-color: #fee4e2;
}
.all-service-section .manageproducts-info .status-badge.not-interested:hover {
  background-color: #fee4e2 !important;
}
.all-service-section .manageproducts-info .status-badge.inactive {
  background-color: #f9fafb !important;
  color: #344054 !important;
  border-color: #eaecf0;
}
.all-service-section .manageproducts-info .status-badge.inactive:hover {
  background-color: #f2f4f7 !important;
}

.dataTables_info {
  color: #586880;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  padding-top: 0.5rem;
}
@media (max-width: 767px) {
  .dataTables_info {
    text-align: center;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .dataTables_paginate.paging_simple_numbers {
    text-align: center;
  }
}
.dataTables_paginate.paging_simple_numbers .pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .dataTables_paginate.paging_simple_numbers .pagination {
    justify-content: center;
  }
}
.dataTables_paginate.paging_simple_numbers .pagination .page-item .page-link {
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.625rem, 1.5vw, 0.85rem);
  min-width: clamp(35px, 5vw, 40px);
  font: 400 clamp(0.8rem, 1.5vw, 0.9rem) "Outfit", sans-serif;
  color: #2f443b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.dataTables_paginate.paging_simple_numbers .pagination .page-item .page-link:hover {
  background: #e7f3f3;
  border-color: #4a6b5a;
}
.dataTables_paginate.paging_simple_numbers .pagination .page-item.active .page-link {
  background: #2f443b;
  border-color: #2f443b;
  color: #ffffff;
  font-weight: 600;
}
.dataTables_paginate.paging_simple_numbers .pagination .page-item.disabled .page-link {
  color: #64748b;
  pointer-events: none;
  opacity: 0.5;
}

.heading-bottom {
  width: 450px;
  max-width: 65%;
  margin: 0 auto;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.heading-bottom .separator {
  height: 1px;
  width: 100%;
  background: #2f443b;
  position: relative;
  top: 5px;
}
.heading-bottom .separator::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  background: linear-gradient(90deg, #2f443b 50%, transparent 50%), linear-gradient(90deg, #2f443b 50%, transparent 50%), linear-gradient(0deg, #2f443b 50%, transparent 50%), linear-gradient(0deg, #2f443b 50%, transparent 50%);
  background-size: 8px 1px, 0px 1px, 0px 1px, 0px 1px;
  background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0px;
  height: 1.1px;
  width: 100%;
  animation: dash 50s linear infinite;
}
.heading-bottom .separator {
  opacity: 0.6;
}
.heading-bottom .icon-wrap {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url("/images/icons/flower.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(21%) sepia(14%) saturate(4096%) hue-rotate(141deg) brightness(94%) contrast(103%);
  opacity: 0.7;
}
@media (max-width: 576px) {
  .heading-bottom {
    width: 85%;
    max-width: 350px;
  }
  .heading-bottom .icon-wrap {
    width: 36px;
    height: 36px;
  }
}

.iframe-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.iframe-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.mv_notification {
  box-shadow: 0 1px 15px 1px rgba(208, 201, 243, 0.5);
  background: #f9f9f9;
  padding: 10px 15px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mv_notification .small-heading {
  font-weight: 600;
  color: #2f443b;
}
.mv_notification .small-heading .approve-status {
  color: #047857;
  background-color: #d1fae5;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}
.mv_notification .formsubmitbtn {
  padding: 8px 15px;
  background: #4a6b5a;
  color: #ffffff;
  border-radius: 5px;
}
.mv_notification .formsubmitbtn:hover {
  background: #2f443b;
}

.review-input-box {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}
.review-input-box .review-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}
.review-input-box form {
  display: flex;
  flex-direction: column;
}
.review-input-box .star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
}
.review-input-box .star-rating input {
  display: none;
}
.review-input-box .star-rating label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s ease;
}
.review-input-box .star-rating label::before {
  content: "\2605";
}
.review-input-box .star-rating label:hover,
.review-input-box .star-rating label:hover ~ label {
  color: #ffb400;
}
.review-input-box .star-rating input:checked ~ label {
  color: #ffb400;
}
.review-input-box .form-group {
  margin-bottom: 10px;
}
.review-input-box .form-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  min-height: 100px;
  transition: all 0.2s ease;
}
.review-input-box .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(47, 68, 59, 0.1);
}

.certificate-section .section-heading {
  margin-bottom: 2rem;
  text-align: center;
}
.certificate-section .card-wrap {
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  margin: 2rem auto;
  padding: clamp(1rem, 2vw, 2rem) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.certificate-section .card-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.certificate-section .card-wrap form {
  display: flex;
  flex-direction: column;
}
.certificate-section .card-wrap form .form-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  display: block;
}
.certificate-section .card-wrap form .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  color: #2d3748;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.certificate-section .card-wrap form .form-control:focus {
  border-color: #4299e1;
  box-shadow: 0 0 0 4px rgba(66, 153, 225, 0.15);
  outline: none;
}
.certificate-section .card-wrap form .form-control[type=file] {
  cursor: pointer;
  background: #f8fafc;
}
.certificate-section .card-wrap form .form-control[type=file]::file-selector-button {
  background: #edf2f7;
  border: 1px solid #e2e8f0;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #2d3748;
}
.certificate-section .card-wrap form .form-control[type=file]::file-selector-button:hover {
  background: #e2e8f0;
}
.certificate-section .card-wrap form .btn-wrap {
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
.certificate-section .card-wrap form .btn-wrap .theme-btn {
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}
.certificate-section .table-wrap {
  margin-top: 2rem;
}
.certificate-section .table-wrap .sub-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}
.certificate-section .table-wrap .table {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
}
.certificate-section .table-wrap .table thead {
  background: #f7fafc;
}
.certificate-section .table-wrap .table thead th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #4a5568;
  border-bottom: 2px solid #e2e8f0;
  font-size: 0.85rem;
  text-align: center;
}
.certificate-section .table-wrap .table thead th:first-child,
.certificate-section .table-wrap .table thead th:nth-child(2),
.certificate-section .table-wrap .table thead th:nth-child(3) {
  text-align: left;
}
.certificate-section .table-wrap .table tbody tr {
  border-bottom: 1px solid #edf2f7;
}
.certificate-section .table-wrap .table tbody tr:hover {
  background: #f8fafc;
}
.certificate-section .table-wrap .table tbody tr td {
  padding: 0.75rem 1rem;
  color: #4a5568;
  font-size: 0.85rem;
  vertical-align: middle;
  text-align: center;
}
.certificate-section .table-wrap .table tbody tr td img {
  width: 60px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 2px;
  border: 1px solid #ddd;
}
.certificate-section .table-wrap .table tbody tr td a {
  color: #2f443b;
  text-decoration: none;
}
.certificate-section .table-wrap .table tbody tr td a:hover {
  text-decoration: underline;
}
.certificate-section .table-wrap .table tbody tr td:last-child {
  width: 1%;
}
.certificate-section .table-wrap .table tbody tr td:first-child, .certificate-section .table-wrap .table tbody tr td:nth-child(2) {
  text-align: left;
}
.certificate-section .table-wrap .badge {
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.certificate-section .table-wrap .badge.badge-success, .certificate-section .table-wrap .badge.bg-success {
  background-color: rgb(146.5409090909, 251.9590909091, 224.5909090909) !important;
  color: rgb(3.9136363636, 139.5863636364, 104.3636363636) !important;
  border: 1px solid rgb(96.9318181818, 250.5681818182, 210.6818181818);
}
.certificate-section .table-wrap .badge.badge-primary, .certificate-section .table-wrap .badge.bg-primary {
  background-color: rgb(187.2956521739, 208.2043478261, 199.2434782609) !important;
  color: #2f443b !important;
  border: 1px solid rgb(157.1391304348, 187.3608695652, 174.4086956522);
}
.certificate-section .table-wrap .badge.badge-info, .certificate-section .table-wrap .badge.bg-info {
  background-color: rgb(196.179558011, 214.320441989, 204.9751381215) !important;
  color: rgb(53.1491712707, 76.8508287293, 64.6408839779) !important;
  border: 1px solid rgb(166.0303867403, 193.4696132597, 179.3342541436);
}
.certificate-section .table-wrap .badge.badge-warning, .certificate-section .table-wrap .badge.bg-warning {
  background-color: #fffaf0 !important;
  color: #dd6b20 !important;
  border: 1px solid #feebc8;
}
.certificate-section .table-wrap .badge.badge-danger, .certificate-section .table-wrap .badge.bg-danger {
  background-color: rgb(253.8924050633, 248.6075949367, 249.1139240506) !important;
  color: #DC3545 !important;
  border: 1px solid rgb(246.3607594937, 205.1392405063, 209.0886075949);
}
.certificate-section .table-wrap .badge.badge-secondary, .certificate-section .table-wrap .badge.bg-secondary {
  background-color: #f1f5f9 !important;
  color: #586880 !important;
  border: 1px solid #e2e8f0;
}

.add-teacher-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  width: 100%;
}
.add-teacher-section .form-grid .image-upload .image-preview {
  position: relative;
  width: 100%;
  max-height: 220px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.add-teacher-section .form-grid .image-upload .image-preview .preview-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.add-teacher-section .form-grid .image-upload .image-preview .preview-img.updateImage {
  transition: 0.3s ease-in-out;
}
.add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f443b;
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn.mv_update_image i {
  color: #ffffff;
  font-size: 1rem;
}
.add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn.mv_update_image i.fas, .add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn.mv_update_image i.fa-pencil-alt {
  color: #ffffff;
}
.add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn:hover {
  background: #4a6b5a;
  transform: scale(1.1);
}
.add-teacher-section .form-grid .image-upload .image-preview .edit-image-btn:active {
  transform: scale(0.95);
}
.add-teacher-section .form-grid .image-upload input[type=hidden] {
  display: none;
}
.add-teacher-section .form-grid .image-upload input[type=hidden]#isImageChanged {
  display: none;
}
.add-teacher-section .form-grid .image-upload input[type=file] {
  display: none;
}
.add-teacher-section .form-grid .image-upload input[type=file].image-picker, .add-teacher-section .form-grid .image-upload input[type=file].mv_update_service_image_picker {
  display: none;
}
.add-teacher-section .form-grid .details-section .two-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.add-teacher-section .form-grid .details-section .form-group {
  margin-bottom: 10px;
}
.add-teacher-section .form-grid .details-section .form-group input,
.add-teacher-section .form-grid .details-section .form-group textarea,
.add-teacher-section .form-grid .details-section .form-group select {
  width: 100%;
  padding: 8px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  transition: 0.3s ease-in-out;
  background: white;
}
.add-teacher-section .form-grid .details-section .form-group input[type=file],
.add-teacher-section .form-grid .details-section .form-group textarea[type=file],
.add-teacher-section .form-grid .details-section .form-group select[type=file] {
  cursor: pointer;
  background: #f8fafc;
  padding: 0;
}
.add-teacher-section .form-grid .details-section .form-group input[type=file]::file-selector-button,
.add-teacher-section .form-grid .details-section .form-group textarea[type=file]::file-selector-button,
.add-teacher-section .form-grid .details-section .form-group select[type=file]::file-selector-button {
  background: #edf2f7;
  border: 1px solid #e2e8f0;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #2d3748;
  padding: 8px 12px;
}
.add-teacher-section .form-grid .details-section .form-group input[type=file]::file-selector-button:hover,
.add-teacher-section .form-grid .details-section .form-group textarea[type=file]::file-selector-button:hover,
.add-teacher-section .form-grid .details-section .form-group select[type=file]::file-selector-button:hover {
  background: #e2e8f0;
}
.add-teacher-section .form-grid .details-section .form-group .error {
  color: #dc3545;
}
.add-teacher-section .form-grid .details-section .form-actions button {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 3rem;
  background: #2f443b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .add-teacher-section .form-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.teacher-section .teacher-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  padding: 1rem;
}
.teacher-section .teacher-card:hover {
  background: #e7f3f3;
}
.teacher-section .teacher-card .img-wrap {
  width: 55%;
  height: auto;
  margin: 1rem auto;
  margin-bottom: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: filter 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.teacher-section .teacher-card .img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #4a6b5a;
}
.teacher-section .teacher-card .img-wrap:hover {
  filter: brightness(0.9);
}
.teacher-section .teacher-card .img-wrap::after {
  content: "";
  width: 130%;
  height: 130%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/images/icons/pattern-img-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  filter: invert(21%) sepia(14%) saturate(4096%) hue-rotate(141deg) brightness(94%) contrast(103%);
}
.teacher-section .teacher-card .card-body {
  padding: 1.5rem 1rem;
}
.teacher-section .teacher-card .card-body .small-heading {
  font-family: "Outfit", sans-serif;
  color: #2f443b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.teacher-section .teacher-card .card-body .designation {
  font-family: "Outfit", sans-serif;
  color: #586880;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.teacher-section .teacher-card .card-body .teacher-social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.teacher-section .teacher-card .card-body .teacher-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #4a6b5a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.teacher-section .teacher-card .card-body .teacher-social-links a i {
  font-size: 1rem;
}
.teacher-section .teacher-card .card-body .teacher-social-links a:hover {
  background-color: #2f443b;
  transform: translateY(-2px);
}

.block-content {
  text-align: center;
}
.block-content span {
  font-size: 20px;
  font-family: Courier New;
  font-weight: 700;
  color: #1b2e35;
}

.custom-alert {
  position: fixed;
  z-index: 99999999;
  top: 4rem;
  right: 1.5rem;
  min-width: 320px;
  max-width: 420px;
  padding: 10px 14px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
  font-size: clamp(12px, 1.4vw, 14px);
  animation: toastEnter 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.custom-alert ul li {
  font-size: inherit;
}
.custom-alert.alert-success {
  border-left: 4px solid #06d6a0;
}
.custom-alert.alert-danger {
  border-left: 4px solid #ef476f;
}
.custom-alert.alert-warning {
  border-left: 4px solid #ffd166;
}
.custom-alert.alert-info {
  border-left: 4px solid #118ab2;
}
.custom-alert .close {
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.5;
  text-shadow: none;
}
.custom-alert .close:hover {
  opacity: 1;
}
.custom-alert.alert-dismissible.fade {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.custom-alert.alert-dismissible.fade:not(.show) {
  opacity: 0;
  transform: translateX(120%) scale(0.96);
}
@media (max-width: 640px) {
  .custom-alert {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .custom-alert {
    animation: none;
  }
}

.favourite-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid #f0f0f0;
}
.favourite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #e0e7ff;
}
.favourite-card .card-head {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.favourite-card .card-head .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.favourite-card .card-head:hover .main-img {
  transform: scale(1.08);
}
.favourite-card .card-body {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.favourite-card .card-body .card-heading {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.favourite-card .card-body .card-heading:hover {
  color: #2f443b;
}
.favourite-card .card-body .duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f9ff;
  color: #0369a1;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.favourite-card .card-body .duration-badge i {
  font-size: 12px;
}
.favourite-card .card-footer {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.favourite-card .card-footer .btn-view {
  background: linear-gradient(135deg, #2f443b, #4a6b5a);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  border: none;
  cursor: pointer;
}
.favourite-card .card-footer .btn-view:hover {
  background: linear-gradient(135deg, #4a6b5a, #2f443b);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}
.favourite-card .card-footer .btn-view:active {
  transform: translateY(0);
}
.favourite-card .card-footer form {
  margin: 0;
}
.favourite-card .card-footer form .btn-remove {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  color: #dc2626;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-width: 90px;
}
.favourite-card .card-footer form .btn-remove i {
  transition: color 0.3s ease;
}
.favourite-card .card-footer form .btn-remove:hover {
  color: #fef2f2;
  background: #dc2626;
}
.favourite-card .card-footer form .btn-remove:hover i {
  color: #fef2f2;
}

#profile-tab .nav-item .nav-link {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #6c757d;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-right: 8px;
}
#profile-tab .nav-item .nav-link:hover {
  color: #2f443b;
  background-color: rgba(47, 68, 59, 0.1);
}
#profile-tab .nav-item .nav-link.active {
  color: white;
  background-color: #2f443b;
  box-shadow: 0 2px 8px rgba(47, 68, 59, 0.3);
}

.ck-editor,
.ck-editor__main,
.ck-editor__editable {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Certificate Upload Field */
.certificate-field .certificate-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}
.certificate-field .certificate-upload:hover {
  background: #eef4ff;
  border-color: #2f443b;
}
.certificate-field .certificate-upload .upload-icon {
  font-size: 20px;
  color: #2f443b;
  flex-shrink: 0;
}
.certificate-field .certificate-upload .upload-text {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.certificate-field .certificate-upload input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.certificate-field .current-certificate-info {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
}
.certificate-field .current-certificate-info .certificate-link {
  color: #2f443b;
  font-weight: 600;
  text-decoration: none;
}
.certificate-field .current-certificate-info .certificate-link:hover {
  text-decoration: underline;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lead-student-form-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lead-student-form-wrap.active {
  display: flex;
  opacity: 1;
}
.lead-student-form-wrap .form-container {
  background: white;
  width: 90%;
  max-width: 576px;
  border-radius: 16px;
  padding: clamp(16px, 2vw, 20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  overflow-y: auto;
}
.lead-student-form-wrap .form-container.active {
  transform: scale(1);
}
.lead-student-form-wrap .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}
.lead-student-form-wrap .form-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2f443b;
  margin: 0;
}
.lead-student-form-wrap .form-header .close-popup {
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #666;
}
.lead-student-form-wrap .form-header .close-popup:hover {
  background: #ffe5e5;
  color: #ff4d4d;
  transform: rotate(90deg);
}
.lead-student-form-wrap .student-form label {
  font-weight: 600;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
  display: block;
}
.lead-student-form-wrap .student-form p {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  margin-bottom: 0;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  min-height: 38px;
  min-width: 140px;
}
.lead-student-form-wrap .student-form .details_actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
}
.lead-student-form-wrap .student-form .details_actions .btn {
  padding: 10px 22px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  flex-grow: 1;
}
.lead-student-form-wrap .student-form .details_actions .btn.chat-btn {
  background: white;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}
.lead-student-form-wrap .student-form .details_actions .btn.chat-btn:hover {
  color: white;
  background: #FF8C00;
}
.lead-student-form-wrap .student-form .details_actions .btn.call-btn {
  border: 2px solid #17b55b;
  background: white;
  color: #17b55b;
}
.lead-student-form-wrap .student-form .details_actions .btn.call-btn:hover {
  background: #17b55b;
  color: #ffffff;
}

.no-arrows {
  -moz-appearance: textfield;
}
.no-arrows::-webkit-inner-spin-button, .no-arrows::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}