/*==========================================
  Testimonial
==========================================*/
.pea-testimonial-slider {
    padding: 10px;
}

.pea-testimonial-wrapper {
    max-width: 1290px;
    margin: 0 auto;
    position: relative;
}

.pea-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 18px rgba(12, 18, 30, 0.06);
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.pea-testimonial-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    flex: 1 1 auto;
    margin-bottom: 15px;
}

.pea-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pea-meta-info {
    font-size: 14px;
    color: #111;
}

.pea-meta-info small {
    display: block;
    margin-top: 3px;
}

.pea-button-prev,
.pea-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 15%);
    position: absolute;
    top: 35%;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.pea-button-prev svg,
.pea-button-next svg {
    width: 16px;
}

.pea-button-prev {
    left: -2%;
}

.pea-button-next {
    right: -2%;
}

.pea-swiper-pagination {
    margin-top: 25px;
    text-align: center;
}

.pea-button-wrap {
    display: flex;
    justify-content: space-between;
}

.pea-swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
}

/*==========================================
   Timeline
==========================================*/
.pea-main-timeline {
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.pea-main-timeline:before {
    content: '';
    width: 7px;
    height: 100px;
    background: #404040;
    margin: 0 auto;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
}

.pea-main-timeline .pea-timeline {
    width: 50%;
    float: left;
    padding: 20px 60px;
    border-top: 7px solid #404040;
    border-right: 7px solid #404040;
    position: relative;
    right: -3.5px;
}

.pea-main-timeline .pea-icon {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #000;
    border: 1px solid white;
    text-align: center;
    font-size: 25px;
    color: white;
    box-shadow: 0 0 0 2px #000;
    position: absolute;
    top: -30px;
    left: 0;
    transition: all 0.5s ease;
    padding: 6px;
}

.pea-main-timeline .pea-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

.pea-main-timeline .pea-timeline-content {
    display: block;
    padding: 20px 10px 10px;
    border-radius: 20px;
    background: #fff;
    color: #000;
    position: relative;
    text-decoration: none;
    box-shadow: 0 18px 42px 0 rgba(28, 30, 35, 0.15);
    transition: all 0.3s ease-in-out;
}

.pea-main-timeline .pea-timeline-content:hover {
    text-decoration: none;
}

.pea-main-timeline .pea-timeline-content:before,
.pea-main-timeline .pea-timeline-content:after {
    content: '';
    display: block;
    width: 10px;
    height: 50px;
    border-radius: 10px;
    background: #404040;
    border: 1px solid white;
    position: absolute;
    top: -35px;
    left: 50px;
}

.pea-main-timeline .pea-timeline-content:after {
    left: auto;
    right: 50px;
}

.pea-main-timeline .pea-title {
    font-size: 22px;
    margin: 0;
    color: #000;
    transition: all 0.5s ease;
}

.pea-main-timeline .pea-title-text {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    padding: 3px 0;
    color: #16a085;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.pea-main-timeline .pea-description {
    padding: 7px 0 0 0;
    margin: 0;
}

.pea-main-timeline .pea-timeline:nth-child(2n) {
    border-right: none;
    border-left: 7px solid #404040;
    right: auto;
    left: -3px;
    margin-top: 130px;
}

.pea-main-timeline .pea-timeline:nth-child(2n) .pea-icon {
    left: auto;
    right: 0;
}

.pea-timeline:hover .pea-title-text {
    color: #000;
}

/*==========================================
   Button Styles
==========================================*/
.pea-button {
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    color: #fff;
    background: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.pea-button:hover {
    color: #fff;
}

.pea-button::before {
    content: '';
    position: absolute;
    background: blue;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    z-index: -1;
}

.pea-button:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.pea-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: blue;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: -1;
}

.pea-button:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.pea-button span {
    display: block;
    position: relative;
}

.pea-button:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/*==========================================
   Team Member
==========================================*/
.pea-team-card {
    background: #ffffff;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}

.pea-team-card .pea-card-content {
    padding: 20px 25px;
}

.pea-team-card .pea-card-img {
    overflow: hidden;
    position: relative;
    height: 250px;
}

.pea-team-card .pea-card-img img {
    transition: 0.4s;
}

.pea-team-card .pea-card-img:hover img {
    transform: scale(1.2);
}

.pea-team-card .pea-card-img .pea-social-media {
    position: absolute;
    bottom: 0px;
    left: -15%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 0;
}

.pea-team-card .pea-card-img:hover .pea-social-media {
    left: 10px;
}

.pea-team-card .pea-card-img .pea-social-media .pea-item {
    list-style: none;
}

.pea-team-card .pea-card-img .pea-social-media .pea-item a {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: #F7F8FB;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    line-height: 0;
}


.pea-team-card .pea-card-img .pea-social-media .pea-item svg {
    width: 18px;
    height: 18px;
    fill: #000;
}

.pea-team-card .pea-card-img .pea-social-media .pea-item a:hover {
    background: #000;
}

.pea-team-card .pea-card-img .pea-social-media .pea-item a:hover svg {
    fill: #fff;
}

.pea-team-card .pea-card-content .pea-team-title {
    color: #111111;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 3px;
    text-transform: capitalize;
    font-size: 20px;
}

.pea-team-card .pea-card-content .pea-team-title a {
    text-decoration: none;
    color: #000;
    transition: .4s;
}

.pea-team-card .pea-card-content .pea-team-title a:hover {
    color: #2b2b2b
}

.pea-team-card .pea-card-content .pea-team-position {
    font-weight: 500;
    padding: 0;
    text-transform: capitalize;
    display: inline-block;
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 5px;
}

.pea-team-card .pea-short-disc {
    margin: 0;
}

/*==========================================
   Accordion
==========================================*/
.pea-accordion-container {
    max-width: 700px;
    width: 100%;
}

.pea-accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pea-accordion-item:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pea-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.pea-accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.pea-accordion-arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.06);
}

