/* AI-ML Services Page Styles */
:root {
    --transition-speed: 0.3s;
}
.our__services__padding {
    padding: 0px 10rem 0px 10rem;
}

/* Banner Section */
.banner {
    background-image: url("../assets/blog-banner.png");
}

.banner__pages span {
    color: #f8f9fa;
}

.banner__pages span:nth-child(2) {
    color: #007bff;
}

/* AI Services Container */
.ai__services__container {
    max-width: 100vw;
    overflow: hidden;
    /* margin: 0 auto; */
    /* padding: 2rem; */
}

/* Hero Section */
.ai__services__hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
    /* margin-bottom: 2rem; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai__services__title {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.ai__services__subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Section Titles */
.section__title {
    font-size: 2rem;
    color: #343a40;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #28a745, #007bff);
}

/* Specialized Services Section */
.ai__services__specialized {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ai__services__image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.ai__services__image img {
    width: 100%;
    height: auto;
    display: block;
}

.ai__services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ai__service__card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #dee2e6;
}

.ai__service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.service__title {
    font-size: 1.4rem;
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service__title::before {
    content: "•";
    color: #007bff;
    font-size: 1.8rem;
}

.service__description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Industries Section */
.ai__services__industries {
    background: linear-gradient(135deg, #f8f9fa, white);
    /* padding: 3rem 0; */
    border-radius: 8px;
    /* margin-bottom: 2rem; */
}

.industries__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 2rem; */
    align-items: center;
}

.industries__list {
    list-style-type: none;
    padding: 0;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    /* gap: 1rem; */
}

.industries__list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #343a40;
    position: relative;
    padding-left: 2rem;
    transition: transform 0.3s;
}

.industries__list li:hover {
    transform: translateX(5px);
}

.industries__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.industries__image {
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s;
}

.industries__image:hover {
    transform: scale(1.02);
}

.industries__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Process Section */
.ai__services__process {
    padding: 3rem 0;
    background: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.process__description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    /* max-width: 800px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.process__steps {
    display: grid;
    grid-template-columns: 1fr 5px 1fr;

    gap: 2rem;
    position: relative;
}

.process__steps.mobile {
    display: none;
}

.progress__stop__right__container {
    display: grid;
    gap: 5rem;
}
.progress__stop__left__container {
    display: grid;
    gap: 5rem;
    margin-top: 5rem;
}
.progres__scroll {
    background: #2a7b9b;
    background: linear-gradient(
        179deg,
        rgba(42, 123, 155, 1) 0%,
        rgba(87, 199, 133, 1) 50%,
        rgba(237, 221, 83, 1) 100%
    );
    /* height: 5px; */
    /* background: var(--accent); */
    /* bottom: 50px; */
    transform: scaleX(0);
    transition-duration: 400ms;
}

.process__step {
    text-align: center;
    padding: 1.5rem;
    /* background: #f8f9fa; */
    border-radius: 12px;
    transition: transform 0.3s;
}

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

.step__image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step__image img {
    width: 100%;
    height: auto;
    display: block;
}

.step__title {
    font-size: 1.2rem;
    color: #28a745;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step__description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Transformation Section */
.ai__services__transformation {
    background: linear-gradient(135deg, white, #f8f9fa);
    padding: 3rem 0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.transformation__description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-indent: 2rem;
}

.transformation__images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.transformation__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.transformation__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.transformation__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Managed Services Section */
.ai__services__managed {
    padding: 3rem 0;
    background: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.managed__description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-indent: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.managed__services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.managed__service__card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #dee2e6;
}

.managed__service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.managed__service__title {
    font-size: 1.3rem;
    color: #28a745;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.managed__service__title::before {
    content: "→";
    color: #007bff;
}

.managed__service__description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats Section */
.ai__services__stats {
    background: linear-gradient(135deg, #007bff, #28a745);
    padding: 3rem 0;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: white;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat__item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}

.stat__item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat__label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.ai__services__testimonials {
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial__card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #dee2e6;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.testimonial__text {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
}

.testimonial__text::before,
.testimonial__text::after {
    content: '"';
    font-size: 2rem;
    color: #28a745;
    opacity: 0.3;
    position: absolute;
}

.testimonial__text::before {
    left: 0;
    top: 0;
}

.testimonial__text::after {
    right: 0;
    bottom: 0;
}

.testimonial__author {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__name {
    font-weight: 600;
    color: #343a40;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ai__services__container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industries__content {
        grid-template-columns: 1fr;
    }
    .our__services__padding {
        padding: 0px 2rem 0px 2rem;
    }
    .ai__services__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .process__steps.desktop {
        /* grid-template-columns: 1fr; */
        display: none;
    }
    .process__steps.mobile {
        display: grid;
        grid-template-columns: 1fr;
    }
    .process__steps.mobile .process__step {
        background: #f2f2f38d;
    }

    .transformation__images {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ai__services__title {
        font-size: 1.75rem;
    }

    .ai__services__subtitle {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .service__title,
    .managed__service__title {
        font-size: 1.2rem;
    }
    .ai__services__process {
        padding: 2rem 0;
    }

    .stats__grid {
        grid-template-columns: 1fr;
    }
}
