
  body {
    font-family: 'Poppins', sans-serif;
    background: #f7f8fc;
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  /* Stepper */
  .stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    margin-top: 30px;
  }
  .stepper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
  }
  .step {
    text-align: center;
    z-index: 1;
    width: 25%;
  }
  .step .circle {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: #ccc;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .step.active .circle {
    background: #f19a23;
    box-shadow:  0 0 15px rgba(204,199,189,0.7);
  }
  .step p {
    margin-top: 8px;
    font-size: 14px;
  }

  /* Progress animation */
  .progress {
    position: absolute;
    top: 20px;
    left: 0;
    height: 4px;
    background: #f19a23;
    transition: width 0.4s ease;
    z-index: 1;
  }

  /* Step content */
  .form-step {
    display: none;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s ease;
  }
  .form-step input{
    padding: 10px;
    border-radius: 5px;
    max-width: 550px;

  }
  .form-step.active {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }

  .form-container {
  max-width: 500px;
  margin: auto;
}

.form-control {
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #5b73e8;
  box-shadow: 0 0 0 0.2rem rgba(91,115,232,.25);
}

.btn-primary {
  background: linear-gradient(135deg, #5b73e8, #2b50c7);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2b50c7, #5b73e8);
}

  /* Cards */
  .options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
  }
  .option {
    flex: 1 1 40%;
    padding: 10px;
    background: #f5f4f2;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .option img {
  width: 60px;   /* size of your vector */
  height: 60px;
  object-fit: contain;
}
.option span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
  .option:hover {
    background: #e9e7e2;
    transform: scale(1.05);
  }
  .option input {
    display: none;
  }
  .option.selected {
    border:  2px solid #f19a23;
    background: #f2f1ee;
  }

  /* Buttons */
  .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background:  #f19a23;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  button:hover {
    box-shadow: 0 5px 15px rgba(204,199,189,0.5);
  }
.btn-primary {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    margin-right: 10px;
}    
.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    margin-right: 10px;
}
a {
  text-decoration: none;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    margin: 15px;
    padding: 20px;
  }

  .stepper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }
  .stepper::before {
    display: none; /* hide horizontal line */
  }
  .step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .step p {
    font-size: 13px;
  }

  .options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .options {
    grid-template-columns: 1fr;
  }
  .btns {
    flex-direction: column;
    gap: 15px;
  }
  button {
    width: 100%;
  }
}
/* Navbar Base */
.navbar {
  /* background: #f19a23 !important; */
  border-radius: 0 0 15px 15px;
  padding: 10px 20px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

/* Brand (logo text if no image) */
.navbar-brand {
  font-weight: 600;
  font-size: 18px;
  color: #fff !important;
}

/* Nav links */
.navbar-nav .nav-link {
  /* color: #fff !important; */
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  background: rgba(255,255,255,0.2);
}

/* Active link */
.navbar-nav .nav-link.active {
  background: rgba(255,255,255,0.3);
  font-weight: 600;
}

/* Social Icons */
.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
.social-icon:hover {
  background: #333;
  transform: scale(1.1);
}

/* Toggler (hamburger button) */
.navbar-toggler {
  border: none;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .navbar-collapse {
    /* background: #f19a23; */
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
  }
  .navbar-nav .nav-link {
    padding: 10px;
    text-align: center;
  }
  .d-flex.gap-2 {
    justify-content: center;
    margin-top: 10px;
  }
  .stepper{
    display: none;
  }
  .nav{
    display: flex;
  }
}
/* Social Icons Styling */
.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}
.social-icon:hover {
  background: #333;
  transform: scale(1.1);
}

/* Mobile collapse menu */
@media (max-width: 768px) {
  .navbar-collapse {
    background: #f19a23;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
  }
  .navbar-nav .nav-link {
    text-align: center;
    padding: 10px;
  }
}
/* ===== Header Layout ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 8px 15px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.header-logo img {
  width: 100px;
  height: auto;
}

/* ===== Navigation ===== */
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.header-nav ul li a:hover {
  color: #555;
}

/* ===== Social Icons ===== */
.header-social {
  display: flex;
  gap: 10px;
}

.header-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 14px;
}

.header-social a:hover {
  background: #333;
  transform: scale(1.1);
}

/* ===== Mobile Toggle ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: #f19a23;
    border-radius: 10px;
    padding: 15px;
    display: none;
  }

  .header-nav.active {
    display: flex;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    gap: 8px;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

