/* Custom styles for horizontal scrolling information section */

/* Ensure proper spacing for the scrolling section */

/* Regular scrolling styles - Remove PagePiling effects */
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: auto !important; /* Override PagePiling height restrictions */
}

.main-content {
  position: relative;
  width: 100%;
  height: auto !important; /* Ensure content can expand */
}

.section {
  min-height: 100vh;
  position: relative;
  height: auto !important; /* Override PagePiling height restrictions */
}

/* Remove any PagePiling specific styles */
.pp-scrollable {
  /* Remove PagePiling scrollable class */
  height: auto !important;
  overflow: visible !important;
}

/* Ensure proper spacing between sections */
.section + .section {
  margin-top: 0;
}

/* Fix header positioning for regular scrolling */
.header-v-three {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white !important;
}

/* Adjust content to account for fixed header */
body {
  padding-top: 80px; /* Adjust based on header height */
}

/* Ensure scrollbar is visible and functional */
html {
  overflow-y: auto !important;
  overflow-x: hidden;
}

body {
  overflow-y: auto !important;
  overflow-x: hidden;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

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

/* Remove any PagePiling container restrictions */
#pagepiling {
  height: auto !important;
  overflow: visible !important;
  position: relative !important;
}

/* Ensure sections are properly spaced */
.testimonials-v-three,
.we-do-v-three,
.features-v-three {
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

/* Service name highlighting */
.certificatelist {
  font-size: 16px;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 8px;
  background: #f8f9fa;
  border-left: 4px solid #28bae5;
  position: relative;
}

/* Service name text styling */
.certificatelist strong {
  color: #2c3e50;
  font-weight: 600;
  position: relative;
}

/* Mobile responsive for service names */
@media (max-width: 768px) {
  .certificatelist {
    font-size: 14px;
    padding: 8px 12px;
    margin: 6px 0;
  }
}


.section-title-bold{
  font-family: "Poppins", sans-serif !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  letter-spacing: -3px !important;
  line-height: 1.2 !important;
}

/* Chatbot button positioning fixes */
.chatButton {
  position: fixed !important;
  z-index: 9999 !important;
  bottom: 20px !important;
  right: 20px !important;
  margin: 0 !important;
}

/* Inline chatbot button styling - matching review button style but with red color */
.chatButton-inline {
  font-weight: 700;
  font-size: 14px;
  margin: 15px 0 0 10px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 2px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #dc3545;
  box-shadow: 0 0 30px 0 rgba(220, 53, 69, 0.2);
  background-color: #dc3545;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
}

.chatButton-inline:hover {
  background: #fff;
  color: #dc3545;
  border-color: #dc3545;
}

.chatButton-inline i {
  margin-right: 5px;
  font-size: 16px;
}

/* Ensure chatbot button doesn't interfere with footer */
.desktop-footer {
  z-index: 1000;
}

/* Mobile responsive for chatbot */
@media (max-width: 768px) {
  .chatButton {
    bottom: 80px !important;
    right: 15px !important;
    width: 120px !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
  
  .chatButton-inline {
    font-size: 12px !important;
    padding: 4px 12px !important;
    margin-left: 5px !important;
  }
  
  .chat-window {
    width: 90% !important;
    right: 5% !important;
    bottom: 100px !important;
    max-height: 60vh !important;
  }
}


.icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.icon-with-text {
  display: inline-block;
  text-align: center;
  margin: 10px;
  vertical-align: top;
  width: 100px;
}
.icon-with-text img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}
.icon-text {
  margin-top: 5px;
  font-size: 14px;
  color: #3F6784;
  font-weight: 600;
  line-height: 1.2;
}



.certificatelist{
  margin-right: 20px;
}



.info-scroll-container {
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 8px 0;
  position: relative;
  z-index: 99;
  margin-top: 0;
  clear: both;
}


/* Adjust for different screen sizes */
@media (max-width: 768px) {
  .info-scroll-container {
    padding: 6px 0;
  }
  
}


/* Ensure the scrolling text is visible */
.info-scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
  padding-left: 100%;
}

.info-scroll-container:hover .info-scroll-content {
  animation-play-state: paused;
}

.info-scroll-content span {
  display: inline-block;
  padding: 0 20px;
  font-size: 16px;
  color: #3F6784;
  font-weight: 500;
}

.info-scroll-content i {
  color: #F800C1;
  margin-right: 5px;
  font-size: 18px;
  vertical-align: middle;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Simple checkbox styling with margins */
.checkbox-item {
  padding: 8px 0;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.1);
}