.pea-accordion-arrow-icon {
    position: relative;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    line-height: 0;
}

.pea-accordion-arrow-icon svg {
    width: 18px;
    height: 18px;
}

.pea-arrow-line {
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
}

.pea-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pea-accordion-content-inner {
    min-height: 0;
    overflow: hidden;
}

.pea-accordion-paragraph {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
    padding: 0 24px;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pea-accordion-item.active .pea-accordion-arrow-icon {
    transform: rotate(90deg);
}

.pea-accordion-item.active .pea-accordion-content {
    grid-template-rows: 1fr;
}

.pea-accordion-item.active .pea-accordion-paragraph {
    opacity: 1;
    transform: translateY(0);
    padding: 0 24px 24px 24px;
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.pea-accordion-item.active .pea-accordion-arrow {
    background-color: #5b47ff;
}

.pea-accordion-item.active .pea-accordion-arrow svg {
    fill: #fff;
}


/*==========================================
   Filterable Gallery
==========================================*/
.pea-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.pea-filters {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pea-filter {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pea-gallery-item {
    text-decoration: none;
    display: block;
}

.pea-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}


/*==========================================
   Contact Form 7
==========================================*/
.cf7-wrap label{
   display: block;
}

/*==========================================
   Content Switcher
==========================================*/
.pedroea-switcher-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}

.pedroea-label {
    cursor: pointer;
    color: #aaaaaa;
    user-select: none;
    transition: color .2s;
}

.pedroea-label.active {
    color: #000000;
}

.pedroea-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pedroea-toggle-track {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
    border-radius: 34px;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color .3s;
    flex-shrink: 0;
}

.pedroea-toggle-track.active {
    background-color: #4f35d2;
}

.pedroea-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.pedroea-toggle-track.active .pedroea-toggle-knob {
    transform: translateX(30px);
}

.pedroea-panel {
    display: none;
}

.pedroea-panel.active {
    display: block;
}

/*==========================================
   Blog Post Grid
==========================================*/
.pedroea-post-grid {
    display: grid;
    gap: 24px;
}

.pedroea-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.pedroea-post-thumbnail {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.pedroea-thumbnail-wrap {
    overflow: hidden;
}

.pedroea-img-hover-zoom 
.pedroea-post-card:hover 
.pedroea-post-thumbnail {
    transform: scale(1.06);
}

.pedroea-img-hover-fade 
.pedroea-post-card:hover 
.pedroea-post-thumbnail {
    opacity: 0.75;
}

.pedroea-post-content {
    padding: 20px 24px 28px;
}

.pedroea-post-meta-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pedroea-post-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.pedroea-post-meta svg {
    width: 16px;
    height: 16px;
    fill: #6b7280;
    flex-shrink: 0;
}

.pedroea-post-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 12px;
}

.pedroea-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pedroea-post-title a:hover {
    color: #000000;
}

.pedroea-post-excerpt {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.pedroea-read-more {
    display: inline-block;
    background: #000000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.pedroea-read-more:hover {
    background: #333333;
    color: #fff;
}
