﻿:root {
    --darkblue: #003366;
    --lightblue: #0066CC;
    --lightgray: #666666;
    --white: #FFFFFF;
    --spacing: 15px;
    --container-width: 1172px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.section-title {
    color: var(--darkblue);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.slick-initialized .slick-slide {
    display: flex;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background-color: #F7D000;
    transition: width 0.3s ease;
}

.section-title.text-revealed:after {
    width: 40px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--lightgray);
}

/* Header Section */
.header-section {
    text-align: center;
}

.why-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.why-content {
    width: 100%;
    padding-right: 0;
}

.why-image {
    display: none;
}

/* Cards Container */
.cards-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

/* Card Styles */
.card {
    flex: 0 0 calc(100% - 30px);
    scroll-snap-align: start;
    display: flex;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 40px;
    min-width: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.card-icon img {
    width: 100%;
    height: auto;
}

.card-content h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--darkblue);
    font-weight: bold;
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: var(--lightgray);
}

/* Trusted By Section */
.trusted-section {
    background-color: #FAFAFA;
    padding: 40px 0 70px;
}

.testimonials-slider {
    position: relative;
}

.testimonial {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
}

.testimonial-image {
    width: 100%;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
}

.testimonial-content {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.client-logo {
    height: 42px;
    margin: 20px auto;
    display: block;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.5;
    color: var(--lightgray);
    margin: 20px 0;
    position: relative;
}

.client-info {
    margin: 30px 0 20px;
}

.client-info h5 {
    font-size: 16px;
    font-weight: bold;
    color: black;
    margin: 0;
}

.client-info h6 {
    font-size: 16px;
    color: black;
    margin: 5px 0 0;
}

.read-story-btn {
    border: 1px solid var(--lightblue);
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--lightblue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-story-btn:hover {
    background: var(--lightblue);
    color: white;
}

/* Contact Section */
.contact-section {
    margin: 40px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
}

.contact-info {
    width: 100%;
    padding: 0% 0 2% 5%;
}

.contact-info .section-title:after {
    left: 0;
    transform: translateX(0);
}

.contact-detail {
    margin-bottom: 15px;
}

.contact-detail h4 {
    font-size: 16px;
    color: var(--lightgray);
    margin-bottom: 10px;
}

.phone-link {
    color: var(--lightblue);
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
}

.service-link {
    color: var(--lightblue);
    text-decoration: none;
    font-size: 16px;
}

/* Slick Slider Overrides */
.slick-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--darkblue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slick-arrow:before {
    display: none;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--lightgray);
}

.slick-dots li.slick-active button:before {
    color: var(--darkblue);
}

/* Desktop Styles */
@media (min-width: 992px) {
    .why-content {
        width: 56%;
        padding-right: 4%;
    }

    .why-image {
        display: block;
        width: 40%;
    }

    .why-image img {
        width: 100%;
        height: auto;
        border-radius: 50%;
    }

    .contact-wrapper {
        width: 80%;
        margin: auto;
    }

    .cards-container {
        display: block;
        overflow: visible;
    }

    .card {
        flex: none;
        width: auto;
        margin-bottom: 10px;
    }

    .testimonial {
        flex-wrap: nowrap;
    }

    .testimonial-image {
        width: 50%;
    }

    .testimonial-content {
        width: 50%;
        padding: 40px;
        text-align: left;
    }

    .client-logo {
        margin: 0 0 10px;
    }

    .contact-image {
        width: 48%;
        margin-bottom: 0;
    }

    .contact-info {
        width: 47%;
        max-width: 390px;
    }

    .contact-info .section-title {
        text-align: left;
        font-size: 30px;
    }

    .pcnone {
        display: none;
    }

    .mnone {
        display: block;
    }
}

@media (max-width: 992px) {
    .pcnone {
        display: block;
        width: 100%;
    }

    .mnone {
        display: none;
    }

    .slick-arrow {
        display: none !important;
    }
}

.contact-detail1:after {
    background: url(http://pgpro.com/static/images/phone.svg);
    background-repeat: no-repeat;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px;
}

.contact-detail3:after {
    background: url(http://pgpro.com/static/images/location.svg);
    background-repeat: no-repeat;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px;
}

.contact-info {
    flex-direction: column;
    display: flex;
}

.contact-detail3 {
    line-height: 30px;
    font-size: 20px;
}

.contact-detail4 {
    padding-top: 20px;
    line-height: 24px;
    margin-bottom: 10px;
    position: relative;

}

.contact-detail4 a {
    --tw-text-opacity: 1;
    color: rgba(0, 119, 199, var(--tw-text-opacity));
    font-family: Arial MT W04 Regular;
    font-size: 20px;
    line-height: 30px;
    transition: color .3s ease;
}


.contact-detail4:after {
    background: url(https://pgpro.com/static/images/email-icon.svg);
    background-repeat: no-repeat;
    content: "";
    height: 30px;
    position: absolute;
    width: 30px;
}

.contact-detail1,
.contact-detail2,
.contact-detail3,
.contact-detail4 {
    display: flex;
}

.contact-detail1 a,
.contact-detail2 a,
.contact-detail3 a,
.contact-detail4 a {
    padding-left: 40px;
}