.checkbox-item label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
  line-height: 1.4;
}



/* Modal form improvements */
.modal-body .form-group {
  margin-bottom: 20px;
}

.modal-body .formcustome {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.modal-body .formcustome:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
  outline: none;
}

/* Error message styling */
#service-error, #self-care-alert {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
}

#service-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

#self-care-alert {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

@media (max-width: 768px) {
  .info-scroll-content {
    animation: scrollText 20s linear infinite;
  }
  .info-scroll-content span {
    padding: 0 15px;
    font-size: 14px;
  }
} 

/* ========================================
   VERTICAL SCROLLBAR STYLES
   ======================================== */

/* Global scrollbar styles for the entire page */
html {
  scrollbar-width: thin;
  scrollbar-color: #4b4b4b #f0f0f0;
}

body {
  scrollbar-width: thin;
  scrollbar-color: #4b4b4b #f0f0f0;
}

/* Webkit scrollbar styles (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

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

::-webkit-scrollbar-corner {
  background: #f0f0f0;
}

/* Custom scrollbar for specific containers */
.scrollable-container {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.scrollable-container::-webkit-scrollbar {
  width: 6px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 8px;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 8px;
  border: 1px solid #f8f9fa;
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Thin scrollbar variant */
.scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.scrollbar-thin::-webkit-scrollbar {
  width: 4px;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 6px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Thick scrollbar variant */
.scrollbar-thick {
  scrollbar-width: auto;
  scrollbar-color: #F800C1 #f0f0f0;
}

.scrollbar-thick::-webkit-scrollbar {
  width: 12px;
}

.scrollbar-thick::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 12px;
}

.scrollbar-thick::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
}

.scrollbar-thick::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Dark theme scrollbar */
.scrollbar-dark {
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #2c2c2c;
}

.scrollbar-dark::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-dark::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 10px;
}

.scrollbar-dark::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 10px;
  border: 2px solid #2c2c2c;
}

.scrollbar-dark::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Blue theme scrollbar */
.scrollbar-blue {
  scrollbar-width: thin;
  scrollbar-color: #0c3d71 #f0f0f0;
}

.scrollbar-blue::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-blue::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.scrollbar-blue::-webkit-scrollbar-thumb {
  background: #0c3d71;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.scrollbar-blue::-webkit-scrollbar-thumb:hover {
  background: #0a2f5a;
}

/* Rounded scrollbar */
.scrollbar-rounded {
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.scrollbar-rounded::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-rounded::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 20px;
}

.scrollbar-rounded::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
}

.scrollbar-rounded::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Gradient scrollbar */
.scrollbar-gradient {
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.scrollbar-gradient::-webkit-scrollbar {
  width: 8px;
}

.scrollbar-gradient::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.scrollbar-gradient::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #F800C1, #0c3d71);
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.scrollbar-gradient::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #d600a3, #0a2f5a);
}

/* Mobile responsive scrollbar adjustments */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
  
  .scrollable-container::-webkit-scrollbar {
    width: 4px;
  }
  
  .scrollbar-thick::-webkit-scrollbar {
    width: 8px;
  }
}

/* Hide scrollbar but keep functionality */
.scrollbar-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* Custom scrollbar for specific sections */
.content-area {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.content-area::-webkit-scrollbar {
  width: 8px;
}

.content-area::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}

.content-area::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 10px;
  border: 2px solid #f8f9fa;
}

.content-area::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Modal scrollbar styles */
.modal-body {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 8px;
  border: 1px solid #f8f9fa;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* Table scrollbar styles */
.table-container {
  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 8px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 8px;
  border: 1px solid #f8f9fa;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
}

/* List scrollbar styles */
.list-container {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F800C1 #f0f0f0;
}

.list-container::-webkit-scrollbar {
  width: 6px;
}

.list-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 8px;
}

.list-container::-webkit-scrollbar-thumb {
  background: #F800C1;
  border-radius: 8px;
  border: 1px solid #f8f9fa;
}

.list-container::-webkit-scrollbar-thumb:hover {
  background: #d600a3;
} 

/* ========================================
   ATTRACTIVE MODAL STYLES
   ======================================== */

/* Enhanced Modal Styling */
.modal {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999 !important;
}

.modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
  z-index: 10000 !important;
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F800C1, #0c3d71, #28bae5);
  z-index: 1;
}

.modal-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e9ecef;
  padding: 25px 30px 20px;
  position: relative;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  text-align: center;
  width: 100%;
  position: relative;
}

