.about-section {
    padding: 70px 0;
    background: #fff;
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 48px;
    align-items: center;
}
/* =========================
   LEFT IMAGE
========================= */
.about-image {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.about-image > img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.trusted-box {
    position: absolute;
    left: 28px;
    bottom: 18px;
    width: 255px;
    background: #061529;
    border-radius: 7px;
    padding: 18px 18px 18px;
    color: #fff;
}
.trusted-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trusted-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #8dbb22;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.trusted-heading span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.trusted-heading strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #87b927;
}
.trusted-box p {
    margin-top: 15px;
    margin-left: 52px;
    font-size: 13px;
    line-height: 1.25;
    color: #fff;
}
/* =========================
   RIGHT CONTENT
========================= */
.about-small-title {
    display: inline-block;
    color: #85af27;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
.about-content h2 {
    color: #444;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 13px;
}
.about-description {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.35;
    color: #777;
    margin-bottom: 28px;
}
/* =========================
   FEATURES
========================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 55px;
    row-gap: 24px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.feature-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75833a;
    font-size: 23px;
    background : transparent !important;
}
.feature-item h4 {
    color: #565656;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
}
.feature-item p {
    font-size: 11px;
    color: #777;
    line-height: 1.15;
    max-width: 190px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-image > img {
        height: 420px;
    }
    .about-content h2 {
        font-size: 22px;
    }
}
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    .container {
        width: 92%;
    }
    .about-image > img {
        height: 300px;
    }
    .trusted-box {
        left: 15px;
        bottom: 15px;
        width: 230px;
        padding: 15px;
    }
    .trusted-box p {
        margin-left: 0;
        margin-top: 12px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .feature-item p {
        max-width: 100%;
    }
    .about-small-title {
        font-size: 15px;
    }
    .about-content h2 {
        font-size: 20px;
    }
    .about-description {
        font-size: 13px;
    }
}
.journey-section {
    padding: 45px 0 55px;
}
.journey-section .container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}
/* Heading */
.journey-heading {
    text-align: center;
    margin-bottom: 35px;
}
.journey-heading span {
    display: block;
    color: #86b52a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}
.journey-heading h2 {
    margin: 0;
    color: #242424;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}
.heading-line {
    width: 55px;
    height: 2px;
    background: #a4c861;
    margin: 12px auto 0;
}
/* Timeline */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 15px;
}
/* Horizontal connecting line */
.journey-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: #b9ce90;
    z-index: 0;
}
/* Journey Item */
.journey-item {
    position: relative;
    text-align: center;
    z-index: 1;
}
/* Icon circle */
.journey-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border: 1px solid #a7c870;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    color: #78a924;
    position: relative;
}
/* Small dots between points */
.journey-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    right: -9px;
    width: 8px;
    height: 8px;
    background: #7cab28;
    border-radius: 50%;

    z-index: 3;
}
/* Content */
.journey-content {
    max-width: 190px;
    margin: 0 auto;
}
.journey-content h4 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.journey-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
}
/* Tablet */
@media (max-width: 991px) {
    .journey-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    .journey-timeline::before {
        display: none;
    }
    .journey-item::after {
        display: none;
    }
    .journey-content {
        max-width: 220px;
    }
}
/* Mobile */
@media (max-width: 767px) {
    .journey-section {
        padding: 40px 0;
    }
    .journey-heading h2 {
        font-size: 24px;
    }
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .journey-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
        max-width: 430px;
        margin: 0 auto;
    }
    .journey-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0;
        font-size: 24px;
    }
    .journey-content {
        max-width: none;
        margin: 0;
    }
    .journey-content h4 {
        font-size: 15px;
    }
    .journey-content p {
        font-size: 13px;
    }
}
.contact-section {
    padding: 65px 0;
    background: #00172a;
}
.contact-section .container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    max-width: 1080px;
    margin: 0 auto;
}
/* ============================
   LEFT CONTACT AREA
============================ */
.contact-info {
    background: #7eac20;
    padding: 58px 45px;
    border-radius: 25px 0 0 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-small-title {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #eaf3d5;
}
.contact-info h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}
.contact-title-line {
    width: 65px;
    height: 2px;
    background: #fff;
    margin: 22px 0 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
}
.contact-detail-item a,
.contact-detail-item span {
    color: #fff;
    text-decoration: none;
}
.contact-detail-item a:hover {
    opacity: 0.85;
}
.contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #fff;
    color: #82ae25;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}
/* ============================
   RIGHT FORM
============================ */
.contact-form-box {
    position: relative;
    margin-left: -20px;
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px 40px;
    z-index: 2;
}
.contact-form-box h3 {
    margin: 0 0 8px;
    color: #252525;
    font-size: 27px;
    font-weight: 700;
}
.contact-form-text {
    margin: 0 0 32px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
}
.form-group {
    margin-bottom: 12px;
}
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    outline: none;
    border-radius: 4px;
    background: #fff;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 12px;
    color: #444;
    transition: 0.3s ease;
}
.contact-form-box input {
    height: 44px;
}
.contact-form-box textarea {
    height: 95px;
    resize: none;
}
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #aaa;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #82ae25;
    box-shadow: 0 0 0 2px rgba(130, 174, 37, 0.08);
}
/* Button */
.contact-submit {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 4px;
    background: #7eac20;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}
.contact-submit:hover {
    background: #6f991b;
}
/* ============================
   RESPONSIVE
============================ */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 750px;
    }
    .contact-info {
        border-radius: 22px 22px 0 0;
        padding: 45px 40px 60px;
    }
    .contact-form-box {
        margin-left: 0;
        margin-top: -20px;
        border-radius: 22px;
        padding: 45px 35px 35px;
    }
}
@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-section .container {
        width: 92%;
    }
    .contact-info {
        padding: 35px 25px 50px;
    }
    .contact-info h2 {
        font-size: 23px;
    }
    .contact-form-box {
        padding: 35px 22px 25px;
    }
    .contact-form-box h3 {
        font-size: 23px;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-detail-item {
        font-size: 13px;
    }
}