/* ===================================
   Blog Page Styles
   =================================== */

/* Page Banner Styles */
.blog-page-banner {
    background-color: #63AB45 !important;
    background-size: cover;
    background-position: center center;

    position: relative;
}

.blog-page-banner-with-bg {
    background-image: url(/image/section-bg.jpg);
    background-size: cover;
    background-position: center center;
}

/* Navigation Styles */
.breadcrumb-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.blog-breadcrumb {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: white;
}

.blog-breadcrumb li {
    color: white;
    margin: 0 5px;
}

.blog-breadcrumb li a {
    color: white;
    text-decoration: none;
}

.blog-breadcrumb li a:hover {
    text-decoration: underline;
}

/* ===================================
   Sidebar Card Styles
   =================================== */

/* Author Profile Card */
.author-profile-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-left: 80px;
    border: 1px solid #e0e0e0;
}

.author-profile-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 10px;
}

.author-profile-card .profile-avatar-container {
    text-align: center;
    margin-bottom: 20px;
}

.author-profile-card .profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
}

.author-profile-card h5 {
    text-align: center;
    color: #4A90E2;
    margin-bottom: 20px;
    font-weight: 600;
}

.author-profile-card p {
    color: #666;
    line-height: 1.8;
}

/* Product Info Card */
.product-info-card {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
    margin-left: 80px;
}

.product-info-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.product-info-card p {
    margin-bottom: 20px;
    color: #666;
}

.product-info-card .product-links {
    margin-bottom: 25px;
}

.product-info-card .product-links a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
}

.product-info-card .feature-item {
    margin-bottom: 10px;
    color: #666;
}

.product-info-card .feature-item:last-of-type {
    margin-bottom: 25px;
}

.product-info-card .feature-item span {
    margin-right: 10px;
}

.product-info-card .btn_green {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

/* Quote Form Card */
.quote-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
    margin-left: 80px;
    border: 1px solid #e0e0e0;
}

.quote-form-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 10px;
}

.quote-form-card .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.quote-form-card textarea.form-control {
    min-height: 90px;
    overflow: hidden;
}

.quote-form-card .invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.quote-form-card .btn-submit-quote {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.quote-form-card .btn-submit-quote:hover {
    background-color: #357ABD;
}

/* ===================================
   Sticky Sidebar Styles
   =================================== */
.sidebar-sticky-wrapper {
    position: relative;
}

.quote-form-card.sticky-active {
    position: fixed;
    top: 20px;
    z-index: 100;
}

/* Mobile: Disable sticky positioning */
@media (max-width: 768px) {
    .quote-form-card.sticky-active {
        position: static !important;
        top: auto !important;
    }
}
