
    .choose-item{
        height:300px;
        background-color:white;
        transition: all 0.4s ease;
        border-radius:20px;
            border: 1px solid #0f6db8;
    }
    .choose-item:hover{
        
        transform: translateY(-8px);
    }
    .work-div{
        border-radius:15px;
        height:260px;
    }
    /* Hover effects and subtle animation */
  .feature-card {
    transition: all 0.4s ease;
        border-radius:20px;
            border: 1px solid #0f6db8;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(28, 93, 140, 0.3);
  }

  .feature-icon {
    transition: transform 0.4s ease;
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.1);
  }
    .btn-download {
    display: inline-block;
    background-color: #0f6db8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 93, 140, 0.3);
  }

  .btn-download:hover {
    background-color: #154b70;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(28, 93, 140, 0.4);
  }
  /* ===== FAQ SECTION STYLING ===== */
.faq-section {
  background: linear-gradient(135deg, #0f6db8, #1c5d8c);
  padding: 80px 0;
  position: relative;
}

.faq-section h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2.3rem;
}

.faq-section p {
  color: #e6e7e7;
  font-size: 1rem;
  margin-top: 10px;
}

/* Accordion container */
.accordion {
  background: transparent;
  border: none;
  max-width: 900px;
}

/* Each card-like item */
.accordion-item {
  border: none;
  background: #ffffff;
  border-radius: 15px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Accordion header */
.accordion-header {
  background: transparent;
  border-radius: 15px;
}

/* Button inside header */
.accordion-button {
  background-color: #fff;
  border: none;
  box-shadow: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Expanded state */
.accordion-button:not(.collapsed) {
  background-color: #e9f3fa;
  color: #0f6db8;
  border-bottom: 1px solid #d8ecf9;
}

/* Icon color change */
.accordion-button::after {
  filter: invert(37%) sepia(90%) saturate(418%) hue-rotate(175deg)
    brightness(95%) contrast(90%);
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Accordion body */
.accordion-body {
  background: #fff;
  padding: 1rem 1.5rem 1.5rem;
  color: #555;
  font-size: 0.95rem;
  border-top: 1px solid #e9f3fa;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }

  .accordion-button {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

    .services-line .divider {
    color: #0f6db8;
    font-weight: bold;
    font-size: 18px;
  }
  .service-item{
      padding:30px;
  }
  .service-item span {
    transition: color 0.3s ease;

  }

  @media (max-width: 767px) {
    .services-line .divider {
      display: none;
    }
  }
   .shadow-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(28, 93, 140, 0.15);
    transition: all 0.3s ease;
        border: 1px solid #0f6db8;
  }

  .shadow-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(28, 93, 140, 0.25);
  }
  .bulk-content p{
      text-align:justify;
  }
      .social {
    color:#fff;
    font-size:22px;
    transition: all 0.3s ease;
  }
  .social:hover { color:#ffcc00; }
  .ride-section {
  background-color: #f9fafb;
  padding: 60px 0;
}

#download-now .col-md-4 div:hover {
  background: #0f6db8;
  transform: translateY(-5px);
}
#download-now .btn {
  border-radius: 25px;
  font-weight: 600;
}

/* ===== GENERAL SECTION STYLE ===== */
.j-section {
  padding: 80px 0;
}

/* ===== CENTER INTRO ===== */
.intro-section {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
    background-color:#eef6fb;
    
}
.intro-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0f6db8;
  margin-bottom: 20px;
}
.intro-section p {
  font-size: 18px;
  color: #555;
}

/* ===== STEP SECTIONS ===== */
.j-section h4 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}
.j-section p {
  font-size: 23px;
  color: #555;
}

/* ===== IMAGE GRID ===== */
.image-grid {
  display: flex;
  justify-content:center;
  gap: 20px;
}
.image-grid img {
  width: 70%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

/* ===== WHY USERS why SECTION ===== */
.why-section {
  background: #eef6fb;
  text-align: center;
}
.why-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: #0f6db8;
  margin-bottom: 30px;
}
.why-section ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.why-section li {
  background: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  font-size: 17px;
}
.why-section p {
  margin-top: 25px;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}
.download-app-btn{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;
    background: none;
    padding: 0px 25px; 
    border-radius: 50px; 
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width:auto;
}

.download-app-btn .img{
    width:30px;
}
.join-app-btn{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;
    background: none;
    padding: 0px 25px; 
    border-radius: 50px; 
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width:auto;
}

.join-app-btn .img{
    width:30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .j-section {
    padding: 60px 0;
  }
  .intro-section h2 {
    font-size: 36px;
  }
  .logo{
      width:30%;
  }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .image-grid {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }
.bottom-row{
        gap:2rem;
    }
}
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
 .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .bottom-row{
        gap:2rem;
    }
}
@media (min-width: 768px) {
     
        .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1400px) {
     
        .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33%;
        max-width: 33%;
    }
}

@media (max-width: 1000px) {
    .header-bottom .header-area .logo a img {
        width: 100%;
    }
        .maps-shape {
        display: block;
    }
}
@media (max-width: 500px) {
    .header-bottom .header-area .logo a img {
        width: 80%;
    }
}
@media (max-width: 500px) {
.j-section p {
  font-size: 17px;
  color: #555;
}
.image-grid {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.bottom-row{
    gap:30px;
}
.download-app-btn {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: none;
    padding: 0px 9px;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 
ease;
    font-size: 15px;
    height: 40px;
    width:auto;
    margin-top:10px;
}
.download-app-btn .img{
    width:20px;
}
.join-app-btn {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: none;
    padding: 0px 9px;
    border-radius: 50px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 
ease;
    font-size: 15px;
    height: 40px;
    margin-top:10px;
}
.join-app-btn .img{
    width:20px;
}
.j-section h4 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}
.image-grid img {
    width: 95%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
    .maps-shape {
        display: block;
    }
}

.join-now-btn {
    padding: 8px 32px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #0f6db8;
    color: #0f6db8;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.join-now-btn:hover {
    background: #0f6db8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(15,109,184,0.35);
}

.container {
        max-width: 1250px;
    }




/*PRIVACY POLICY */
.policy-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* TITLE */
.policy-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
    text-align:center;
    margin-top:0px;
}

/* META */
.policy-meta {
    display: flex;
    /*gap: 20px;*/
    font-size: 17px;
    color: #777;
    margin-bottom: 30px;
    flex-direction:column;
}

/* BOX STYLE */
.policy-box {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid #0f6db8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-top:32px;
}

/* HEADINGS */
.policy-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

/* TEXT */
.policy-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    margin-top:-5px;
}

/* LIST */
.policy-box ul {
    padding-left: 18px;
    margin-top: 10px;
}

.policy-box li {
    margin-bottom: 6px;
}

/* NOTE */
.policy-note {
    margin-top: 10px;
    color: #0f6db8;
    font-weight: 500;
}

/* DEFINITION LIST */
.policy-list p {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

/* SUB BOX */
.sub-box {
    background: #f9fbff;
    padding: 15px 18px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #e6ecff;
    padding-top:25px;
}

/* SUB HEADING */
.sub-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #0f6db8;
    font-weight: 600;
}

/* LIST INSIDE */
.sub-box ul {
    padding-left: 18px;
}

.sub-box li {
   margin-bottom: 0px;
    font-size: 16px;
    list-style:inside;
    padding:0px;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
}

.policy-table th,
.policy-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.policy-table th {
    background: #f1f5ff;
}
