* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

/* navbar css */

.navbar {
    background-color: #2b507f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar__logo span {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.navbar__links {
    list-style: none;
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background: rgb(55, 104, 168);
        /* optional */
        position: absolute;
        top: 60px;
        /* adjust as per your navbar height */
        left: 0;
        width: 100%;
        z-index: 10;
        padding: 20px;
    }

    .navbar__links.active a {
        color: white;
    }

    .navbar__links.active {
        display: flex;
    }
}

.navbar__links li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.navbar .cta-button {
    margin-top: 0;
}
.navbar__cta .cta-button {
    background-color: white;
    color: #154f7a;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    margin-right: 10px;
}

.navbar__cta .cta-button:hover {
    background-color: #e0e0e0;
}
.cta-button {
    background-color: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
/* Icon Buttons */
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #154f7a;
    cursor: pointer;
    border: none;
    margin-left: 10px;
}

.icon-btn.phone {
    background-color: #ffd700;
    color: #154f7a;
}

.icon-btn i {
    font-size: 18px;
}

/* Hide mobile icons on desktop */
.mobile-cta {
    display: none;
}

/* ✅ Responsive behavior */
@media screen and (max-width: 768px) {
    .navbar__links,
    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: flex;
    }
    .navbar__cta .cta-button {
        margin-right: 0;
    }
}







/* how-it-works-section */

.how-it-works-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 50px auto 0;
}

.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.hidden--image {
    display: none;
}
.driver-image {
    width: 100%;
    object-fit: cover;
}

.rate-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.rate-text {
    font-size: 0.9rem;
    color: #1f2937;
}

.rate-text .highlight {
    font-weight: 700;
    color: #1e40af;
}

.content {
    padding-left: 2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 400px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 500;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3182ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #1e3a5fb3;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-button {
    background: #fbbf24;
    color: #1f2937;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}
.step {
    position: relative;
    padding-left: -1.6rem;
}

.step-number {
    position: relative;
    z-index: 2;
    background-color: #3182ce;
    width: 45px;
    height: 45px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #0077cc;
    font-weight: bold;
    color: #ffffff;
}
/* Vertical line style */
.step::after {
    content: "";
    position: absolute;
    top: 36px;
    left: 24px;
    /* Align with center of .step-number */
    width: 2px;
    height: calc(137% - 36px);
    background: linear-gradient(to bottom, #3182ce 0%, #f8fafc 100%);
}

/* Remove line from the last step */
.step:last-child::after {
    display: none;
}

.step-line {
    position: absolute;
    top: 36px;
    left: 24px;
    width: 2px;
    height: calc(100% - 36px);
    background-color: #0077cc;
    z-index: 1;
}


@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }

    .content {
        padding-left: 0;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .driver-image {
        height: 300px;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .image-container {
        text-align: center;
    }
    .hidden--image {
        display: block !important;
        margin-bottom: 2rem !important;
    }
    .work-section {
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .rate-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .left__side__image {
        display: none !important;
    }

    .rate-text {
        font-size: 0.8rem;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .steps {
        gap: 2rem;
    }
}



/* footer */
.site-footer {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    color: white;
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
}
.footer-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.brand-section {
    max-width: 400px;
}
.company-logo {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.05em;
}
.brand-description {
    font-size: clamp(0.875rem, 0.5vw, 0rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.menu-column {
    display: flex;
    flex-direction: column;
}
.column-header {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}
.menu-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.contact-section {
    display: flex;
    flex-direction: column;
}
.contact-header {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.contact-details {
    display: flex ;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
}
.contact-item {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    opacity: 0.9;
}
.contact-item.highlight {
    opacity: 1;
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright-text {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
}
.legal-links {
    display: flex ;
    gap: clamp(1rem, 2vw, 1.5rem);
}
.legal-link {
    color: white;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    .brand-section {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .menu-column {
        width: 48%;
    }
    .contact-section {
        width: 100%;
        margin-top: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .legal-links {
        justify-content: center;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
}