* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
.hero-section .container {
    max-width: 1176px;
}
.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/banner01.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 1;
}

.map-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 14rem;
}

.hero-left {
    flex: 1;
    max-width: 500px;
    text-align: center;
    margin-top: -104px;
}

.hero-tagline {
    font-size: 41px;
    font-weight: 700;
    color: #4A5567;
    /* font-style: italic; */
    margin-bottom: 0;
}

.hero-amount {
    font-size: 8rem;
    font-weight: 800;
    color: #4A5567;
    line-height: 1;
    margin: 0;
    /* letter-spacing: -2px; */
}

.hero-subtitle {
    font-size: 35px;
    font-weight: 600;
    color: #4A5567;
    /* margin-top: 5px; */
    margin-bottom: 30px;
}

.btn-see-how {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 154, 138, 0.3);
    border: none;
    outline: none;
    margin-top: 13px;
    padding: 10px 48px 10px 48px;
}

.btn-see-how span:first-child {
    padding: 26px 48px 26px 48px;
}

.btn-see-how .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    /* background-color: #2d3748; */
    border-radius: 50%;
    margin: 4px;
    font-size: 22px;
    position: relative;
    right: 21px;
}
.play-icon img {
    width: 50px;
}
.btn-see-how:hover {
    background: linear-gradient(90deg, #007a3a 0, #148899 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 68, .4);
    color: #fff;
}

.hero-right {
    flex: 1;
    max-width: 420px;
}

.download-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    background-color: #1a9a8a;
    color: #fff;
    text-align: center;
    padding: 7px 20px;
    font-size: 30px;
    font-weight: 600;
    /* font-style: italic; */
}

.card-body {
    padding: 25px 30px 30px;
    text-align: center;
}

.card-title {
    font-size: 27px;
    font-weight: 700;
    color: #4A5567;
    margin-bottom: 8px;
    /* line-height: 1.3; */
}

.card-subtitle {
    font-size: 18px;
    color: #4A5567;
    margin-bottom: 20px;
    line-height: 23px;
    font-weight: 500;
    margin-top: 6px;
}

.fuel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #1a9a8a;
    border-radius: 12px;
    margin-bottom: 20px;
}
.fuel-icon img {
    width: 70px;
}

.fuel-icon i {
    font-size: 26px;
    color: #fff;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.store-btn img {
    width: 100%;
}
.store-btn i {
    font-size: 33px;
}

.store-btn .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-btn .small-text {
    font-size: 11px;
    font-weight: 400;
}

.store-btn .big-text {
    font-size: 18px;
    font-weight: 600;
}

.store-btn.app-store {
    background-color: #000;
    color: #fff;
}

.store-btn.app-store:hover {
    background-color: #000;
}

.store-btn.google-play {
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
}

.store-btn.google-play:hover {
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.benefit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
}
.benefit img {
    width: 15px;
}
.benefit i {
    color: #1a9a8a;
    font-size: 14px;
    font-weight: 700;
}

.free-forever {
    font-size: 12px;
    color: #4A5567;
    margin: 0;
    border-radius: 6px;
    background: #C6E6CE;
    padding: 10px 0;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
       grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
        margin-top: 0;
    }

    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .hero-amount {
        font-size: 60px;
    }

    .hero-tagline,
    .hero-subtitle {
        font-size: 24px;
    }

    .btn-see-how {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-amount {
        font-size: 60px;
    }

    .hero-tagline,
    .hero-subtitle {
        font-size: 24px;
    }

    .card-body {
        padding: 20px;
    }

    .benefits-row {
        flex-direction: row;
        gap: 8px;
    }
}

/* popup video */
#myModal1 {
    margin-top: 20px;
}
.video-widget {
    width: 1134px;
    height: 615px;
}
.videomodalclose {
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    z-index: 1;
    top: 20px;
    font-size: 23px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 11px;
}
@media (min-width: 992px) {
    #myModal1 .modal-lg, .modal-xl {
        max-width: 1135px;
    }
    #myModal1 .modal-body {
        padding: 0 !important;
    }
}
@media (max-width: 767px) {
    .video-widget {
        top: 0px !important;
        left: 0px !important;
    }
    #myModal1 .modal-dialog {
        margin: 160px 17px 0 17px;
    }
    #myModal1 .modal-body {
        padding: 0 !important;
    }
    .videomodalclose {
        background: #fff;
        border-radius: 50%;
        position: absolute;
        right: 2px !important;
        z-index: 1;
        top: 0px !important;
        font-size: 35px;
        cursor: pointer;
    }
}


