/* Global Settings */
:root {
  --primary-color: #0056b3; /* Deep blue */
  --accent-color: #f0a500; /* Golden accent */
  --text-color: #1e293b; /* Dark slate */
  --muted-color: #6c757d; /* Bootstrap’s muted */
  --bg-light: #f8f9fa; /* Very light gray */
  --bg-dark: #343a40; /* Dark gray for footer */
}

/* Font & Base */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}
a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

/* Navbar */
.navbar {
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.25rem;
}
.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
}
.logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* Hero Section */
.hero {
  position: relative;
  height: 75vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.65); /* Semi-dark blue overlay */
  z-index: 1;
}
.hero .container {
  z-index: 2;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.125rem;
  margin-top: 1rem;
}
.hero .btn-light {
  background-color: #ffffffaa;
  color: var(--text-color);
  border: none;
  font-weight: 600;
}
.hero .btn-light:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

/* Icon Wrappers */
.icon-wrapper {
  font-size: 2.5rem;
  color: var(--primary-color);
}
.process-icon {
  font-size: 3rem;
  color: var(--accent-color);
}

/* Cards in “How We Help” & Testimonials */
.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form */
form .form-control {
  border-radius: 10px;
}
form .btn {
  font-weight: 600;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: #fff;
}
footer a {
  color: #ffffffcc;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer h5 {
  margin-bottom: 1rem;
}
footer p,
footer li {
  font-size: 0.95rem;
}
#form {
  padding: 4rem 0;
}
#form h2 {
  font-weight: 700;
  font-size: 2.75rem;
  letter-spacing: 0.05em;
  color: #0f172a;
}
#form p.text-muted {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #64748b;
}
form.bg-light {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.15);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.form-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.form-step-active {
  display: block;
}
label.form-label {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: #334155;
}
small.text-muted {
  font-weight: 400;
  font-size: 0.875rem;
  color: #64748b !important;
}
input.form-control-lg,
select.form-select-lg,
textarea.form-control-lg {
  border-radius: 0.5rem;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 0.1);
  transition: border-color 0.3s ease;
}
input.form-control-lg:focus,
select.form-select-lg:focus,
textarea.form-control-lg:focus {
  border-color: #2563eb;
  box-shadow: 0 0 8px #2563eba8;
  outline: none;
}
.btn-primary {
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  border: none;
  border-radius: 0.7rem;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 8px 15px rgb(59 130 246 / 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 12px 25px rgb(37 99 235 / 0.6);
  outline: none;
}
.btn-lg {
  border-radius: 0.75rem;
}
.form-check-label {
  font-weight: 500;
  font-size: 1rem;
  color: #334155;
  user-select: none;
}
.form-check-input:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(37 99 235 / 0.5);
}
.invalid-feedback {
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: none;
}
.form-step-active .invalid-feedback {
  display: block;
}

/* Custom checkbox style */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.3rem;
  cursor: pointer;
  border-radius: 0.35rem;
  border: 1.8px solid #cbd5e1;
  transition: all 0.2s ease;
}
.form-check-input:hover {
  border-color: #2563eb;
}

/* Custom radio style */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

.trustpilot-section {
    padding: 4rem 0;
    background-color: #0f1e26;
  }

  .trustpilot-section h2 {
    font-weight: bold;
  }

  .trustpilot-section .highlight {
    color: #00b67a;
  }

  .review-card {
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    max-width: 300px;
    flex: 1 1 250px;
  }

  .trustpilot-footer {
    font-size: 0.9rem;
    color: #cbd5e1;
  }

  .trustpilot-star {
    color: #00b67a;
    font-size: 1.2rem;
  }

  .btn-join {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    margin-top: 1.5rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }

  .trustpilot-section p {
    margin-bottom: 0.5rem;
  }

  @media (max-width: 768px) {
    .review-card {
      max-width: 90%;
    }
  }

/* How It Works Section */
.how-it-works {
  background-color: #f8f9fa;
}

.step-card {
  border: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 3rem;
  color: #0d6efd;
  background: #e9f2ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.step-card:hover .step-icon {
  background: #cce0ff;
  color: #0a58ca;
}


/* Smooth fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.thankyou-section {
      background: linear-gradient(135deg, #0d6efd, #198754);
      color: white;
      padding: 60px 20px;
    }

    .thankyou-section h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .thankyou-section .icon-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px;
      transition: 0.3s ease;
    }

    .thankyou-section .icon-box:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.03);
    }

    .thankyou-section i {
      font-size: 2rem;
      color: #ffc107;
    }

    .thankyou-section .step-title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .office-hours {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 40px;
      padding-top: 20px;
    }

    .badge-step {
      background-color: #ffc107;
      color: #000;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 25px;
      font-size: 1rem;
    }