/* 1. Redesigned start-exam-card */
.start-exam-card {
  max-width: 600px;
  margin: auto;
  position: relative;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(25, 30, 55, 0.8) 0%, rgba(40, 45, 75, 0.9) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 
    0 15px 25px -5px rgba(0, 0, 0, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.start-exam-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary), var(--accent), var(--secondary), var(--primary));
  background-size: 300% 100%;
  animation: gradientShift 8s ease infinite;
  z-index: 1;
}

.start-exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 30px -10px rgba(0, 0, 0, 0.25),
    0 15px 15px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 4px rgba(76, 201, 240, 0.1);
}

.start-exam-card h2 {
  color: var(--text-primary);
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
}

.start-exam-card h2 i {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 10px;
}

.start-exam-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.start-exam-card .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 2. Redesigned custom radio selector */
.test-type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.custom-radio-card {
  position: relative;
  flex: 1;
  min-width: 150px;
}

.custom-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.radio-indicator {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.radio-indicator:after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.custom-radio-card input[type="radio"]:checked + .radio-card-label {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(67, 97, 238, 0.12) 0%, rgba(76, 201, 240, 0.15) 100%);
  color: var(--text-primary);
  box-shadow: 
    0 5px 15px rgba(76, 201, 240, 0.15),
    0 0 0 1px rgba(76, 201, 240, 0.3);
}

.custom-radio-card input[type="radio"]:checked + .radio-card-label .radio-indicator {
  border-color: var(--accent);
  background-color: rgba(76, 201, 240, 0.1);
}

.custom-radio-card input[type="radio"]:checked + .radio-card-label .radio-indicator:after {
  display: block;
}

.radio-card-label:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(76, 201, 240, 0.3);
}

.custom-radio-card input[type="radio"]:checked + .radio-card-label:hover {
  transform: translateY(-2px);
}


/* Add RGB values for the gradients to work properly */
:root {
  --primary-rgb: 67, 97, 238;
  --secondary-rgb: 58, 12, 163;
  --accent-rgb: 76, 201, 240;
}

/* Enhanced Range Slider - Complete Rewrite */
.range-container {
  position: relative;
  padding: 0.5rem 0;
  margin: 1rem 0;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Track styling */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: transparent;
}

/* Thumb styling */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  margin-top: -7px; /* offset for proper vertical alignment */
  box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.2);
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

input[type="range"]::-moz-range-thumb {
  height: 22px;
  width: 22px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.2);
  transition: all 0.2s ease;
}

input[type="range"]::-ms-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.2);
  transition: all 0.2s ease;
}

/* Hover and focus states */
input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(76, 201, 240, 0.3), 0 0 15px rgba(76, 201, 240, 0.5);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(76, 201, 240, 0.3), 0 0 15px rgba(76, 201, 240, 0.5);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

/* Fill track effect using pseudo-element overlay */
.range-container::before {
  content: '';
  position: absolute;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 12px;
  top: 0.9rem;
  left: 0;
  width: var(--range-progress, 50%);
  z-index: 1;
  pointer-events: none;
}

/* Style the counter badge */
.badge#questionCount {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

/* Style the min/max labels */
.range-labels small.text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.75rem;
}

/* Add these styles at the end of your project.css file */

/* Add these styles at the end of your existing styles */

:root {
  --primary: #4361ee;
  --secondary: #3a0ca3;
  --accent: #4cc9f0;
  --text-primary: #f8f9fa;
  --text-secondary: #e2e8f0;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.12);
}

html{
  height: 100%;
  background-color: #0f172c;
  /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
}

body {
  /* Elegant gradient background */
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--text-primary);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

/* Container styling */
.container, .container-fluid {
  padding: 2rem 1.5rem;
}

/* Card styling */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 4px rgba(76, 201, 240, 0.1);
}

.card-header {
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%) !important;
  border-bottom: 1px solid var(--card-border);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

/* Text styling */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p, .text-muted {
  color: var(--text-secondary);
}

/* Button styling */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(67, 97, 238, 0.4);
}

/* Form control styling */
.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(76, 201, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.2);
}

/* Accent elements */
.accent-line {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin: 2rem 0;
  border-radius: 50px;
}

/* Links */
a {
  color: var(--accent);
  transition: color 0.2s ease;
  text-decoration: none;
}

a:hover {
  color: #7dd3fb;
}

/* Subtle animation for section transitions */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Table styling */
table {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--text-primary);
  font-weight: 600;
}