.modal-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #F800C1, #0c3d71);
  border-radius: 2px;
}

.modal-header .close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6c757d;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-header .close:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
  background: #fff;
}

.modal-footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 1px solid #e9ecef;
  padding: 20px 30px 25px;
  text-align: center;
}

/* Enhanced Form Controls */
.modal-body .form-group {
  margin-bottom: 25px;
  position: relative;
}

.modal-body .formcustome,
.modal-body .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 55px;
  line-height: 1.5;
  box-sizing: border-box;
}

.modal-body .formcustome:focus,
.modal-body .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.modal-body .formcustome::placeholder,
.modal-body .form-control::placeholder {
  color: #adb5bd;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

/* Enhanced Select Styling */
.modal-body select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  cursor: pointer;
  height: 55px;
  line-height: 1.5;
}

.modal-body select.form-control:hover {
  border-color: #28bae5;
  background-color: #f8f9fa;
}

/* Enhanced Textarea Styling */
.modal-body textarea.form-control {
  min-height: 120px;
  height: auto;
  resize: vertical;
  line-height: 1.6;
  padding: 15px 20px;
}

/* Enhanced Button Styling */
.small-black-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.small-black-button::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;
}

.small-black-button:hover::before {
  left: 100%;
}

.small-black-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.small-black-button:active {
  transform: translateY(-1px);
}

/* Review Modal Specific Styles */
#review .modal-content {
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

#review .modal-header {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

#review .modal-title {
  color: #1a365d;
}

#review .modal-title::after {
  background: linear-gradient(90deg, #007bff, #28bae5);
}

/* Rating Stars Enhancement */
.modal-body select[name="rating"] option {
  padding: 10px;
  font-size: 18px;
}

/* Red asterisk for required fields */
.modal-body .form-group label:contains("*"),
.modal-body .form-group .required-asterisk {
  color: #dc3545;
  font-weight: bold;
}

/* Red asterisk styling for specific text */
.modal-body .form-control option:contains("आम्हाला ५ पैकी स्टार रेटिंग द्या") {
  color: #333;
}

/* Red asterisk styling */
.required-field::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* For select options with asterisk */
.modal-body select option[value=""] {
  color: #333;
}

/* Red asterisk for any text ending with * */
.modal-body .form-control option:first-child {
  color: #333;
}

/* Red asterisk for rating label */
.modal-body .rating-label {
  color: #333;
}

.modal-body .required-asterisk {
  color: #dc3545;
  font-weight: bold;
}

.modal-body select[name="rating"] option[value="1"] { font-size: 20px; }
.modal-body select[name="rating"] option[value="2"] { font-size: 20px; }
.modal-body select[name="rating"] option[value="3"] { font-size: 20px; }
.modal-body select[name="rating"] option[value="4"] { font-size: 20px; }
.modal-body select[name="rating"] option[value="5"] { font-size: 20px; }

/* Form Labels Enhancement */
.modal-body label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Error States */
.modal-body .formcustome.error,
.modal-body .form-control.error {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Success States */
.modal-body .formcustome.success,
.modal-body .form-control.success {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

/* Loading State for Button */
.small-black-button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.small-black-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Modal Animation */
.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  transition: all 0.3s ease;
}

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

/* Mobile Responsive Modals */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .modal-header {
    padding: 20px 20px 15px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-footer {
    padding: 15px 20px 20px;
  }
  
  .modal-body .formcustome,
  .modal-body .form-control {
    padding: 12px 15px;
    font-size: 14px;
    height: 50px;
    line-height: 1.4;
  }
  
  .small-black-button {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  /* Mobile responsive for checkboxes */
  .checkbox-item {
    width: 100%;
    margin: 4px 0;
  }
  
  .checkbox-group {
    padding: 10px !important;
  }
}

/* Track Modal Specific Styles */
#trackModal .modal-content {
  background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
}

#trackModal .modal-header {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
}

#trackModal .modal-title {
  color: #1a4731;
}

#trackModal .modal-title::after {
  background: linear-gradient(90deg, #28a745, #20c997);
}

/* Appointment Modal Specific Styles */
#appointmentModal .modal-content {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

#appointmentModal .modal-header {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

#appointmentModal .modal-title {
  color: #742a2a;
}

#appointmentModal .modal-title::after {
  background: linear-gradient(90deg, #007bff, #e53e3e);
}

/* Checkbox Group Enhancement */
.checkbox-group {
  border-radius: 12px;
  padding: 15px !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border: 2px solid #e9ecef;
  max-height: 250px;
  overflow-y: auto;
  display: block;
}

