:root {
  --primary: #5f2eea; /* Reverting to purple for premium feel */
  --primary-dark: #4a23b9;
  --secondary: #00d2ff;
  --accent: #f29f4a; /* Orange for small accents */
  --dark: #0f0f13;
  --text-color: #f0f0f0; /* Light text for dark background */
  --light-bg: #f8f9fd;
  --white: #ffffff;
  --border-radius: 16px;
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  --hover-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  /* Global gradient background using user's color */
  background: linear-gradient(135deg, #5f2eea 0%, #2a1b5e 100%);
  background-attachment: fixed;
  background-size: cover;
  line-height: 1.8;
  overflow-x: hidden;
  font-size: 15px;
  min-height: 100vh;
}

/* Navbar */
.navbar-custom {
  background-color: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom.top-nav-collapse {
  background: rgba(15, 15, 20, 0.8); /* Dark Glass effect for purple bg */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
  height: 45px;
  transition: var(--transition);
}

.navbar-custom.top-nav-collapse .navbar-brand img {
  height: 40px; /* Slightly smaller on scroll */
}

@media (max-width: 991px) {
  .navbar-brand img {
    height: 35px; /* Smaller logo on mobile */
  }
  
  .navbar-custom.top-nav-collapse .navbar-brand img {
    height: 32px;
  }
  
  .navbar-collapse {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    text-align: center;
    font-size: 1.1rem; /* Larger touch targets */
  }
  
  .navbar-nav .nav-link::after {
    display: none; /* Remove underline animation on mobile */
  }
  
  .btn-signup {
    display: block;
    text-align: center;
    margin-top: 15px;
    width: 100%; /* Full width button on mobile */
  }
}

.navbar-nav .nav-link {
  color: #ffffff !important; /* White text for visibility */
  font-weight: 700;
  padding: 0 20px !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent); /* Orange accent for visibility */
    transition: var(--transition)
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

.btn-signup {
  position: relative;
  display: inline-block;
  padding: 9px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff; /* White text */
  background: transparent;
  border: 2px solid transparent;
  z-index: 1;
  overflow: hidden;
}

/* Gradient animated border */
.btn-signup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* border thickness */

  background: linear-gradient(
      270deg,
      #ff9900,
      #c9ff33,
      #00ffff,
      #4c77eb
  );

  background-size: 400% 400%;

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  animation: borderMove 10s	linear infinite;
}

/* Hover effect */
.btn-signup:hover {
  color: white;
  transform: translateY(-3px);
}

/* Gradient animation */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 400% 50%;
  }
}

/* Hero Section */
.hero-section {
  padding: 200px 0 150px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

#star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.star.small {
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
}

.star.medium {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.4);
}

.star.xl {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Shooting star */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8));
    animation: shoot 3s linear infinite;
    opacity: 0;
    transform: rotate(-45deg);
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0) rotate(-45deg); opacity: 0.8; }
    100% { transform: translateX(-500px) translateY(500px) rotate(-45deg); opacity: 0; }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle star overlay for texture */
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff; /* White title */
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content h1 span.highlight {
  background: linear-gradient(120deg, #ffd700 0%, #ff9900 100%); /* Gold/Orange for contrast */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  color: #f0f0f0; /* Light text */
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-hero {
  background: linear-gradient(
      270deg,
      #ff9900,
      #9828da,
      #5328ca,
      #0879e2e3
  );
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(118, 75, 162, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    transition: 0.5s;
}

.btn-hero:hover::after {
    transform: skewX(-20deg) translateX(150%);
}

.btn-hero:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 20px 40px rgba(118, 75, 162, 0.6);
}

/* Feature Cards (Premium Glassmorphism) */
.glass-card {
  background: rgba(255, 255, 255, 0.1); /* More transparent for dark bg */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column; /* Stack header and content vertically */
  align-items: flex-start; /* Align left */
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.glass-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 15px; /* Slightly rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px; /* Space between icon and text */
  margin-bottom: 0; /* Reset bottom margin */
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  flex-shrink: 0; /* Prevent icon shrinking */
}

/* Gradient icons matching the image */
.icon-dashboard { 
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); 
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.icon-star { 
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}
.icon-support { 
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); /* Same blue as dashboard for consistency */
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.icon-rocket { 
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); 
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
.icon-shield { 
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); 
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.icon-wallet { 
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); 
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}
.icon-cogs { 
    background: linear-gradient(135deg, #64748b 0%, #475569 100%); 
    box-shadow: 0 8px 20px rgba(100, 116, 139, 0.3);
}
.icon-magic { 
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); 
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.glass-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #ffffff; /* White text for dark bg */
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.glass-content p {
  font-size: 0.95rem;
  color: #e0e0e0; /* Light grey text */
  line-height: 1.5;
  margin-bottom: 0;
}

.features-container {
    margin-top: 80px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15); /* Container frosted glass */
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}


/* Features / Why Choose Us */
.features-section {
  padding: 120px 0;
  background-color: transparent;
}

.section-title h2 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.section-title p {
    color: #e0e0e0 !important;
}

/* Services Preview */
.services-section {
  padding: 120px 0;
  background: transparent;
}

.table {
  margin-bottom: 0;
  color: #fff;
}

.glass-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-table thead th {
    background: rgba(95, 46, 234, 0.6); /* Semi-transparent primary */
    color: #fff;
    border-bottom: none;
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-table tbody td,
.glass-table tbody th {
    padding: 20px;
    vertical-align: middle;
    font-weight: 600;
    color: #f0f0f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
}

.glass-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Signup Page Styling */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Rely on body background */
  padding: 120px 0 80px; /* Space for sticky header */
}

.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 650px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.auth-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.auth-header p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.auth-form label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.auth-form .form-control {
  height: 55px;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  backdrop-filter: blur(5px);
  color: #fff;
}

.auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-form .form-control:focus {
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.15);
  color: #fff;
  outline: none;
}

