* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
}

/* navbar css */
.navbar {
    background-color: #2b507f;
    color: #fff;
    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: #fff;
    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: #fff;
    }
    .navbar__links.active {
        display: flex;
    }
}
.navbar__links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.navbar__cta .cta-button {
    background-color: #fff;
    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;
}

/* Icon Buttons */
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    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;
    }
}

/* hero section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    padding-top: 65px;
    column-gap: 20px;
}
@media (max-width: 768px) {
    .hero {
        padding: 0;
        flex-direction: column;
    }
}
.hero__content {
    flex: 1 1 50%;
    max-width: 799px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
}
.hero__ratings {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.avatars {
    display: flex;
    margin-right: 15px;
}
.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -10px;
}
.avatars img:first-child {
    margin-left: 0;
}
.stars {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.star {
    color: #f1c40f;
}
.stars .rating {
    font-weight: 600;
    margin-left: 5px;
    font-size: 14px;
}
.stars .reviews {
    margin-left: 5px;
    font-size: 11px;
    color: #cbd4e1;
    letter-spacing: 1px;
}
.stars a {
    color: #fff;
    text-decoration: none;
}
.hero__heading {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
}
.hero__subheading {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 30px;
    /* border-bottom: 1px solid #a6a6a626; */
    padding-left: 20px;
}
 .hero__subhead {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #a6a6a626;
    padding-left: 20px;
}
.hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rate-info {
    font-size: 14px;
    color: #fff;
}
.rate-info strong {
    font-size: 18px;
    color: #ffd700;
    font-weight: 600;
}
.cta-btn {
    background-color: #ffd700;
    color: #000;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}
.cta-btn:hover {
    background-color: #f1c40f;
}
.hero__image {
    flex: 1 1 50%;
    text-align: center;
}
.first-cont {
    background-color: rgba(255, 255, 255, 0.07);
}
.second-cont {
    width: 92%;
    background-color: rgba(255, 255, 255, 0.048);
    width: 700px !important;
    left: 15px;
}
.first-cont, .second-cont {
    position: relative;
    display: flex;
    justify-content: end;
    border-radius: 20px;
    width: 718px;
    left: 16px;
}
.first-cont svg, .second-cont svg {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}
.first-cont svg {
    top: 30%;
}
.second-cont svg {
    top: 50%;
}
.hero__image img {
    width: 95% !important;
    margin-left: auto;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .navbar__cta .cta-button {
        margin-right: 0;
    }
    .hero {
        flex-direction: column;
    }
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    .hero__cta-row {
        flex-direction: column;
    }
    .hero__image {
        margin-top: 30px;
        /* width: 90%; */
        padding-bottom: 30px;
    }
    .hero__image img, .second-cont {
        width: 100%;
        margin-bottom: 35px;
    }
    .first-cont, .second-cont {
        width: 355px !important;
        left: 0;
    }
    .hero__image img {
        width: 100% !important;
    }
    .first-cont svg, .second-cont svg {
        top: 100%;
        transform: translateY(-50%) rotate(90deg);
    }
    .first-cont svg {
        left: 60%;
    }
    .second-cont svg {
        left: 30%;
    }
}

/* trusted-section */
.trusted-section {
    padding: 40px 20px;
    text-align: center;
}
.trusted-section h2 {
    color: #1e3a5fc9;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 40px;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 85px;
}
.partner-logos img {
    max-height: 28px;
    filter: grayscale(100%);
    opacity: 13;
    transition: all 0.3s ease;
}
.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 768px) {
    .partner-logos {
        gap: 30px;
    }
    .partner-logos img {
        max-height: 30px;
    }
}
@media (max-width: 480px) {
    .trusted-section h2 {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .partner-logos {
        gap: 20px;
    }
}

/* main-section css */
.main-section {
    padding: 0 40px;
    max-width: 1424px;
    margin: auto;
    text-align: center;
}
.main-heading {
    font-size: 2.8rem;
    font-weight: 600 !important;
    margin-bottom: 40px;
    text-align: left !important;
    color: #1e3a5f;
    margin-top: 55px;
}
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: space-between;
    align-items: start;
}
.left-side {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.main-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.certifications {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 6px;
    min-width: 350px;
}
.cert img {
    max-height: 40px;
    object-fit: contain;
}
.cert p {
    margin: 0;
    font-size: 12px;
    color: #333;
    max-width: 100px;
    padding-top: 3px;
}
.right-side {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.card {
    background-color: #f5f9fc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #1e3a5fab;
}
.card .highlight {
    font-size: 2.8rem;
    font-weight: 600;
    color: #3182ce;
    text-wrap: nowrap;
    margin-bottom: 10px;
}
.card .desc {
    font-size: 0.8rem;
    color: #1e3a5fbb;
    line-height: 1.4;
}

/* why-section */
.why-section {
    text-align: center;
    padding: 60px 20px;
    margin: auto;
    background-color: #f8fafc;
}
.why-section h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1e3a5f;
}
.subtitle {
    color: #1e3a5fcf;
    font-size: 1rem;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}
.feature-box {
    background-color: #ffffff;
    padding: 24px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.feature-box .icon {
    font-size: 26px;
    color: #0074e8;
    margin-bottom: 12px;
}
.feature-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e3a5f;
}
.feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1e3a5fc2;
}