/* Steps Section */
.pill-label {
    background-color: #16AAB6;
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
    display: block;
    padding: 4px 25px;
    border-radius: 20px;
    font-size: 13px;
    margin: 0 auto 31px auto;
    text-align: center;
    width: fit-content;
}
.section-title1 {
    font-size: 41px;
    text-align: center;
    font-weight: 700;
    color: #4a5568;
}
.section-description {
    font-size: 20px;
    color: #2F3F4F;
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 20px;
    line-height: 1.7;
}
.steps-section {
    padding: 4% 0px 111px;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
    margin-top: 75px;
}

.step-card {
    background-color: #E3F8F1;
    padding: 54px 32px;
    border-radius: 18px;
    text-align: center;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid #8DBCAA; */
    position: relative;
    box-shadow: 3px 3px 7px 9px #D3F0EA;
}

.step-icon {
    position: absolute;
    top: -44px;
    /* right: 45%; */
    right: 0;
    left: 0;
    z-index: 1;
    width: 80px;
    height: 80px;
    background-color: #16AAB6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    /* border: 1px dashed #000; */
}
.step-icon img {
    width: 80px;
}
.step-icon i {
    font-size: 48px;
    color: #fff;
}

.step-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 12px;
    padding-top: 35px;
}

.step-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 311px;
    margin: 0 auto;
}
@media(max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 71px;
    }
    .step-icon {
        right: 0;
        left: 0;
    }
}

/* New to Trucking Section */
.trucking-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(to right, #2d3e50 0%, #3a4f63 100%);
}

.trucking-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/banner02.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.trucking-section .container {
    position: relative;
    z-index: 2;
    max-width: 1285px;
}

.trucking-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.trucking-icon {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #16AAB6 0%, #0FA491 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trucking-icon img {
    width: 200px;
}
.trucking-icon i {
    font-size: 60px;
    color: #fff;
}

.trucking-stats {
    /* flex: 1; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trucking-stats .trucking-title,
.trucking-stats .trucking-description {
    grid-column: 1 / -1;
}

.trucking-title {
    font-size: 51px;
    font-weight: 700;
    color: #fff;
    margin-bottom: -7px;
    line-height: 1.2;
}

.trucking-description {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 945px;
    /* margin-bottom: -4px; */
}

.stat-card {
    background: #405266;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: #fff;
    line-height: 1.4;
}

/* Trucking Section Responsive */
@media (max-width: 992px) {
    .trucking-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .trucking-icon img {
        width: 152px;
    }
    .trucking-title {
        font-size: 32px;
    }

    .trucking-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trucking-stats .trucking-title,
    .trucking-stats .trucking-description {
        grid-column: 1;
    }
}

@media (max-width: 576px) {
    .trucking-section {
        padding: 50px 0;
    }

    .trucking-icon {
        width: 100px;
        height: 100px;
    }

    .trucking-icon i {
        font-size: 45px;
    }

    .trucking-title {
        font-size: 26px;
    }

    .trucking-description {
        font-size: 16px;
    }

    .stat-value {
        font-size: 32px;
    }
}



/* Introducing Fuel Mapping Section */
.fuel-mapping-section {
    padding: 100px 0;
    background-color: #fff;
}

.fuel-mapping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fuel-mapping-left {
    max-width: 580px;
}

.fuel-mapping-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.fuel-mapping-title .text-dark {
    color: #4a5568;
    /* font-style: italic; */
}

.fuel-mapping-title .text-teal {
    color: #12A7A1;
    /* font-style: italic; */
}

