﻿
.zet-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 55px;
    row-gap: 55px;
    margin-top: 45px;
}

.zet-section-margin {
    margin-top: 50px;
    margin-bottom: 50px;
}

.zet-help-item {
    text-align: center;
    padding: 5px 15px;
    background: #fbf3e9;
}

.zet-help-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3038b8;
}

    .zet-help-icon svg {
        width: 58px;
        height: 58px;
        display: block;
    }

.zet-help-item h3 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
    color: #172033;
}

.zet-help-item p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    
}



@media (max-width: 991px) {
    .zet-help-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 35px;
        row-gap: 45px;
    }

    .zet-help-item h3 {
        font-size: 20px;
    }
}



@media (max-width: 767px) {
    .zet-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
        row-gap: 40px;
        margin-top: 35px;
    }

    .zet-help-item {
        padding: 0 5px;
    }

    .zet-help-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 14px;
    }

        .zet-help-icon svg {
            width: 46px;
            height: 46px;
        }

    .zet-help-item h3 {
        font-size: 17px;
        line-height: 1.35;
        margin-bottom: 9px;
    }

    .zet-help-item p {
        font-size: 14px;
        line-height: 1.55;
    }
}


/* Very small screens */
@media (max-width: 400px) {
    .zet-help-grid {
        column-gap: 14px;
    }

    .zet-help-item h3 {
        font-size: 16px;
    }

    .zet-help-item p {
        font-size: 13px;
    }
}





.services-container {
    width: 100%;
}

/* Header Section */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.header-content {
    max-width: 730px;
}

    .header-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        line-height: 2.8rem;
    }

    .header-content p {
        font-size: 17px;
        line-height: 1.55;
        color: #1e293b;
    }

.btn-all-services {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    border: 1.5px solid #2563eb;
    border-radius: 12px;
    background-color: #f8fafc;
    color: #1e293b;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

    .btn-all-services:hover {
        background-color: #2563eb;
        color: #ffffff;
    }

/* Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 24px;
}

    .card-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #2e3a4a;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4338ca;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.2s ease;
}

    .card-link:hover {
        gap: 12px;
    }

/* Responsive Design */
@media (max-width: 900px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.why-section-content {
    padding: 0px !important
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    margin-top: 30px
}

.trust-card {
    background: #f9fbfd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2e8b57;
    border-left: 5px solid #2e8b57;
    position: relative;
    overflow: hidden
}

    .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgb(37 99 235 / .15);
        border-color: #dbeafe
    }

    .trust-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #2563eb;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease
    }

    .trust-card:hover::before {
        transform: scaleY(1)
    }

 
 

.cta-container {
    text-align: center;
    margin-top: 50px
}

.cta-button {
    background: linear-gradient(90deg,#2563eb 0%,#1d4ed8 100%);
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(37 99 235 / .3);
    letter-spacing: .5px
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgb(37 99 235 / .4);
        background: linear-gradient(90deg,#1d4ed8 0%,#2563eb 100%)
    }

.service-card {
    background: #ededed;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #f1f5f9;
    border-radius: 10px
}

    .service-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 25px rgb(0 0 0 / .12);
        border-left: 4px solid var(--primary)
    }

.service-content {
    flex: 1
}


p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #555
}





.content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color)
}

.content p {
    margin-bottom: 0;
    font-size: 1rem
}

@media (max-width:768px) {
    .title {
        font-size: 2rem
    }

    .single {
        flex-direction: column;
        text-align: center
    }

        .single:not(:last-child)::after {
            left: 50%;
            transform: translateX(-50%)
        }

    .icon1 {
        margin: 0 auto
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .service-section {
        background: #fff;
        padding: 10px
    }
}

.faq-section-div {
    background: #e6e8eb;
    padding-bottom: 4px
}

.faq-header {
    text-align: center;
    padding: 60px 20px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden
}

section.trust-section {
    margin-bottom: 50px
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    overflow: hidden;
    transition: all 0.3s ease
}

    .faq-item.active .faq-answer {
        padding: 0 30px 30px;
        max-height: 500px
    }

.contact-section-index {
    background: linear-gradient(234deg,#08b57c 0%,#2e8b57 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgb(16 185 129 / .3)
}

    .contact-section-index h2 {
        margin-bottom: 20px
    }

    .contact-section-index p {
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: .9;
        color: #fff
    }

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #023b29;
    padding: 16px 40px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

    .contact-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgb(0 0 0 / .15)
    }

    .contact-button .icon {
        width: 18px;
        height: 18px;
        position: relative;
        transition: transform 0.3s ease
    }

        .contact-button .icon::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 0;
            height: 0;
            border-top: 6px solid #fff0;
            border-bottom: 6px solid #fff0;
            border-left: 8px solid #059669;
            transform: translateY(-50%)
        }

    .contact-button:hover .icon {
        transform: translateX(5px)
    }

.banner-content {
    margin-top: 45px
}
