@import "faq.css";

/* ==============================
   Service Hero – Footer Matched
   ============================== */

.service-hero {
    min-height: 520px;
    background: linear-gradient(
        135deg,
        #e9f4ff 0%,
        #f6fcff 60%,
        #ffffff 100%
    );
    position: relative;
}

.service-hero .hero-content {
    padding: 120px 0;
}

.service-hero .hero-content h1 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 800;
    color: #1f2c3a;
}

.service-hero .hero-content p,
.service-hero .hero-text {
    font-size: 18px;
    line-height: 30px;
    color: #4a5a6a;
    font-weight: 500;
}

.service-hero .btn-primary {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@keyframes floatHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}



/* ================================
   SERVICES LISTING – FINAL UI
================================ */

#services-listing {
    background: none; /* background removed */
}

/* CATEGORY TITLE */
#services-listing .service-group-title {
    font-size: 26px;
    font-weight: 600;
    color: #1c2b36; /* neutral dark (no blue) */
    margin-bottom: 30px;
}

/* SERVICE CARD */
#services-listing .service-card {
    background: linear-gradient(
        180deg,
        #f2f9ff 0%,
        #ffffff 100%
    );
    padding: 26px 24px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e6f1ff;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.08);
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
#services-listing .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 123, 255, 0.18);
    border-color: #b9dcff;
}

/* SERVICE TITLE */
#services-listing .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

/* SERVICE DESCRIPTION */
#services-listing .service-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* LINK */
#services-listing .service-link {
    font-size: 14px;
    font-weight: 600;
    color: #22538d;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

#services-listing .service-link:hover {
    color: #22538d;
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    #services-listing .service-group-title {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    img[src$="android-app-hero.svg"] {
        animation: androidFloat 7s ease-in-out infinite;
    }
}

@keyframes androidFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ==============================
   Universal Hover Effect Utility
   ============================== */

.section-soft .ui-hover-card {
    background: #fff;
}

.ui-hover-card {
    transition: all 0.35s ease;
    border-radius: 16px;
    position: relative;
    border: 1px solid #e6f1ff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.ui-hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 84, 147, 0.15);
}

/* ==============================
   Utility: Pill / Tag Buttons
   ============================== */