.fuel-mapping-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: 0.4px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    /* background-color: #16AAB6; */
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-check img {
    width: 30px;
}
.feature-check i {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.fuel-mapping-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fuel-mapping-right img {
    width: 100%;
}
.map-card {
    background: #2d3e50;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.map-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.map-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.update-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.map-card-body {
    padding: 0 15px;
}

.map-preview {
    position: relative;
    height: 320px;
    background-image: url('https://api.mapbox.com/styles/v1/mapbox/light-v11/static/-122.4194,37.7749,11,0/600x400@2x?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.price-marker {
    position: absolute;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 80px;
}

.price-marker.green {
    border-left: 4px solid #22c55e;
}

.price-marker.red {
    border-left: 4px solid #ef4444;
}

.price-marker .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
}

.price-marker .price span {
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
}

.price-marker .station {
    display: block;
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.map-dot.green {
    background-color: #22c55e;
}

.map-dot.red {
    background-color: #ef4444;
}

.map-card-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.green {
    background-color: #22c55e;
}

.legend-dot.red {
    background-color: #ef4444;
}

/* Fuel Mapping Responsive */
@media (max-width: 992px) {
    .fuel-mapping-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fuel-mapping-left {
        max-width: 100%;
        text-align: center;
    }

    .fuel-mapping-title {
        font-size: 36px;
    }

    .features-list {
        text-align: left;
    }

    .fuel-mapping-right {
        justify-content: center;
    }

    .map-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .fuel-mapping-section {
        padding: 60px 0;
    }

    .fuel-mapping-title {
        font-size: 28px;
    }

    .fuel-mapping-description {
        font-size: 16px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .map-preview {
        height: 250px;
    }

    .map-card-header h3 {
        font-size: 18px;
    }

    .price-marker {
        padding: 6px 10px;
        min-width: 70px;
    }

    .price-marker .price {
        font-size: 14px;
    }
}

/* Simple Steps Section */
.simple-steps-section {
    padding: 0px 0 50px;
    /* background-color: #f8fafb; */
}
.simple-steps-section .container {
    max-width: 1321px;
}
.simple-steps-section .pill-label {
    margin: 0 auto 24px auto;
}
.simple-steps-section .section-title1 {
    margin-bottom: 0;
}
.simple-steps-title {
    font-size: 44px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 12px;
}

.simple-steps-subtitle {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 60px;
}

.simple-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.simple-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px 3px rgb(0 0 0 / 16%);
    transition: all 0.3s ease;
}

.simple-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.step-num img {
    width: 60px;
}
.simple-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color:#4a5568;
    margin-bottom: 22px;
    margin-top: 18px;
}

.simple-step-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Simple Steps Responsive */
@media (max-width: 1200px) {
    .simple-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 24px;
    }
}

@media (max-width: 768px) {
    .simple-steps-section {
        padding: 0px 0 30px;
    }

    .simple-steps-title {
        font-size: 32px;
    }

    .simple-steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .simple-steps-title {
        font-size: 28px;
    }

    .simple-steps-subtitle {
        font-size: 16px;
    }

    .simple-step-card {
        padding: 45px 25px 35px;
    }
}

/* Calculator Section */
.calculator-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, #2d3e50 0%, #3a4f63 100%);
    overflow: hidden;
}

.calculator-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/banner03.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.calculator-section .container {
    position: relative;
    z-index: 2;
}

