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

/* Hero Section */
.hero-section {
    height: 500px;
    background: url('/static/blog_woocommerce/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: 1200px;
    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: 190px;
}



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





/* Blog Container */
.blog-container {
    margin: 60px auto;
    padding: 40px;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #eef3ff, #f9fbff);
    padding: 25px;
    border-left: 5px solid #4f6df5;
    border-radius: 8px;
    margin-bottom: 30px;
}

.intro-box h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Section Titles */
.section-titles {
    margin-top: 40px;
    font-weight: 600;
    color: #000000;
}

.section-titles {
    position: relative;
}

.section-icon {
    position: absolute;
    left: -26px;          /* icon stays left */
    top: 20px;
    transform: translateY(-50%);
    color: #1e6bff;       /* 🔵 blue icon */
    font-size: 27px;
}


/* Feature Cards */
.feature-card {
    background: #f9faff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: 0.3s ease;
    height: 100%;
}

/* .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
} */

.feature-card i {
    font-size: 30px;
    color: #4f6df5;
    margin-bottom: 15px;
}

/* List */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.styled-list li h4{
    font-size: 20px;
    font-weight: 600;
}

.styled-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4f6df5;
}

/* CTA */
.cta-box {
    margin-top: 50px;
    padding: 35px;
    text-align: center;
    background: linear-gradient(135deg, #4f6df5, #6a82fb);
    color: #fff;
    border-radius: 12px;
}

.cta-box .btn {
    margin-top: 15px;
    padding: 10px 30px;
    font-weight: 500;
}