/* Container utility */
.u-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Base pill */
.u-pill {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #1f2d3d;
    background-color: #ffffff;
    border: 1px solid #dce9f8;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Hover effect */
.u-pill:hover {
    background-color: #4A90E2;
    color: #ffffff;
    border-color: #4A90E2;
}

/* ======================================
   AI Tick Utility List (Reusable)
   Usage: add class "ui-tick-list"
====================================== */

.ui-simple-tick {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ui-simple-tick li,
.ui-simple-tick .list-group-item {
    background: transparent;
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.ui-simple-tick li::before,
.ui-simple-tick .list-group-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00b4f0; /* sky blue */
    font-weight: 700;
    font-size: 14px;
}

/* =========================================
   UNIVERSAL PROCESS SECTION (CSS-ONLY)
========================================= */

.ui-process-section {
    position: relative;
}

/* Card */
.ui-process-section .ui-process-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 28px;
    position: relative;
    height: 100%;
    border: 1px solid #eef1f5;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Hover effect */
.ui-process-section .ui-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

/* Accent bar (modern SaaS look) */
.ui-process-section .ui-process-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    border-radius: 18px 0 0 18px;
    background-image: linear-gradient(180deg, #005493 0%, #00d0fb 100%);
}

/* Step number */
.ui-process-section .ui-step-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(0, 84, 147, 0.15);
    pointer-events: none;
}

/* Heading */
.ui-process-section h5 {
    font-weight: 600;
    margin-bottom: 14px;
    padding-right: 45px;
}

/* Description */
.ui-process-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Responsive tweak */
@media (max-width: 767px) {
    .ui-process-section .ui-process-card {
        padding: 28px 24px;
    }
}

/* ======================================
   Sky Blue Icon Utility (Reusable)
====================================== */

/* Icon wrapper for consistent UI */
.ui-icon-wrap {
    width: 60px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 180, 240, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.ai-tech-section .tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.ai-tech-section h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.ai-tech-section .tech-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ai-tech-section .tech-list li {
    font-size: 14px;
    color: #6c757d;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.ai-tech-section .tech-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d0fb;
    font-weight: 700;
}


.skill-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.skill-icon {
    font-size: 48px;
}



/* ======================================
   Python Service Theme
====================================== */



.icon-box-shape {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: #ebf5fb;
    color: #3498db;
}

.ui-hover-tech {
    transition: all 0.3s ease;
}

.ui-hover-tech:hover {
    background-color: #4A90E2;
    color: #ffffff;
    border-color: #4A90E2;
}

.seo-long-content p {
    text-align: justify;
}

.right-side-card {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect */
.right-side-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* .services .section-subtitle {
    text-align: inherit;
} */
/* ===== MOBILE VIEW ===== */

@media (max-width: 500px) {

    .ui-icon-wrap {
        width: 45px;
        height: 32px;
    }

    .ui-icon-wrap i {
        font-size: 17px;
    }

    .ui-simple-tick li {
        font-size: 13px;
    }

    .service-hero .hero-content h1 {
        font-size: 28px;
        line-height: 35px;
    }

    .service-hero .hero-content p,
    .service-hero .hero-text {
        font-size: 15px;
        line-height: 26px;
    }

    .section-content h3 {
        font-size: 21px;
    }

    .section-content h4 {
        font-size: 20px;
    }

    .section-content h5 {
        font-size: 17px;
        line-height: 25px;
    }

    .section-content h6 {
        font-size: 14px;
    }

    .service-info .ui-simple-tick .list-group-item,
    .list-group .list-group-item {
        font-size: 14px;
    }

    .section-content p {
        font-size: 15px;
        line-height: 26px;
    }

}



@media (max-width: 575.98px) {

    .service-hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .service-hero .hero-content {
        padding: 70px 0 50px;
        text-align: center;
    }

    .service-hero .hero-content h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .service-hero .hero-content p,
    .service-hero .hero-text {
        font-size: 15px;
        line-height: 24px;
        margin-top: 12px;
    }

    .service-hero .btn-primary {
        padding: 12px 26px;
        font-size: 14px;
        margin-top: 18px;
    }

    .hero-image {
        margin-top: 35px;
        text-align: center;
    }

    .hero-image img {
        max-width: 85%;
    }

    /* CATEGORY TITLE */
    #services-listing .service-group-title {
        font-size: 20px;
        margin-bottom: 22px;
        text-align: center;
    }

    /* SERVICE CARD */
    #services-listing .service-card {
        padding: 22px 18px;
        border-radius: 14px;
        box-shadow: 0 10px 26px rgba(0, 123, 255, 0.10);
    }

    /* Disable hover jump on touch */
    #services-listing .service-card:hover {
        transform: none;
        box-shadow: 0 14px 32px rgba(0, 123, 255, 0.14);
    }

    /* SERVICE TITLE */
    #services-listing .service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* DESCRIPTION */
    #services-listing .service-desc {
        font-size: 13.5px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    /* LINK */
    #services-listing .service-link {
        font-size: 13.5px;
    }

    #services-listing .service-link:hover {
        transform: none;
    }

    /* Card wrapper */
    .service-solution .ui-hover-card {
        border-radius: 14px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    }

    /* Card body */
    .service-solution .ui-hover-card .card-body {
        padding: 22px 18px;
        text-align: left;
    }

    /* Card title */
    .service-solution .ui-hover-card .card-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    /* Card text */
    .service-solution .ui-hover-card .card-text {
        font-size: 14px;
        line-height: 1.55;
    }

    /* Disable hover lift on touch */
    .service-solution .ui-hover-card:hover {
        transform: none;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    }

    /* CARD */
    .ui-process-section .ui-process-card {
        padding: 24px 20px;
        border-radius: 16px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    }

    /* Disable hover jump on touch */
    .ui-process-section .ui-process-card:hover {
        transform: none;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    /* STEP NUMBER */
    .ui-process-section .ui-step-badge {
        font-size: 30px;
        top: 14px;
        right: 16px;
    }

    /* HEADING */
    .ui-process-section h5 {
        font-size: 16px;
        margin-bottom: 10px;
        padding-right: 30px;
    }

    /* TEXT */
    .ui-process-section p {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .right-side-card {
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
    }

    /* Disable hover jump on touch */
    .right-side-card:hover {
        transform: none;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
    }
}


@media (min-width: 576px) and (max-width: 991.98px) {

    .service-hero {
        min-height: 460px;
    }

    .service-hero .hero-content {
        padding: 90px 0 70px;
        text-align: center;
    }

    .service-hero .hero-content h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .service-hero .hero-content p,
    .service-hero .hero-text {
        font-size: 16px;
        line-height: 26px;
        max-width: 680px;
        margin: 0 auto;
    }

    .service-hero .btn-primary {
        padding: 13px 30px;
        font-size: 15px;
        margin-top: 20px;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .hero-image img {
        max-width: 90%;
    }

     /* CATEGORY TITLE */
    #services-listing .service-group-title {
        font-size: 23px;
        margin-bottom: 26px;
    }

    /* SERVICE CARD */
    #services-listing .service-card {
        padding: 24px 22px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.12);
    }

    #services-listing .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(0, 123, 255, 0.16);
    }

    /* SERVICE TITLE */
    #services-listing .service-title {
        font-size: 17px;
    }

    /* DESCRIPTION */
    #services-listing .service-desc {
        font-size: 14px;
    }

    /* LINK */
    #services-listing .service-link {
        font-size: 14px;
    }

    .service-solution .ui-hover-card {
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .service-solution .ui-hover-card .card-body {
        padding: 26px 22px;
        text-align: center;
    }

    .service-solution .ui-hover-card .card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .service-solution .ui-hover-card .card-text {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .service-solution .ui-hover-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    }

    .ui-process-section .ui-process-card {
        padding: 30px 26px;
        border-radius: 18px;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
    }

    .ui-process-section .ui-process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .ui-process-section .ui-step-badge {
        font-size: 34px;
        top: 18px;
        right: 20px;
    }

    .ui-process-section h5 {
        font-size: 17px;
        padding-right: 36px;
    }

    .ui-process-section p {
        font-size: 14px;
    }

    .right-side-card {
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    }

    .right-side-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    }
}

