/* Services Page Styles */

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
}

.service-card {
    background-color: #F8F9FA;
    transition: all 0.3s ease;
}

.service-card .card {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    background-color: inherit;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 114, 186, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #0072ba;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #0072ba;
    color: #fff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
    font-family: var(--font-secondary);
}

.service-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

/* Detailed Service Sections */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(odd) .row .col-lg-6:nth-child(2){
    padding-left: 25px;
}

.service-detail-section:nth-child(even) {
    background-color: #f8f9fa;
}

.service-detail-section img {
  border-radius: 10px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.service-detail-content .lead {
    font-size: 14px;
    margin-bottom: 30px;
    color: #6c757d;
    line-height: 1.75;
}

.service-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    margin-top: -3px;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--main-color);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

.feature-text p {
    color: #999;
    margin-bottom: 0;
    font-size: 14px;
}

/* Service Process Section */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e9ecef;
}

.process-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: #0072ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 2px solid #0072ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0072ba;
}

.process-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-left: 30px;
    flex-grow: 1;
}

.process-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.process-content p {
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section */

.accordion .card {
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion .card-header {
    background-color: white;
    border-bottom: none;
    padding: 0;
}

.accordion .card-header button {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.accordion .card-header button:hover {
    text-decoration: none;
}

.accordion .card-body {
    padding: 1.5rem;
    color: #6c757d;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    /*max-width: 1000px;*/
    margin: 50px auto 0;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 14px;
    color: var(--text-medium);
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--gray-200);
    opacity: 0.5;
    z-index: 0;
}

.swiper-pagination {
    bottom: -10px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--gray-300);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--box-shadow-md);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    background-color: #0072ba;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes .shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    top: -150px;
    left: -150px;
}

.cta-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    right: -100px;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 40px;
    }

    .process-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .cta-buttons {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}
