/* Header styles - Keep these new styles */
header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #007bff;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sign-in {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.try-for-free {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.try-for-free:hover {
    background-color: #0056b3;
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Original blog styles */
.blog-area {
    padding: 50px 0;
}

/* Add sidebar styles */
.blog-details {
    padding: 50px 0;
}

.blog-details .container {
    position: relative;
}

.sidebar-area {
    position: sticky;
    top: 100px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.widget {
    margin-bottom: 30px;
}

.widget__title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.widget__recent-post {
    list-style: none;
    padding: 0;
}

.widget__recent-post__single {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.widget__recent-post__single:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget__recent-post__single a {
    text-decoration: none;
    color: inherit;
}

.widget__recent-post__title {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.widget__recent-post__title:hover {
    color: #007bff;
}

.widget__recent-post__date {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.sidebar__ads {
    margin-top: 30px;
}

.sidebar__ads video {
    width: 100%;
    border-radius: 8px;
}

/* Responsive sidebar */
@media (max-width: 991px) {
    .sidebar-area {
        margin-top: 50px;
        position: static;
    }
}

.section-title--innerpage {
    margin-bottom: 3rem;
}

.section-title__sub-heading {
    color: #007bff;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title__heading {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.blogs-post {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blogs-post:hover {
    transform: translateY(-5px);
}

.blogs-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hover-content {
    padding: 25px;
}

.hover-content__top {
    margin-bottom: 15px;
}

.hover-content__badge {
    font-size: 0.875rem;
    padding: 5px 15px;
    margin-right: 15px;
    text-decoration: none;
}

.bg-qualbot {
    background-color: #007bff;
}

.hover-content__date {
    color: #666;
    font-size: 0.875rem;
    text-decoration: none;
}

.hover-content__title {
    display: block;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.hover-content__title:hover {
    color: #007bff;
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #007bff;
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav.active + .header-buttons {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        background: white;
        position: absolute;
        top: calc(100% + 44px);
        left: 0;
        right: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .section-title__heading {
        font-size: 2rem;
    }

    .blogs-post img {
        height: 150px;
    }

    .hover-content__title {
        font-size: 1.1rem;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