.checkbox-group::-webkit-scrollbar {
  width: 6px;
}

.checkbox-group::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 3px;
}

.checkbox-group::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 3px;
}

.checkbox-group::-webkit-scrollbar-thumb:hover {
  background: #007bff;
}

/* Enhanced Checkbox Styling */
.checkbox-item {
  padding: 8px 12px;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin: 4px 0;
  border-radius: 8px;
  vertical-align: top;
}

.checkbox-item:last-child {
  border-bottom: 1px solid #e9ecef;
}

.checkbox-item:hover {
  background: rgba(0, 123, 255, 0.05);
  border-radius: 8px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.checkbox-item input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
  accent-color: #007bff;
  vertical-align: middle;
}

.checkbox-item label {
  font-size: 13px;
  color: #2c3e50;
  cursor: pointer;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
  word-wrap: break-word;
}

/* Form Validation Messages */
.modal-body .alert {
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.modal-body .alert-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #dc2626;
  border-left: 4px solid #dc2626;
}

.modal-body .alert-warning {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  color: #d97706;
  border-left: 4px solid #d97706;
}

.modal-body .alert-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #16a34a;
  border-left: 4px solid #16a34a;
}

/* Modal Backdrop Enhancement */
.modal-backdrop {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 123, 255, 0.1) 100%);
}

/* Floating Labels (Optional Enhancement) */
.form-floating {
  position: relative;
}

.form-floating .form-control {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* ========================================
   MOBILE VERIFICATION PAGE STYLES
   ======================================== */

/* Mobile Verification Page Styling */
.verification-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.verification-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28bae5, #0c3d71);
  z-index: 1;
}

.verification-title {
  font-size: 28px;
  font-weight: 700;
  color: #0c3d71;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.verification-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 2px;
}

.verification-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.verification-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  transition: all 0.3s ease;
  height: 55px;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.verification-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.verification-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.verification-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  width: 100%;
  margin-top: 20px;
}

.verification-button::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;
}

.verification-button:hover::before {
  left: 100%;
}

.verification-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.resend-section {
  text-align: center;
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

#resendLink {
  color: #6c757d;
  pointer-events: none;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

#resendLink.enabled {
  color: #007bff;
  pointer-events: auto;
  text-decoration: none;
  font-weight: 600;
}

#resendLink.enabled:hover {
  color: #0056b3;
  text-decoration: underline;
}

#timerText {
  color: #6c757d;
  font-size: 14px;
  margin-left: 10px;
}

.otp-alert {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  display: none;
}

.success-message {
  color: #28a745;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 8px;
  border-left: 4px solid #28a745;
}

/* Mobile responsive for verification page */
@media (max-width: 768px) {
  .verification-container {
    padding: 30px 20px;
    margin: 5px;
    width: calc(100% - 10px);
    max-width: none;
  }
  
  .verification-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .verification-input {
    padding: 15px 18px;
    font-size: 16px;
    height: 55px;
    margin-bottom: 25px;
  }
  
  .verification-button {
    padding: 15px 30px;
    font-size: 16px;
    margin-top: 25px;
  }
  
  .resend-section {
    margin-top: 30px;
    padding: 25px 20px;
  }
  
  .verification-label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .verification-container {
    padding: 25px 15px;
    margin: 2px;
    width: calc(100% - 4px);
    border-radius: 15px;
  }
  
  .verification-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .verification-input {
    padding: 12px 15px;
    font-size: 16px;
    height: 50px;
  }
  
  .verification-button {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  .resend-section {
    padding: 20px 15px;
  }
}

/* ========================================
   BOOK APPOINTMENT PAGE STYLES
   ======================================== */

/* Book Appointment Page Styling */
.appointment-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.appointment-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28bae5, #0c3d71);
  z-index: 1;
}

.appointment-title {
  font-size: 28px;
  font-weight: 700;
  color: #0c3d71;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.appointment-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 2px;
}

.appointment-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.appointment-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  transition: all 0.3s ease;
  height: 55px;
  line-height: 1.5;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.appointment-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.appointment-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.appointment-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  width: 100%;
  margin-top: 20px;
}

.appointment-button::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;
}

.appointment-button:hover::before {
  left: 100%;
}

