body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #ffffff;
    margin: 0;
    color: #222;
    line-height: 1.7;
}


.icon-color {
    color: #5382da !important;
}



/* HERO - full width background */
.hero-section {
    width: 100%;
    height: 60vh;
    /* adjust height if needed */
    background-image: url('/static/blog_Ecommerce_management/img1.webp');
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.13);
    /* dark overlay for legibility */
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-inner {
    max-width: 1100px;
    padding: 60px 20px;
    color: #fff;
}

.hero-title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}



/* 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: 120px;
}





/* 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;
    /* soft bright blue */
    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 !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 !important;
}

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






/* MAIN CONTENT */

/* Elegant First Paragraph */
.article-content .mainp {
    font-size: 16px;
    line-height: 1.85;
    background: #f9f9f9;
    padding: 22px 26px;
    border-left: 4px solid #0d6efd;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

/* Headings */
.section-titles {
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}

/* Images height 400px */
.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* Bullet Icons List */
.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

/* Contact CTA */
.contact-cta {
    border-top: 1px solid #eee;
}

.contact-cta h4 {
    font-weight: 700;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .blog-container {
        width: 85%;
    }

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .blog-container {
        width: 92%;
    }

    .content-img {
        height: 261px;
    }
}