/* Optional: Navbar styling to match */
.navbar {
  backdrop-filter: blur(12px);
  background-color: rgba(15, 23, 42, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Navbar Styling */
.navbar {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.90) 0%, 
    rgba(15, 23, 42, 0.85) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0rem 1.2rem;
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(76, 201, 240, 0.3) 25%,
    rgba(67, 97, 238, 0.3) 50%,
    rgba(58, 12, 163, 0.3) 75%,
    transparent 100%
  );
  z-index: 1;
}

/* Brand styling */
.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary) !important;
  position: relative;
  padding: 0.5rem 0;
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

/* Optional: Add an accent glow to your brand */
.navbar-brand::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.navbar-brand:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar toggler (hamburger menu) */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  position: relative;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon span {
  top: 12px;
}

.navbar-toggler-icon::after {
  bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* Active nav link */
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(76, 201, 240, 0.05);
  font-weight: 600;
}

.navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

/* Dropdown styling */
.dropdown-menu {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-item.active {
  background: linear-gradient(90deg, 
    rgba(67, 97, 238, 0.15) 0%, 
    rgba(76, 201, 240, 0.15) 100%);
  color: var(--accent);
}

/* Optional: Nav button (for CTAs like login/signup) */
.navbar .btn-nav {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  top:5px;
  left:5px;
}

.navbar .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(15, 23, 42, 0.95);
    margin: 0 -1.2rem -0.8rem;
    padding: 1rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 16px 16px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
  }
  
  .dropdown-menu {
    background: rgba(20, 30, 55, 0.5);
    border: none;
    padding-left: 1rem;
    box-shadow: none;
    margin-left: 0.5rem;
    border-left: 1px solid rgba(76, 201, 240, 0.2);
  }
  
  /* Add subtle animation on mobile menu open */
  .navbar-collapse.collapsing {
    height: auto;
    transition: all 0.35s ease;
    overflow: hidden;
  }
  
  .navbar-collapse.show {
    animation: mobileMenuFade 0.35s ease forwards;
  }
  
  @keyframes mobileMenuFade {
    from {
      opacity: 0;
      transform: translateY(-16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Create a subtle sticky effect */
.navbar.scrolled {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1.2rem;
}

/* Optional: Add animation for sticky navbar */
@keyframes navbarStickyAnimation {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar.scrolled {
  animation: navbarStickyAnimation 0.5s;
}

/* Add a gradient shift animation for the navbar after-line */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar::after {
  background-size: 200% 100%;
  animation: gradientShift 8s ease infinite;
}


/* Add these styles for the exam status displays */

/* Common styles for status displays */
.status-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Not attempted status */
.status-display.not-attempted {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.status-display .status-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.status-display .status-text {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.status-display.not-attempted .status-icon {
  color: rgba(255, 255, 255, 0.5);
}

.status-display.not-attempted .status-text {
  color: rgba(255, 255, 255, 0.5);
}

/* Let's also update the other status displays for consistency */
.status-display.awaiting-results {
  background: linear-gradient(145deg, rgba(76, 201, 240, 0.05) 0%, rgba(67, 97, 238, 0.1) 100%);
  border: 1px solid rgba(76, 201, 240, 0.15);
}

.status-display.awaiting-results .status-icon {
  color: var(--accent);
}

.status-display.awaiting-results .status-text {
  color: var(--text-primary);
}

/* Score display styling */
.score-display {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;

  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score-display:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.score-display .display-4 {
  font-size: 2.5rem;
  line-height: 1;
}

/* Different score status colors */
.text-success {
  color: #4ade80 !important; /* Bright green that works on dark themes */
}

.text-warning {
  color: #fbbf24 !important; /* Warm yellow that works on dark themes */
}

.text-danger {
  color: #f87171 !important; /* Soft red that works on dark themes */
}

/* FAQ Section Styling */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(67, 97, 238, 0.05) 0%, rgba(76, 201, 240, 0.05) 100%);
  border-color: rgba(76, 201, 240, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
}

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

.site-footer {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    var(--accent) 25%, 
    var(--primary) 50%,
    var(--accent) 75%,
    transparent 100%);
  opacity: 0.5;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: var(--accent);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  margin: 40px 0 25px;
}

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

/* Responsive footer styles */
@media (max-width: 767.98px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 50px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-heading {
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-badge {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.progress{
  background-color: #404951;
}