.calculator-title {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.calculator-subtitle {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.calculator-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
}

.calc-input-group label {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 8px;
    text-align: center;
}

.calc-input-group select {
    padding: 14px 40px 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    text-align: center;
    text-align-last: center;
    transition: all 0.3s ease;
}

.calc-input-group select:hover {
    border-color: #16AAB6;
}

.calc-input-group select:focus {
    outline: none;
    border-color: #16AAB6;
    box-shadow: 0 0 0 3px rgba(22, 170, 182, 0.1);
}

.calculator-result {
    background: #CFF2F8;
    border: 1px solid #16AAB6;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.result-label {
    font-weight: 600;
    display: block;
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 8px;
}

.result-amount {
    display: block;
    font-size: 60px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.1;
}

.result-period {
    font-weight: 600;
    display: block;
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 8px;
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-section {
        padding: 70px 0;
    }

    .calculator-title {
        font-size: 32px;
    }

    .calculator-card {
        padding: 30px 20px;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .result-amount {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .calculator-title {
        font-size: 26px;
    }

    .calculator-subtitle {
        font-size: 16px;
    }

    .result-amount {
        font-size: 36px;
    }
}




/* Solution Section */
.solution-section {
    padding: 50px 0 50px;
    /* background-color: #f8fafb; */
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.solution-card {            
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px 3px rgb(0 0 0 / 16%);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color:#4a5568;
    margin-bottom: 22px;
    margin-top: 18px;
}

.solution-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
/* Simple Steps Responsive */
@media (max-width: 1200px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 24px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 20px 0;
    }
    .solution-section .pill-label {
        margin: 0px auto 10px auto;
    }
    .solution-title {
        font-size: 32px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .solution-title {
        font-size: 28px;
    }

    .solution-subtitle {
        font-size: 16px;
    }

    .solution-card {
        padding: 45px 25px 35px;
    }
}


/* testimonials section */
.section-label1 {
    display: block;
    background: #0fa491;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    /* font-weight: 600; */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin: 0 auto 21px auto;
    text-align: center;
    width: fit-content;
}
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #4a5568;
    /* margin-bottom: 15px; */
    line-height: 1.2;
    text-align: center;
}
.section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    /* max-width: 800px; */
    text-align: center;
}
.testimonials {
    background: white;
    padding-bottom: 100px;
    padding-top: 70px;
}
.testimonials .container {
    max-width: 1440px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(220, 244, 247, .8) 0, rgba(220, 244, 247, .3) 100%);
    border-radius: 15px;
    border: 1px dashed #0000003d;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FF6634;
    font-size: 31px;
    margin-bottom: 15px;
}
.stars img {
    width: 33%;
}
.testimonial-text {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    /* font-style: italic; */
}

.testimonial-author {
    /* border-top: 1px solid #ddd; */
    padding-top: 15px;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0px;
}

.author-title {
    font-size: 14px;
    color: #64748b;
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}

/* Completely Free Section */
.free-section {
    background-color: #d4f1f4;
    padding: 100px 0;
    /* border-top: 4px solid #16AAB6; */
}
.free-section .container {
    max-width: 1395px;
}
.free-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.free-badge {
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    /* background: linear-gradient(135deg, #16AAB6 0%, #0FA491 100%); */
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(22, 170, 182, 0.4);
}

.badge-percent {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

.free-text {
    flex: 1;
}

.free-title {
    font-size: 55px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 15px;
}

.free-description {
    font-size: 21px;
    max-width: 1067px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Free Section Responsive */
@media (max-width: 768px) {
    .free-content {
        flex-direction: column;
        text-align: center;
    }
    .free-section {
        padding: 50px 0;
    }
    .free-title {
        font-size: 28px;
    }

    .free-description {
        font-size: 15px;
    }
}

/* CTA Section */
.cta-section {
    background: #2d3e50;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 20px;
}

.cta-pill {
    display: inline-block;
    background: linear-gradient(90deg, #009644 0%, #18adc0 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 20px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* padding: 18px 35px; */
    border-radius: 10px;
    font-size: 23px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 400px;
}
.cta-btn img {
    width: 100%;
}
.cta-btn i {
    font-size: 40px;
}

/* .cta-btn.ios-btn {
    background-color: #000;
    color: #fff;
} */

/* .cta-btn.ios-btn:hover {
    background-color: #000;
    transform: translateY(-3px);
} */

/* .cta-btn.android-btn {
    background: linear-gradient(90deg, #009644 0%, #18adc0 100%);
    color: #fff;
} */

/* .cta-btn.android-btn:hover {
    background: linear-gradient(90deg, #007a3a 0%, #148899 100%);
    transform: translateY(-3px);
} */

.cta-btn.call-btn {
    background: #C9D9D9;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #000100;
    padding: 18px 35px;
    font-weight: 500;
}

/* .cta-btn.call-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
} */

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 26px;
    }
    .cta-btn {
        font-size: 17px;
    }
}


