/*=============================================
=           SERVICE DETAIL PAGE CSS           =
==============================================*/

/*------------------------------
:ROOT VARIABLES
-------------------------------*/
:root {
    --primary-color: #0d6efd;
    --secondary-color: #ffc93c;
    --light-bg: #f3f9ff;
    --surface-color: #ffffff;
    --text-color: #333;
    --heading-color: #000;
    --accent-color: #0d6efd;
    --transition-fast: 0.3s;
}

/*------------------------------
BODY
-------------------------------*/
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    scroll-behavior: smooth;
}

/*------------------------------
LIGHT & DARK BACKGROUND CLASSES
-------------------------------*/
.light-background {
    background-color: var(--light-bg);
}

.dark-background {
    background-color: var(--primary-color);
    color: var(--surface-color);
}

/*==============================
 HERO SECTION
===============================*/
.hero {
    background: linear-gradient(180deg, #E6EEFF 0%, #B3C9FF 100%);
    color: black;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 15px;
}

/*==============================
SECTION TITLES
===============================*/
.section-title {
    font-weight: 600;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

/*==============================
SERVICES CARDS
===============================*/
.services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all var(--transition-fast);
    display: flex;
}

.services .service-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: linear-gradient(180deg, #E6EEFF 0%, #B3C9FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 28px;
    transition: all var(--transition-fast);
}

.services .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services .service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/*==============================
BENEFIT CARDS
===============================*/
.benefit-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 25px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    font-size: 38px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-color));
    -webkit-background-clip: text;
    color: transparent;
}

.benefit-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

/*==============================
WORKFLOW / HOW WE WORK CARDS
===============================*/
.work-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 40px 20px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Logo Badge in Workflow Cards */
.logo-badge {
    width: 75px;
    height: 75px;
    background: var(--surface-color);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-badge .icon {
    font-size: 25px;
    color: black;
}

/* Step number inside workflow card */
.step-number {
    font-size: 20px;
    font-weight: 900;
    -webkit-background-clip: text;
    color: transparent;
    margin-right: 5px;
}

.work-card h5 {
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 10px;
}

.work-card p {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
    flex-grow: 1; /* To push text evenly */
}

/* Arrows between workflow steps */
.arrow {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    display: inline-block;
}

@media(max-width: 991px) {
    .arrow {
        display: none !important;
    }
}

@media(min-width: 992px) {
    .arrow {
        display: inline-block !important;
        transform: rotate(0deg);
    }
}

/*==============================
CTA / CONTACT SECTION
===============================*/
.cta {
    background: linear-gradient(180deg, #2b6af3 0%, #B3C9FF 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta h3 {
    font-weight: 700;
}

.cta .btn-light:hover {
    background: var(--secondary-color);
    color: #000;
}

/*==============================
LINKS
===============================*/
a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}
