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

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 70vh;
    background: url('/static/blog_odoo_erp_consultant/img1.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 1100px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 16px;
}



/* Breadcrumb – white text, no box, highly visible */
.linem {
    font-size: 17px;
    /* font-weight: 900; */
    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: 110px;
}





/* Breadcrumb links visible and stylish */
/* 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);
    /* strong bold color */
    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;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(126, 58, 255, 0.14);
    margin-top: 14px;
    transition: 0.3s ease;
}

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





/* BLOG CONTAINER */
.blog-container {
    /* width: 72vw; */
    margin: 70px auto;
}

/* INTRO TEXT */
.intro-text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* HEADINGS */
.blog-container h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 80px 0 30px;
}


/* FEATURE BOX */
.feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.feature-card span {
    font-size: 32px;
    font-weight: 800;
    color: #6366f1;
}

.feature-card h4 {
    margin: 15px 0;
    font-weight: 600;
}

/* LIST */
.role-list {
    list-style: none;
    padding-left: 0;
}

.role-list li {
    padding-left: 32px;
    margin-bottom: 15px;
    position: relative;
}

.role-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6366f1;
}




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

.section-image2 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 50px 0px 1px 0px;
}



/* HIGHLIGHT */
.highlight-section {
    background: linear-gradient(90deg, #f4f6ff, #ffffff);
    padding: 5px 20px 30px 20px;
    /* padding-top: 20px; */
    border-radius: 20px;
}


/* CTA */
.cta-box {
    background: rgba(204, 204, 204, 0.2);
    color: #000000;
    padding: 40px;
    border-radius: 24px;
    margin: 50px 0;
}

.cta-box h2 {
    margin-bottom: 40px;
}