/* Services Page Specific Styles */

/* Experience Section */
.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(94, 96, 206, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    margin-top: 80px;
    text-align: center;
}

.testimonials h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 15px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #5e60ce;
    opacity: 0.3;
    font-family: Georgia, serif;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #5e60ce;
}

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

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
    transform: scale(1.3);
}

/* Delivery Process Section */
.delivery-process {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #5e60ce, #64dfdf);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(94, 96, 206, 0.15);
}

.timeline-step {
    display: inline-block;
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
    position: relative;
    z-index: 2;
}

/* FAQs Section */
.faqs {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #5e60ce;
}

.faq-question i {
    transition: transform 0.3s;
    color: #5e60ce;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5e60ce 0%, #64dfdf 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-section .btn {
    display: inline-block;
    background: #fff;
    color: #5e60ce;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials h3 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .delivery-process {
        padding: 60px 0;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-content {
        margin-left: 60px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .faqs {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .timeline-content {
        margin-left: 50px;
        padding: 20px;
    }

    .timeline-step {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

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

    .cta-section .btn {
        padding: 12px 30px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 96, 206, 0.02) 0%, rgba(100, 223, 223, 0.02) 100%);
    z-index: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-content h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-choose-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(94, 96, 206, 0.15);
    border-left-color: #5e60ce;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5e60ce, #64dfdf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
    transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    height: 600px;
}

.why-choose-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 96, 206, 0.1), rgba(100, 223, 223, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.why-choose-image:hover::before {
    opacity: 1;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Responsive */
@media (max-width: 1024px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .why-choose-grid {
        gap: 40px;
    }

    .why-choose-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-content h3 {
        font-size: 1.8rem;
    }

    .why-choose-content > p {
        font-size: 1rem;
    }

    .why-choose-image {
        height: 400px;
        order: -1;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .benefit-text h4 {
        font-size: 1.1rem;
    }

    .benefit-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-content h3 {
        font-size: 1.5rem;
    }

    .benefits-list {
        gap: 20px;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

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

    .why-choose-image {
        height: 300px;
    }
}