/* payment-banner */
.payout-banner {
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 70px;
    padding: 50px 30px;
    border-radius: 25px;
    background-image: url("/asset-home/home-img/image - 2025-07-17T164742.519.webp"), linear-gradient(to right, #203e66, #3076bb);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    text-align: center;
}
.payout-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-top: 20px;
}
.payout-content p {
    font-size: 1rem;
    color: #d3e0ed;
    margin-bottom: 30px;
    line-height: 1.6;
}
.btn-yellow {
    background-color: #ffce00;
    color: #1e3a5f;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn-yellow:hover {
    background-color: #e5b800;
}
.heading-edit {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    color: #1e3a5f;
}
.factoring-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 92px;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    flex-wrap: wrap;
}
.factoring-details {
    flex: 1 1 50%;
}
.factoring-details h1 {
    color: #203e66;
    margin-bottom: 30px;
}
.factoring-item {
    display: grid;
    grid-template-columns: 40px auto;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}
.factoring-item h3 {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 5px;
}
.factoring-item p {
    color: #1e3a5fb3;
    font-size: 15px;
    line-height: 1.4;
}
.factoring-cta {
    background: #ffd500;
    color: #1e3a5f;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    margin-left: 50px;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 30px;
    cursor: pointer;
}
.factoring-image-box {
    flex: 1 1 40%;
    position: relative;
}
.fuel-photo {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.fuel-card-info {
    background: #e9f0f3db;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 12px;
    position: absolute;
    bottom: 16px;
    left: 56px;
    right: 16px;
    display: flex;
    width: 400px;
}
.fuel-card-info p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #203e66;
    width: 140px;
    padding-top: 20px;
    text-align: center;
}
.fuel-card-info span {
    color: #3182ce;
}
.fuel-card {
    background: #3076bb;
    color: #1e3a5f;
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 190px;
}
.card-type {
    font-size: 10px;
    opacity: 0.9;
}
.card-number {
    font-size: 14px;
    margin: 8px 0;
    letter-spacing: 1px;
}
.card-holder {
    font-size: 10px;
    opacity: 0.9;
}
.card-bank {
    font-size: 10px;
    opacity: 0.9;
}

/* how-it-works-section */
.how-it-works-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.driver-image {
    width: 100%;
    object-fit: cover;
}
.rate-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: #fff;
    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: #fff;
    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: #fff;
    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);
}
@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: 1.75rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .driver-image {
        height: 300px;
    }
    .rate-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .rate-text {
        font-size: 0.8rem;
    }
    .step {
        gap: 1rem;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .steps {
        gap: 2rem;
    }
}

/* testimonial */
.reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.main-heading-1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 60px;
}
.feedback-layout {
    margin-bottom: 40px;
}
.review-box {
    background: #fff;
    padding: 30px;
    margin-right: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}
