/* ================= SERVICE DETAIL HERO ================= */
.service-detail-hero {
    position: relative;
    padding: 120px 0;
    background: #d5e7f9; /* same as about hero */
    overflow: hidden;
}

/* OPTIONAL SOFT GLOW */
.service-detail-hero::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 60%);
    filter: blur(80px);
}

/* REMOVE OLD OVERLAY */
.hero-overlay {
    display: none;
}

/* ROW */
.hero-row {
    align-items: center;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .separator {
    color: #64748b;
}

.breadcrumb .active {
    color: #0f172a;
}

/* ================= HEADING ================= */
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* GRADIENT TEXT */
.hero-content h1 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= TEXT ================= */
.hero-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
}

/* ================= FEATURES ================= */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-features span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #334155;

    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.hero-features i {
    color: #14B8A6;
    margin-right: 5px;
}

/* ================= BUTTONS ================= */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
    padding: 12px 26px;
    border-radius: 40px;
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.btn-secondary {
    padding: 12px 26px;
    border-radius: 40px;
    border: 2px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* ================= IMAGE ================= */
.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    .service-detail-hero {
        padding: 80px 0;
    }

    .hero-row {
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-features {
        justify-content: center;
    }

    .breadcrumb {
        justify-content: center;
        font-size: 13px;
    }
}
/* ================= PROBLEM SOLUTION ================= */
.problem-solution-section {
    padding: 100px 0;
    background: #f8fafc; /* match your site */
}

/* HEADER */
.ps-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

/* BADGE */
.ps-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.ps-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.ps-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.ps-header p {
    color: #64748b;
    margin-top: 10px;
}

/* CARD */
.ps-card {
    padding: 35px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    height: 100%;
    transition: 0.4s ease;
}

/* HOVER */
.ps-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* TITLES */
.ps-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

/* LIST */
.ps-card ul {
    list-style: none;
    padding: 0;
}

.ps-card ul li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

/* ICON BASE */
.ps-card ul li i {
    padding: 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* PROBLEM (BLUE SOFT instead of RED ❌) */
.problem-card i {
    color: #2563eb;
    background: #e0ecff;
}

/* SOLUTION (TEAL ✅) */
.solution-card i {
    color: #14B8A6;
    background: #e6f9f3;
}

/* TOP BORDER */
.problem-card {
    border-top: 4px solid #2563eb;
}

.solution-card {
    border-top: 4px solid #14B8A6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ps-header h2 {
        font-size: 28px;
    }
}

/* ================= ADS SERVICES ================= */
.ads-services-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.ads-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

/* BADGE */
.ads-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.ads-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
}

.ads-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.ads-header p {
    color: #64748b;
    margin-top: 10px;
}

/* CARD */
.ads-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;

    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;

    transition: 0.4s ease;
    height: 100%;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

/* ICON */
.ads-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 22px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    box-shadow: 0 10px 20px rgba(37,99,235,0.15);
}

/* TEXT */
.ads-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.ads-card p {
    font-size: 14px;
    color: #475569;
}

/* HOVER EFFECT */
.ads-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ads-header h2 {
        font-size: 28px;
    }
}

/* ================= PROCESS SECTION ================= */
.process-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.process-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

/* BADGE */
.process-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.process-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.process-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.process-header p {
    color: #64748b;
}

/* ================= GRID ================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.process-card {
    background: #eef2f7;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

/* NUMBER */
.process-card .step-number {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    color: #fff;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    border-radius: 50%;

    margin-bottom: 15px;

    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* TITLE */
.process-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* TEXT */
.process-card p {
    font-size: 14px;
    color: #475569;
}

/* HOVER */
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-header h2 {
        font-size: 28px;
    }
}
/* ================= STATS SECTION ================= */
.stats-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.stats-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

/* BADGE */
.stats-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.stats-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
}

.stats-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.stats-header p {
    color: #64748b;
    margin-top: 10px;
}

/* CARD */
.stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;

    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;

    transition: 0.4s ease;
    height: 100%;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

/* NUMBER */
.stat-card h3 {
    font-size: 42px;
    font-weight: 800;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 10px;
}

/* TEXT */
.stat-card p {
    color: #475569;
    font-size: 14px;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 28px;
    }

    .stat-card h3 {
        font-size: 32px;
    }
}
/* ================= WHY CHOOSE US ================= */
.why-us-section {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* HEADER */
.why-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

/* BADGE */
.why-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TITLE */
.why-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
}

.why-header h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.why-header p {
    color: #64748b;
    margin-top: 10px;
}

/* CARD */
.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;

    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;

    transition: 0.4s ease;
    height: 100%;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

/* ICON */
.why-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 22px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    box-shadow: 0 10px 20px rgba(37,99,235,0.15);
}

/* TEXT */
.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-card p {
    font-size: 14px;
    color: #475569;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-header h2 {
        font-size: 28px;
    }
}


/* ================= FAQ SECTION ================= */
.service-details-faq {
    padding: 100px 0;
    background: #f8fafc; /* match site */
}

/* ================= LEFT ================= */
.service-details-faq-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
}

.service-details-faq-left h2 span {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-details-faq-left p {
    color: #64748b;
    margin: 20px 0;
}

/* BADGE */
.service-details-faq-badge {
    display: inline-block;
    background: #e0ecff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* CTA BOX */
.service-details-faq-box {
    margin-top: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.service-details-faq-box:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */
.service-details-faq-box .icon {
    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    border-radius: 14px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom: 15px;

    box-shadow: 0 10px 20px rgba(37,99,235,0.15);
}

/* BUTTON */
.service-details-faq-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

.service-details-faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

/* ================= RIGHT ================= */

/* CARD */
.service-details-faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 18px 22px;
    cursor: pointer;

    border: 1px solid #e2e8f0;
    transition: 0.3s ease;

    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* HOVER */
.service-details-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* ACTIVE */
.service-details-faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37,99,235,0.1);
}

/* QUESTION */
.service-details-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-details-faq-question h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #0f172a;
}

/* ICON */
.service-details-faq-question .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;

    background: #f1f5f9;
    color: #2563eb;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size: 14px;
    transition: 0.3s;
}

/* ACTIVE ICON */
.service-details-faq-item.active .icon {
    background: rgba(37,99,235,0.1);
}

/* ANSWER */
.service-details-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.service-details-faq-item.active .service-details-faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.service-details-faq-answer p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

    .service-details-faq-left {
        text-align: center;
    }

    .service-details-faq-left h2 {
        font-size: 30px;
    }

}

