body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

.hero-section {
    height: 500px;
    background: url('/static/blog_erp_upgrade_services/img1.webp') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    inset: 0;
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 1000px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}


/* Breadcrumb – white text, no box, highly visible */
.linem {
    font-size: 17px;
    color: #ffffff !important;
    text-shadow:
        0px 3px 8px rgba(0, 0, 0, 0.85),
        0px 2px 5px rgba(0, 0, 0, 0.65);
    margin-top: 10px;
    margin-left: 96px;
}



/* Breadcrumb links - white & visible */
.breadcrumb-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    text-shadow:
        0px 3px 8px rgba(0, 0, 0, 0.85),
        0px 2px 5px rgba(0, 0, 0, 0.65);
    transition: 0.2s;
}

/* Link hover */
.breadcrumb-link:hover {
    color: #ffd2f2 !important;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 1);
}

/* Current page text - blue & visible */
.breadcrumb-current {
    color: #c4c4d4;
    font-weight: 500;
    text-shadow: none !important;
}



/* Hero Button – VERY VISIBLE */
.btn-primary {
    background: linear-gradient(120deg, #5b4df2, #8253d4);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 40px !important;
    border: none !important;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.45) !important;
}




/* ================================
   CTA CARD
================================= */
/* CTA CARD – taller, vertical center alignment */
.cta-card .card {
    background: linear-gradient(180deg, rgba(243, 246, 255, 1), #ffffff);
    border: 1px solid rgba(18, 70, 160, 0.2);
    box-shadow: 0 18px 60px rgba(20, 45, 105, 0.06);
    border-radius: 32px !important;

    /* FIX FOR HEIGHT + VERTICAL ALIGN */
    height: 140px;
    /* increase height as required */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */

    padding: 20px;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.cta-card .card h4 {
    font-size: 25px;
    font-weight: 700;
}


/* Hover effect */
.cta-card .card:hover {
    transform: translateY(-6.5px);
    box-shadow: 15px 25px 75px rgba(20, 45, 105, 0.4);
}

/* CTA button */
.btn-cta {
    background: linear-gradient(90deg, #5b4df2, #7f3ef2);
    color: #fff;
    border: none !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    border-radius: 40px !important;
    box-shadow: 0 10px 30px rgba(126, 58, 255, 0.14) !important;
    margin-top: 14px !important;
    transition: transform 0.6s ease !important;
}



.cta-svg-icon {
    width: 26px;
    height: 26px;
    fill: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}


.btn-cta:hover {
    transform: scale(1.08);
    box-shadow: 15px 15px 20px rgba(126, 58, 255, 0.2);
    color: #fff;
}


/* Images */
.section-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 40px 0;
}


.section-titles {
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-text {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
}

.industry-section {
    background: #fff;
}


.card-header {
    background: #fff;
    cursor: pointer;
    font-weight: 500;
}

.card {
    margin-bottom: 10px;
}


/* === FLIP CARD CONTAINER === */
.flip-card {
    background: transparent;
    perspective: 1200px;
    height: 320px;
}

/* === INNER WRAPPER === */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

/* === HOVER FLIP TO RIGHT === */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* === FRONT & BACK COMMON === */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    background: #faa628;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.flip-card-back {
    background: rgb(60, 141, 233);
}

/* === FRONT DESIGN === */
.flip-card-front {
    align-items: center;
    text-align: center;
}

.flip-card-front i {
    font-size: 48px;
    margin-bottom: 15px;
}

.flip-card-front h5 {
    font-weight: 600;
    margin: 0;
}

/* === BACK DESIGN === */
.flip-card-back {
    transform: rotateY(180deg);
    text-align: left;
}

.flip-card-back h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.7;
}