.rating-display {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.rating-icon {
    width: 20px;
    height: 20px;
    background-color: #ffc107;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.feedback-content {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.user-details {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #dee2e6;
    background-size: cover;
    background-position: center;
}
.user-data h4 {
    color: #1e3a5f;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.user-data p {
    color: #6c757d;
    font-size: 0.875rem;
}
.navigation-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.indicator-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.indicator-circle.current {
    background-color: #1e3a5f;
}

/* Avatar images */
.mike-avatar {
    background-image: url("/asset-home/home-img/image - 2025-07-18T114018.963.webp");
}
.sarah-avatar {
    background-image: url("/asset-home/home-img/review_img1.jpg");
}
.david-avatar {
    background-image: url("/asset-home/home-img/review_img2.jpg");
}
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* page-wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.page-wrapper-container {
    background-color: #f3f7fb;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 50px;
}
.hero-heading-1 {
    text-align: center;
   font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 60px;
    margin-top: 100px;
}
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}
.support-panel {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 20px;
}
.agent-info {
    margin-bottom: 40px;
}
.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto -7px;
    position: relative;
    overflow: hidden;
}
.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background-color: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
}
.agent-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: -3px;
    margin-top: 5px;
}
.agent-role {
    font-size: 0.9rem;
    opacity: 0.9;
}
.help-section h2 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}
.help-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 30px;
}
.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:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.question-card {
    overflow: hidden;
    transition: all 0.3s ease;
}
.question-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.question-header {
    padding: 20px 25px;
    border-radius: 12px;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.question-header:hover {
    background-color: #f8fafc;
}
.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6b7280;
}
.question-card.expanded .dropdown-icon {
    transform: rotate(180deg);
}
.answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #3182ce;
}
.question-card.expanded .answer-panel {
    max-height: 200px;
    border-radius: 12px;
    margin-top: 10px;
}
.answer-text {
    padding: 20px 25px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .question-card {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .answer-text {
        margin-top: 1rem;
    }
    .banner-zone {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .guide-item {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .application-box {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .hero-heading-1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .support-panel {
        position: static;
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

/* knowledge-hub */
.knowledge-hub {
    max-width: 1200px;
    margin: 0 auto;
}
.banner-zone {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    margin-top: 100px;
}
.main-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e3a5f;
    /* margin-bottom: clamp(1rem, 2vw, 1.5rem); */
}
.description-block {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #1e3a5fb3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.resource-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: stretch;
}
.guide-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.guide-item:hover {
    transform: translateY(-4px);
}
.visual-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.topic-label {
    position: absolute;
    top: 12px;
    left: 13px;
    background-color: #3182ce;
    color: #fff;
    padding: 4px 6px;
    border-radius: 30px;
    font-size: clamp(0.75rem, 1.5vw, -2.125rem);
    font-weight: 500;
}
.text-section {
    padding-top: clamp(1.25rem, 3vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.timestamp {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: #1e3a5f;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}
.headline {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #1e3a5f;
    line-height: 1.3;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}
.summary {
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    color: #64748b;
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e3a5f;
    font-weight: 500;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}
.action-link:hover {
    color: #1e40af;
    gap: 12px;
}
.pointer {
    transition: transform 0.3s ease;
}
.action-link:hover .pointer {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .brand-section {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .menu-column {
        width: 48%;
    }
    .contact-section {
        width: 100%;
        margin-top: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    .resource-layout {
        grid-template-columns: 1fr;
    }
}

.registration-section {
    background-color: #f3f7fb;
    padding-top: 200px;
    padding-bottom: 200px;
}
.registration-hub {
    max-width: 900px;
    margin: 0 auto;
}
.page-headline {
    text-align: center;
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    letter-spacing: -0.025em;
}
.application-box {
    background: #fff;
    border-radius: 20px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}
form {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
div.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10p;
}
.input-container {
    display: flex;
    flex-direction: column;
}
.field-title {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    font-weight: 500;
    color: #1e3a5f;
    margin-bottom: clamp(0.625rem, -1.75vw, -3.125rem);
}
.form-control {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: #f8fafc;
    transition: all 0.3s ease;
    color: #374151;
    margin-bottom: 15px;
}
.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.form-control::placeholder {
    color: #9ca3af;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}
.section-title-1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.select-field {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #9ca3af;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    margin-bottom: 15px;
}
.select-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.text-area {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    color: #374151;
}
.text-area:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.text-area::placeholder {
    color: #9ca3af;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}
.phone-group {
    display: flex;
    border-radius: 10px;
    background-color: #f8fafc;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.phone-group:focus-within {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.country-selector {
    padding: clamp(0.4rem, 1.75vw, 1.125rem);
    border: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    color: #374151;
    font-weight: 500;
    overflow: hidden;
}
.phone-field {
    flex: 1;
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: inherit;
    transition: all 0.3s ease;
    color: #374151;
}
.phone-field:focus {
    outline: none;
}
.phone-field::placeholder {
    color: #9ca3af;
}
.agreement-area {
    margin: clamp(1.75rem, 3vw, 2.25rem) 0;
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.agreement-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
}
.agreement-label {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    color: #1e3a5f;
    line-height: 1.6;
    cursor: pointer;
}
.privacy-link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}
.privacy-link:hover {
    color: #1d4ed8;
}
.primary-button {
    width: 100%;
    background-color: #fbbf24;
    color: #1f2937;
    border: none;
    padding: clamp(1rem, 2.25vw, 1.25rem) clamp(1.75rem, 3vw, 2.25rem);
    border-radius: 30px;
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}
.primary-button:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}
.primary-button:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .phone-group {
        flex-direction: row;
    }
}

.payout-banner-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 70px;
    padding-top: 35px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 25px;
    background-image: url("/asset-home/home-img/image - 2025-07-17T164742.519.webp"),linear-gradient(to right, #203e66, #3076bb);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}
.payout-content-1 {
    text-align: left;
}
.text-edit {
    margin-bottom: 20px;
    font-size: 31px;
}
.payout-content-1 p {
    margin-bottom: 40px;
}
.image-edit {
    width: 150px;
    padding-right: 20px;
}
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* footer */
.site-footer {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    color: #fff;
    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: #fff;
    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;
}
.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
.footer-edit {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    gap: 2rem;
}
.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: #fff;
    text-decoration: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.menu-link:hover {
    opacity: 1;
    transform: translateX(4px);
}
.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: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.legal-link:hover {
    opacity: 1;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 2.5rem);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .legal-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer-edit {
        display: flex;
        justify-content: space-between;
    }
    .right-side {
        grid-template-columns: 1fr;
    }
    form {
        flex-direction: column;
    }
    .payout-banner-2 {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .image-content {
        display: flex;
    }
}
.svg-styling {
    border: 1px solid #c8c3c33d;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 40px;
}
@media (max-width: 768px) {
    .hero__ratings {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-top: 4rem;
        margin-right: 2.5rem;
        padding-left: 20px;
    }
    .hero__ratings .avatars {
        display: flex;
    }
    .hero__ratings .avatars img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
    }
    .hero__ratings .stars {
        text-align: left;
        font-size: 1px;
    }
    .hero__ratings .stars>div {
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }
    .hero__ratings .stars .star i {
        color: gold;
        font-size: 1rem;
    }
    .hero__ratings .rating {
        font-weight: 600;
    }
    .hero__ratings .reviews {
        font-size: 0.85rem;
        color: #ccc;
    }
    .hero__image img {
        border-radius: 5%;
    }
    .hero__heading {
        font-size: 2rem;
        text-align: left;
        line-height: 1.3;
        /* padding: 0 1rem; */
        margin-top: 1rem;
        word-break: break-word;
        padding-left: 20px;
    }
    .hero__content {
        padding-left: 0 !important;
        text-align: left;
    }
    .rate-info strong {
        padding-left: 2.5rem;
    }
    .partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row */
        gap: 2rem;
        padding: 0 1rem;
    }
    .partner-logos img {
        width: 100%;
        max-width: 100%;
        /* Ensures it fits its container */
        height: auto;
        /* Keeps aspect ratio */
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .trusted-section h2 {
        text-align: center;
        padding: 0 1rem;
        font-size: 1rem;
    }
    .image--none {
        display: none !important;
    }
    .mobile-break {
       display: inline;
    }
    .main-heading {
        text-align: center;
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
    .card h4 {
        font-size: 0.8rem;
    }
    .card .highlight {
        font-size: 2rem;
    }
    .why-section h2 {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .feature--box__styling {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    .payout-banner {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .factoring-wrapper {
        display: flex;
        flex-direction: column-reverse;
        padding: 10px;
        gap: 2rem;
    }
    .factoring-image-box {
        width: 100%;
        text-align: center;
    }
    .fuel-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .factoring-details {
        display: flex;
        flex-direction: column;
    }
    .factoring-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        background: #f9f9f9;
        border-radius: 10px;
    }
    .factoring-item svg {
        width: 80px;
        height: 40px;
    }
    .factoring-item h3 {
        font-size: 1.1rem;
        margin: 0 0 0.5rem 0;
    }
    .factoring-item p {
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.4;
    }
    .factoring-cta {
        width: 100%;
        padding: 1rem;
        font-weight: 600;
        font-size: 1rem;
        color: #1e3a5f;
        border: none;
        border-radius: 30px;
        margin-top: 1.5rem;
        cursor: pointer;
        margin-left: 0;
        text-align: center;
    }
    .registration-section {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .work-section {
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    .text-intro {
        text-align: center;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .image-container {
        text-align: center;
    }
    .driver-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .steps {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        border-radius: 10px;
    }
    .section__title__font {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .step-number {
        font-size: 1.1rem;
        background-color: #3182ce;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        font-weight: bold;
    }
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    .step-content p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.4;
    }
    .cta-button {
        /* margin-top: 1.5rem; */
        padding: 0.75rem 1.2rem;
        font-size: 1rem;
        color: #1e3a5f;
        width: 100%;
        text-decoration: none;
        border-radius: 30px;
        display: inline-block;
    }
    .hidden--image {
        display: block !important;
        margin-bottom: 2rem !important;
    }
    .left__side__image {
        display: none !important;
    }
    .layout-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .questions-list {
        order: 1;
    }
    .support-panel {
        order: 2;
        margin-top: 2rem;
    }
    .agent-info, .help-section {
        text-align: center;
    }
    .agent-info img {
        width: 80px;
        height: 80px;
    }
    .cta-button {
        margin-top: 1rem;
    }
}
.hidden--image {
    display: none;
}
@media (min-width: 770px) {
    .mobile-break {
        display: none !important;
    }
}
.section__title__font {
    font-size: 1.5rem;
}
.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;
}
.navbar .cta-button {
    margin-top: 0;
}
.swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.cta-btn {
    cursor: pointer;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 40px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
.grid-center-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-bottom: 40px;
    padding-top: 50px;
    width: 1105px;
    margin: 0 auto;
}
.grid.grid-center {
    max-width: 880px; /* Adjust based on item width + gaps */
}
.trusted-section {
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.trusted-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}

.trusted-section .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* centers all rows including the last */
    align-items: stretch;
}
.trust-item {
    /* flex: 0 0 260px;
    width: 100%; */
    flex: 1 1 260px; /* responsive: min 260px width, expands if space available */
    max-width: 300px; /* optional: limit size */
    display: flex;
    flex-direction: row; /* stack icon & text */
    justify-content: space-between; /* spread content */
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.trust-item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
.trust-item:hover {
    border-color: #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}
.icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}
.content1 h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}
.content1 p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}
@media (max-width: 768px) {
    .grid-center-wrapper {
        display: block;
        width: 314px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .grid-center-wrapper .trust-item {
        margin-top: 30px;
    }
}



.eld-banner {
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 70px;
    padding: 30px 30px;
    border-radius: 25px;
    /* background: linear-gradient(90deg, #666ba0bd 25%, #53acb8ab 100%); */
    background: linear-gradient(90deg, #009644 25%, #18adc0 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}
.eld-banner .text-edit {
    text-align: center;
}
.eld-banner .container {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 30px; 
}
.eld-banner .left-side {
    display: flex;
    align-items: center; 
}
.eld-banner .eld-content {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}
.eld-banner .right-side {
    display: block;
}
.eld-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-top: 20px;
}
.eld-content ul {
    list-style: none;
    padding-left: 54px;
    /* margin-bottom: 30px; */
}
.eld-content li {
    margin-bottom: 9px;
    font-size: 1.01rem;
    text-align: left;
    gap: 0.5rem;
    color: #fff;
}
/* .text-success {
    color: #198754 !important;
} */
.me-2 {
    margin-right: .5rem !important;
}
.eld-banner .image-section img {
    width: 450px;
}
.eld-banner .cta-btn {
    border-radius: 10px;
}
.btn-custom-order {
    background-color: #e4fbfe;
    color: #148899;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px; 
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem !important;
}
/* .btn-custom-order:hover {
    background-color: #e5f6fb;
    color: #148899;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
} */
.hero-buttons {
    margin: 30px 0 0;
}
.feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.562);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(57, 183, 215, 0.3);
}
.feature-icon i {
    font-size: 1.5rem;
    color: #39b7d7;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(57, 183, 215, 0.15);
    border-color: rgba(57, 183, 215, 0.3);
}
.card {
    background: linear-gradient(to bottom, rgba(220, 244, 247, 1) 0%, rgba(220, 244, 247, 0.4) 100%);
    padding: 10px 15px;
}
.feature-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #39b7d721;
    border-radius: 10px;
}
.feature-card {
    background: linear-gradient(180deg, rgba(220, 244, 247, 0.8) 0%, rgba(220, 244, 247, 0.3) 100%);
    border: 1px solid rgba(57, 183, 215, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.section-title1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}
.platform-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: #334053;
    background: #fff;
    z-index: 0;
    border: 1px solid #00c2a8;
    line-height: 1;
}
.platform-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: linear-gradient(to right, #00c96b, #00b5e2);
    /* border-top-left-radius: inherit;
    border-top-right-radius: inherit; */
    z-index: 1;
}
.platform-tag i {
    color: #00c96b;
    font-size: 1.2rem;
    margin-right: 6px;
    line-height: 1;
}
.fuel_sec h4 {
    font-size: 40px;
    font-weight: 600;
    color: #1e3a5f;
    /* text-wrap: nowrap; */
    margin-bottom: 10px;
}
.fuel_sec p {
    font-size: 15px;
    color: #1e3a5fb3;
    line-height: 1.4;
}
.fuel_sec {
    padding: 0 40px;
    max-width: 1424px;
    margin: 64px auto;
    text-align: center;
}
/* .fuel_sec .right-side {
    display: block;
} */

.fuel_sec .container {
    display: flex;
    align-items: center; /* Vertically center both left and right side */
    justify-content: center; /* Optional: space content evenly */
    gap: 40px; /* Optional: space between image and text */
}

.fuel_sec .left-side {
    flex-shrink: 0; /* Keep image size fixed */
}

.fuel_sec .right-side {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center text inside */
    text-align: left; /* Optional: keep text aligned left */
}
@media (max-width: 768px) {
    .eld-banner {
        margin-left: 1rem;
        margin-right: 1rem;
        display: block;
    }
    .fuel_sec .right-side {
        text-align: center;
    }
    .eld-banner .image-section img {
        width: 380px;
    }
    .eld-content ul {
        padding-left: 0;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-custom-order {
        margin-left: 0 !important;
        display: block;
        font-size: 1rem;
        text-align: center;
        width: 100%;
        margin-top: 10px;
        padding: 1rem;
    }
    .eld-banner .cta-btn {
        text-align: center;
    }
}


@media (max-width: 820px) {
    .first-cont, .second-cont {
        width: 358px;
        left: 16px;
        /* height: 382px; */
    }
}
@media (max-width: 820px) {
    .first-cont, .second-cont {
        width: 463px;
        left: 16px;
        /* height: 382px; */
    }
}