.appointment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.section-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.section-divider span {
  background: #fff;
  padding: 0 20px;
  color: #0c3d71;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.documentsPreview {
  border: 2px solid #e9ecef;
  padding: 20px;
  border-radius: 12px;
  min-height: 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.documentsPreview strong {
  font-weight: 700;
  color: #0c3d71;
}

.documentsPreview em {
  font-style: italic;
  color: #6c757d;
}

.delivery-fields {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e3f2fd;
  margin-bottom: 20px;
}

.req {
  color: #dc3545;
  font-weight: bold;
}

.form-alert {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  display: none;
}

.success-alert {
  color: #28a745;
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 8px;
  border-left: 4px solid #28a745;
}

#map {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

/* Mobile responsive for appointment page */
@media (max-width: 768px) {
  .appointment-container {
    padding: 25px 20px;
    margin: 5px;
    width: calc(100% - 10px);
    max-width: none;
  }
  
  .appointment-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .appointment-input {
    padding: 12px 15px;
    font-size: 14px;
    height: 50px;
  }
  
  .appointment-button {
    padding: 12px 30px;
    font-size: 14px;
  }
  
  .section-divider span {
    font-size: 16px;
  }
  
  .documentsPreview {
    padding: 15px;
    font-size: 13px;
  }
}

/* Extra small devices for appointment page */
@media (max-width: 576px) {
  .appointment-container {
    padding: 20px 15px;
    margin: 2px;
    width: calc(100% - 4px);
    border-radius: 15px;
  }
  
  .appointment-title {
    font-size: 22px;
  }
  
  .appointment-input {
    padding: 10px 12px;
    font-size: 14px;
    height: 45px;
  }
  
  .appointment-button {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* ========================================
   BOOKING SUCCESS PAGE STYLES
   ======================================== */

/* Booking Success Page Styling */
.booking-success-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.booking-success-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
  z-index: 1;
}

.booking-success-title {
  font-size: 28px;
  font-weight: 700;
  color: #0c3d71;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 9;
}

.booking-success-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #28a745, #20c997);
  border-radius: 2px;
}

.service-tracking-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 2px solid #e3f2fd;
  position: relative;
  overflow: hidden;
}

.service-tracking-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #28a745, #20c997);
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.tracking-code {
  font-size: 24px;
  font-weight: 700;
  color: #28a745;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.tracking-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #28a745, transparent);
  border-radius: 1px;
  margin: 0 auto;
  width: 80%;
}

.tracking-note {
  color: #dc3545;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
  padding: 15px;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 12px;
  border: 2px solid #fecaca;
  animation: pulse 2s infinite;
  display: block;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.booking-exit-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  width: 100%;
  margin-top: 20px;
  float: right;
}

.booking-exit-button::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;
}

.booking-exit-button:hover::before {
  left: 100%;
}

.booking-exit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

/* Mobile responsive for booking success page */
@media (max-width: 768px) {
  .booking-success-container {
    padding: 25px 20px;
    margin: 5px;
    width: calc(100% - 10px);
    max-width: none;
  }
  
  .booking-success-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .service-tracking-item {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .service-name {
    font-size: 16px;
  }
  
  .tracking-code {
    font-size: 20px;
  }
  
  .tracking-note {
    font-size: 14px;
    padding: 12px;
  }
  
  .booking-exit-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Extra small devices for booking success page */
@media (max-width: 576px) {
  .booking-success-container {
    padding: 20px 15px;
    margin: 2px;
    width: calc(100% - 4px);
    border-radius: 15px;
  }
  
  .booking-success-title {
    font-size: 22px;
  }
  
  .service-tracking-item {
    padding: 15px;
  }
  
  .service-name {
    font-size: 15px;
  }
  
  .tracking-code {
    font-size: 18px;
  }
  
  .tracking-note {
    font-size: 13px;
    padding: 10px;
  }
  
  .booking-exit-button {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* ========================================
   SERVICE TRACKING PAGE STYLES
   ======================================== */

/* Fixed carousel for tracking page */
.tracking-page .col-md-5 {
  position: sticky;
  top: 120px;
  height: fit-content;
  z-index: 10;
  align-self: flex-start;
}

/* Ensure carousel stays fixed */
.tracking-page .col-md-5 .carousel {
  position: relative;
  width: 100%;
}

/* Mobile responsive for sticky carousel */
@media (max-width: 768px) {
  .tracking-page .col-md-5 {
    position: relative;
    top: auto;
    margin-top: 20px;
  }
}

/* Service Tracking Page Styling */
.tracking-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
  z-index: 9;
  margin-top: 20px;
}

.tracking-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28bae5, #0c3d71);
  z-index: 1;
}

.tracking-code-display {
  font-size: 32px;
  font-weight: 700;
  color: #28a745;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.tracking-title {
  font-size: 24px;
  font-weight: 700;
  color: #0c3d71;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 9;
}

.tracking-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 2px;
}

.tracking-details {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid #e3f2fd;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
  flex: 0 0 40%;
}

.detail-value {
  font-weight: 700;
  color: #0c3d71;
  font-size: 16px;
  text-align: right;
  flex: 0 0 60%;
}

.status-highlight {
  color: #28a745 !important;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 5px 15px;
  border-radius: 20px;
  border: 2px solid #bbf7d0;
}

/* Timeline Styling */
.timeline-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  border: 2px solid #e3f2fd;
}

