* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
}
p{
    text-align: justify;
}
li{
text-align: flex-start !important;
}
/* Navbar */
.navbar {
  width: 100%;
  background-color: #000 !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  position: fixed;
  top: 0;
  z-index: 100;
}

.logo {
  height: 55px;
}

.nav-link {
  list-style: none;
  display: flex;
  gap: 30px;
  color: #fff;
}

.nav-link li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffb703;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.register-btn, .talk-btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.register-btn {
  border: 1px solid #fff;
}

.talk-btn {
  background-color: #ffb703;
  color: #000;
}

/* Hero Section */
.hero {
 background: linear-gradient(rgba(10, 35, 66, 0.7), rgb(0 0 0 / 70%)), url(img/bg.webp) no-repeat center center / cover;
  color: white;
padding-top: 100px;
  text-align: left;
  padding-bottom: 50px;
}


.hero h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.hero h1 span {
  color: #ffb703;
}

.hero p {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.call-btn {
  display: inline-block;
  background-color: #ffb703;
  color: #000;
  padding: 12px 25px;
  margin-top: 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.lawyers-box {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 15px 20px;
}

.lawyers-box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.lawyers-box h3 {
  color: #ffb703;
  font-size: 1.1rem;
}

.lawyers-box p {
  color: #fff;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:768px){
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 150px 30px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}
/* ===== Services Section ===== */
.services {
  background: #fff;
  padding: 100px 60px;
  text-align: center;
}

.services h2 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffb703;
  margin: 8px auto 0;
  border-radius: 2px;
}

.services .subtitle {
  color: #555;
  font-size: 1rem;
  margin: 15px auto 50px;
  max-width: 750px;
  line-height: 1.6;
}

.service-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 320px;
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-card .icon {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card .btn {
  display: inline-block;
  background-color: #ffb703;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.service-card .btn:hover {
  background-color: #fca311;
}

/* Responsive */
@media (max-width: 768px) {
  .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}
.more{
    background-color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* ===== How It Works Section ===== */
.how-it-works {
  background-color: #000;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  color: white;
  padding: 100px 60px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.how-it-works h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffb703;
  margin: 8px auto 0;
  border-radius: 2px;
}

.how-it-works .subtitle {
  color: #ccc;
  font-size: 1rem;
  margin: 15px auto 60px;
  max-width: 700px;
  line-height: 1.6;
}

.works-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.works-left {
  text-align: center;
}

.works-left img {
  width: 280px;
  max-width: 100%;
}

.learn-buttons {
  margin-top: 25px;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 5px;
}

.btn.yellow {
  background-color: #ffb703;
  color: #000;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.works-right {
  max-width: 500px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  background: #ffb703;
  color: #000;
  border-radius: 30px;
  padding: 12px 20px;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateX(5px);
}

.step .num {
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .works-content {
    flex-direction: column;
    align-items: center;
  }

  .works-right {
    width: 100%;
  }

  .step {
    width: 100%;
  }
}
.trip{
    background-color: rgb(177, 219, 236);
        padding-top: 40px;
    padding-bottom: 40px;
}
.trip .service-card{
    text-align: center;
}
.strip{
    padding-top: 40px;
    padding-bottom: 40px;
}
/* ===== Immediate Legal Help Section ===== */
.legal-help {
  background: #ffb703;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 25px 25px;
  text-align: center;
  color: #000;
  padding: 80px 20px;
  position: relative;
}

.help-container {
  max-width: 700px;
  margin: 0 auto;
}

.help-icon i {
  margin-bottom: 15px;
}

.legal-help h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
}

.feature span {
  margin-right: 6px;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.legal-help p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 25px;
}

.call-btn {
  display: inline-block;
  background: #000;
  color: white;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #081a32;
}

.available-status {
  margin-top: 15px;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
}

.available-status .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00d15d;
  border-radius: 50%;
  margin-right: 6px;
}
/* ===== Footer ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 40px;
  position: relative;
}

.footer-container {
  display: grid;
 
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #cfd9e6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ffb703;
}

/* ===== Floating WhatsApp & Call Buttons ===== */
.whatsapp-btn, .call-btn-float {
  position: fixed;
  right: 25px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  z-index: 1000;
}

.whatsapp-btn {
  bottom: 90px;
  background: #25D366;
}

.call-btn-float {
  bottom: 25px;
  background: #ffb703;
}

.whatsapp-btn img,
.call-btn-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-btn:hover { background: #1ebe5d; }
.call-btn-float:hover { background: #f0a600; }
.faq-section {
    width: 100%;
    min-height: 70vh;
    padding: 40px;
    background-color: #000;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
  }
.ride{
    border-top: 1px solid #fff;
    padding-top: 20px;
}
  .faq-section h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
  }

  .faq-item {
    background: #000;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    background: #000;
    color: white;
  }

  .faq-question:hover {
    color: #ffb703;
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }
    @media only screen and (max-width: 476px){
    h1{
        font-size: 30px !important;
    }
    p{
        text-align: justify !important;
    }
    .faq-section {
        padding: 10px;
    }
    .nav-links{
        display: none;
    }
    .nav-buttons{
      display: none;
    }
    .navbar-toggler{
      background-color: #fff !important;
    }
    .navbar{
      padding: 0px;
    }
    .services{
      padding: 0px;;
      padding-top: 40px;
    }
    .how-it-works{
      padding: 0px;;
      padding-top: 40px;
    }
    .footer {
      padding: 40px 20px;
    }
    }