/* Custom Checkbox */
.custom-control-label {
    color: #d1d5db;
    cursor: pointer;
}

.custom-control-label a {
    color: var(--secondary);
    font-weight: 600;
}

.auth-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border: none;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 20px rgba(95, 46, 234, 0.3);
  transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(95, 46, 234, 0.5);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #d1d5db;
}

.auth-footer a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: transparent;
}

/* Reuse glass-card styles for contact info */
.contact-info-card {
  padding: 30px; /* Consistent padding */
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.contact-info-card h4 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 25px !important;
}

.contact-info-card p, 
.contact-info-card .text-muted {
  color: #d1d5db !important; /* Lighter grey */
  font-size: 0.95rem;
}

.contact-info-card h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-card .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 5px 15px rgba(95, 46, 234, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form.glass-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.08); /* Slightly lighter */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  height: auto;
  color: #fff;
  transition: all 0.3s;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary); /* Blue border on focus */
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.2);
    color: #fff;
}

.contact-form textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-form .btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(95, 46, 234, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(95, 46, 234, 0.5);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

/* How It Works */
.step-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08); /* Brighter glass */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px); /* Stronger blur */
    transition: var(--transition);
    height: 100%;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(95, 46, 234, 0.3); /* Glowing effect */
}

.step-icon i {
    font-size: 2.5rem; /* Larger icon */
    background: linear-gradient(135deg, #fff, #e0c3fc); /* White to light purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--secondary), var(--primary)); /* Gradient badge */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.step-connector {
    position: absolute;
    top: 80px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 0;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.step-card h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.step-card p {
    color: #e0e0e0; /* High contrast light grey */
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08); /* Brighter glass */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1); /* More visible quote */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar-placeholder {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
}

.testimonial-info h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); /* Glowing stars */
}

.testimonial-text {
    color: #f0f0f0; /* Very bright grey */
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
  background: rgba(11, 11, 15, 0.9); /* Darker for better contrast */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  color: #d1d5db; /* Light grey text */
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(95, 46, 234, 0.15), transparent 70%); /* Subtle bottom glow */
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer p {
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-links a {
  color: #d1d5db; /* High contrast grey */
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1); /* Slightly brighter */
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(95, 46, 234, 0.4);
  color: #fff;
  border-color: transparent;
}

.footer .input-group .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Stronger border */
    color: #fff;
    backdrop-filter: blur(5px);
    height: 50px;
}

.footer .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Brighter placeholder */
}

.footer .input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(95, 46, 234, 0.2);
}

.footer .btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    padding: 0 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    height: 50px; /* Match input height */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer .btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    box-shadow: 0 10px 20px rgba(95, 46, 234, 0.4);
    transform: translateY(-2px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 60px;
  color: #9ca3af; /* Medium grey */
  font-size: 0.9rem;
  text-align: center;
}