.timeline-header {
  color: #0c3d71;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.timeline-header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 1px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #007bff, #28bae5, #0c3d71);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 25px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #007bff;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #007bff;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.3);
}

.timeline-item.completed::before {
  background: #28a745;
  box-shadow: 0 0 0 3px #28a745;
}

.timeline-item.current::before {
  background: #ffc107;
  box-shadow: 0 0 0 3px #ffc107;
}

.timeline-item.rejected::before {
  background: #dc3545;
  box-shadow: 0 0 0 3px #dc3545;
}

.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.timeline-title {
  font-weight: 700;
  color: #0c3d71;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-date {
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-description {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}

/* VLE Details Styling */
.vle-details {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  border: 2px solid #e3f2fd;
  position: relative;
  overflow: hidden;
}

.vle-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 2px 2px 0 0;
}

.vle-header {
  color: #0c3d71;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.vle-header::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #28bae5);
  border-radius: 1px;
}

.vle-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.vle-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
  flex: 0 0 40%;
}

.vle-value {
  font-weight: 700;
  color: #0c3d71;
  font-size: 16px;
  text-align: right;
  flex: 0 0 60%;
}

.tracking-back-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  width: 100%;
  margin-top: 20px;
  float: right;
}

.tracking-back-button::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;
}

.tracking-back-button:hover::before {
  left: 100%;
}

.tracking-back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

/* Mobile responsive for tracking page */
@media (max-width: 768px) {
  .tracking-container {
    padding: 25px 20px;
    margin: 5px;
    width: calc(100% - 10px);
    max-width: none;
  }
  
  .tracking-code-display {
    font-size: 28px;
    letter-spacing: 2px;
  }
  
  .tracking-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .tracking-details {
    padding: 20px;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .detail-label {
    flex: none;
    font-size: 14px;
  }
  
  .detail-value {
    flex: none;
    text-align: left;
    font-size: 14px;
  }
  
  .timeline-container {
    padding: 20px;
  }
  
  .timeline-header {
    font-size: 18px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-title {
    font-size: 16px;
  }
  
  .vle-details {
    padding: 20px;
  }
  
  .vle-header {
    font-size: 18px;
  }
  
  .vle-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .vle-label {
    flex: none;
    font-size: 14px;
  }
  
  .vle-value {
    flex: none;
    text-align: left;
    font-size: 14px;
  }
  
  .tracking-back-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Extra small devices for tracking page */
@media (max-width: 576px) {
  .tracking-container {
    padding: 20px 15px;
    margin: 2px;
    width: calc(100% - 4px);
    border-radius: 15px;
  }
  
  .tracking-code-display {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .tracking-title {
    font-size: 18px;
  }
  
  .tracking-details {
    padding: 15px;
  }
  
  .timeline-container {
    padding: 15px;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline::before {
    left: 10px;
    width: 2px;
  }
  
  .timeline-item {
    padding-left: 20px;
  }
  
  .timeline-item::before {
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
  }
  
  .timeline-content {
    padding: 12px;
  }
  
  .timeline-title {
    font-size: 15px;
  }
  
  .timeline-date,
  .timeline-description {
    font-size: 13px;
  }
  
  .vle-details {
    padding: 15px;
  }
  
  .vle-header {
    font-size: 16px;
  }
  
  .tracking-back-button {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* ========================================
   GRAY BUTTON STYLES
   ======================================== */

.small-gray-button {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.small-gray-button::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;
}

.small-gray-button:hover::before {
  left: 100%;
}

.small-gray-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(108, 117, 125, 0.4);
  background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
}

.small-gray-button:active {
  transform: translateY(-1px);
}

/* Mobile responsive for gray button */
@media (max-width: 768px) {
  .small-gray-button {
    padding: 12px 30px;
    font-size: 14px; 
  }
} 