.menu-toggle {
    margin-right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #60C9F9 !important;
    transition: all 0.3s ease;
}

.search-toggle {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #60C9F9 !important;
    transition: all 0.3s ease;
}

body {
    background-color:#02235d06 !important;
}


.blog {
    padding: 5rem 0;
    background: #f9f9fb !important;
}



/* Search */
.search-container {
    width: 250px;
}

.search-container .input-group {
    background: var(--bg-transparent);
    border-radius: 8px;
    overflow: hidden;
}

.search-container .form-control {
    border: none;
    background: transparent;
    color: var(--text-white);
    padding: 0.5rem 1rem;
}

.search-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-container .btn-search {
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-container .btn-search:hover {
    color: var(--primary-color);
}


.blog-card {
    background: #f9f9fb;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    padding: 0px;
    margin: 0px;
}



.blog-post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}


.blog-card img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 12px;;
}


.blog-card:hover {
   box-shadow: none;
}



.post-content h2 {
    font-size: 20px !important;
    font-weight: 700;
    color: #1A1A1A;
    margin: 40px 0 16px;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E5F5FF;
    color: #056BB3;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    align-self: center;
}

.blog-badge i {
    font-size: 16px;
}

.blog-post h2 {
    max-width: 700px;
    margin: 0 0 32px;
    color: #042E76;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    align-self: center;
}

.post-image-single {
    width: 100vw;
    height: 700px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    margin-bottom: 40px;
}

.post-image-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toc-sidebar {
    position: sticky;
    top: 2rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 8px;
}

.toc-nav {
    position: relative;
    padding-left: 20px;
}

.toc-nav::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E9ECEF;
}

.toc-nav .nav-item {
    position: relative;
}

.toc-nav .nav-link {
    color: #6C757D;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.toc-nav .nav-link:hover,
.toc-nav .nav-link.active {
    color: #0D6EFD;
    text-decoration: none;
}

.toc-nav .nav-link.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0D6EFD;
}

.social-share {
    margin-top: 2rem;
    border-top: 1px solid #E9ECEF;
    padding-top: 1.5rem;
}

.social-share h6 {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
    background: #7DD3FC !important;
}

.share-btn i {
    color: #0369A1;
    font-size: 1.2rem;
}

.share-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .toc-sidebar {
        position: relative;
        margin-bottom: 2rem;
    }
}
