﻿.hero-section {
    margin: 40px auto 90px;
    padding: 0 24px;
    gap: 60px;
    border-radius: 26px;
}

.hero-header {
    text-align: center;
    margin: 35px 0;
}

    .hero-header h1 {
        font-size: 18px;
        font-weight: 700;
        color: var(--color-primary-dark);
        margin-bottom: 6px;
        font-family: 'YEKANFBld';
    }

    .hero-header p {
        font-size: 13px;
        color: #777;
        font-family: 'YEKANFLgt';
    }

.hero-content {
    max-width: 1000px;
    margin: 48px auto;
}

.date-tag {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #fff;
    background: var(--color-primary);
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: .4px;
    box-shadow: 0 6px 18px rgba(13,66,180,.2);
}

.hero-content h1 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    font-family: 'YEKANFBlk';
}

.hero-content p {
    font-size: 15px;
    line-height: 2.05;
    color: var(--color-text-secondary);
    margin-bottom: 26px;
    opacity: .9;
    text-align: justify;
}

.hero-content strong {
    color: var(--color-primary);
    font-family: 'YEKANFSBld';
}

.trust-logos {
    width: 100%;
    padding: 36px 0 50px 0;
    margin: auto;
    background-color: #fafbfc;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-logo img {
        max-height: 55px;
        width: auto;
        filter: grayscale(.4) brightness(1.1);
    }

        .trust-logo img:first-child {
            max-height: 70px;
            margin-left: 28px;
            padding-left: 28px;
            border-left: 1px solid rgba(0,0,0,.08);
        }

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    font-size: 12px;
    text-align: center;
    color: var(--color-text-secondary);
}

    .trust-stats div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .trust-stats strong {
        color: var(--color-primary);
        font-weight: 800;
        line-height: 1;
        font-family: 'YEKANFBlk';
    }

    .trust-stats span {
        font-family: 'YEKANFBld';
        color: #0743b5;
    }

.timeline-section {
    max-width: 700px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

    .timeline-section h6 {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 36px;
        color: var(--color-primary-dark);
        text-align: center;
        font-family: 'YEKANFBlk';
    }

.timeline-section-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 40px;
    align-items: stretch;
}

.timeline-image-container {
    position: relative;
    width: 100%;
}

    .timeline-image-container img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

.logo-grid {
    width: 85%;
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    justify-items: center;
    margin: 50px auto;
}

    .logo-grid img {
        width: 85px;
        height: auto;
        object-fit: contain;
    }

.timeline-container {
    position: relative;
    height: 100%;
    padding-right: 50px;
}

    .timeline-container:before {
        content: "";
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--color-primary);
        opacity: .2;
    }

.timeline-item {
    position: relative;
    margin-bottom: 16px;
}

.timeline-dot {
    position: absolute;
    right: -1px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--color-accent-warm);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fe8f013d;
}

.timeline-content {
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(13,66,180,.08);
    box-shadow: 0 8px 26px rgba(0,0,0,.05);
    margin-right: 20px;
    text-align: justify;
    line-height: 3 !important;
}

    .timeline-content h3 {
        font-size: 18px;
        color: var(--color-primary);
        font-weight: 800;
        margin-bottom: 12px;
        font-family: 'YEKANFBld';
    }

.project h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text-secondary);
    font-family: 'YEKANFBld';
}

.project p {
    font-size: 14px;
    line-height: 1.75;
    color: #16161696;
    margin-bottom: 10px;
}

.project-btn {
    display: inline-block;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    transition: .2s;
    display: none;
}

    .project-btn:hover {
        opacity: .8;
    }

@media(max-width:900px) {
    .timeline-section-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media(min-width:769px) {
    .trust-stats strong {
        font-size: 56px;
    }

    .trust-stats span {
        font-size: 24px;
    }
}

@media(max-width:768px) and (min-width:551px) {
    .trust-stats strong {
        font-size: 36px;
    }

    .trust-stats span {
        font-size: 16px;
    }
}



@media(max-width:500px) {
    .trust-stats strong {
        font-size: 26px;
    }

    .trust-stats span {
        font-size: 10px;
    }
}

@media(min-width:601px) {
    .ccicon {
        width: 65px !important;
    }

    .trust-stats {
        gap: 20px;
    }
}

@media(max-width:600px) {
    .logo-grid img {
        width: 60px;
    }

    .ccicon {
        width: 50px !important;
    }

    .trust-stats {
        gap: 8px;
    }
}

.timeline-img {
    width: 100%;
    background-color: #0f3da0;
    padding: 24px;
    margin-top: 42px;
    border-radius: 24px;
}

    .timeline-img img {
        width: 100%;
        border-radius: 12px;
    }

.project.has-accordion .project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 45px;
    background-color: red
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    color: var(--color-primary);
}

.project.open .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease;
    opacity: 0;
}

.project.open .accordion-content {
    max-height: 300px;
    opacity: 1;
    margin-bottom: 10px;
}

.project.open .short-desc {
    display: none;
}


.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: safe center;
    text-align: center;
    padding: 65px 0;
    max-width: 500px;
}

    .button-container .btn {
        display: inline-block;
        border: 1.25px solid #0743b5;
        color: white;
        background: #0743b5;
        font-size: 13px;
        padding: 8px 24px;
        transition: all 0.9s ease;
        border-radius: 50px;
        text-decoration: none;
        white-space: nowrap;
        margin: auto;
    }

@media (max-width: 500px) {
    .button-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.imagechabok {
    max-width: 1000px;
    margin: auto;
    width: 100%;
}

    .imagechabok img {
        width: 100%;
        margin-bottom: -215px;
    }
