h5 {
    color: #fff;
}
.expert-card {
    background: linear-gradient(180deg, #2d2d2d, #1f1f1f);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    color: #fff;
}

.sidebar-title {
    color: #29b6f6;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Image wrapper */
.expert-image-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

/* Profile Image */
.expert-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

/* LinkedIn Icon */
.linkedin-icon {
    position: absolute;
    right: -9px;
    top: 18px;
    background: #6a6a6a;
    border-radius: 20px;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.linkedin-icon img {
    width: 24px;
    height: 24px;
}

/* Name */
.expert-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Role */
.sidebar-text {
    font-size: 14px;
    color: #ccc;
}
.author-card {
    background: linear-gradient(180deg, #2b2b2b, #1e1e1e);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin-top: 40px;
}

/* Title */
.author-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Content */
.author-content {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.author-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #555;
    border-radius: 30px;
    padding: 7px 13px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 25px;
    transition: 0.3s;
    font-weight:300!important;
}

.author-btn:hover {
    background: #29b6f6;
    border-color: #29b6f6;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LinkedIn Icon */
.author-linkedin {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-linkedin img {
    width: 16px;
}

/* Name */
.author-info h6 {
    margin: 0;
    font-size: 15px;
}

/* Role */
.author-info span {
    font-size: 13px;
    color: #aaa;
}
.author-info a {
    background-color: #5a5555;
    border-radius: 28px;
}
.cta-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #5a5a5a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s ease;
}

/* Arrow ↗ using CSS */
.cta-icon::after {
    content: "↗";
    font-size: 28px;
    color: #e3e3e3;
    line-height: 1;
    font-weight: 100;
}

/* Hover effect */
.cta-btn:hover .cta-icon {
    border-color: #29b6f6;
}

.cta-btn:hover .cta-icon::after {
    color: #29b6f6;
}
a.author-btn {
    text-decoration: none;
}
.blog-detail-inner ul, .qa-testing-build-exc .left-col-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 20px;
}
.custom-cta-box {
    padding: 50px;
    border-radius: 12px;
    color: #fff;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
}
.post-navigation{
    display:flex;
    justify-content:space-between;
    margin:40px 0;
    padding:20px 0;
    border-top:1px solid #eee;
}

.post-navigation a{
    text-decoration:none;
    padding:10px 15px;
    background:#000;
    color:#fff;
    border-radius:5px;
}

.post-navigation a:hover{
    opacity:0.8;
}

.quote-card {
    background: #cfd8e3;
    padding: 40px 30px 30px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* BIG DOUBLE QUOTE */
.quote-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 1;
}

.quote-icon svg {
    width: 60px;
    height: 60px;
    fill: #3b82f6;
}

/* TEXT */
.quote-text {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.6;
    margin-top: 20px;
}

/* AUTHOR */
.author {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.author .line {
    width: 3px;
    height: 40px;
    background: #3b82f6;
}

.author h6 {
    margin: 0;
    font-weight: 600;
}

.author p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.brand img {
    max-height: 30px;
    opacity: 0.9;
}
.quote-icon svg {
    width: 70px;
    height: 70px;
    fill: #4f8df5;
    opacity: 0.9;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .quote-text {
        font-size: 16px;
    }

    .quote-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        margin-top: 10px;
    }
}