   /* =================== BLOG SECTION =================== */
.blog-section {
    padding: 40px 0;
    background: #000;
    color: #fff;
   
}

.blog-header .blog-label {
    letter-spacing: 4px;
    color: #f7c600;
    font-size: 14px;
}

.blog-header .blog-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
}


.blog-card {
    background: #0d0d0d;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}


.blog-image-box {
    position: relative;
}

.blog-image-box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

/* Category */
.blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #f7c600;
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    font-size: 14px;
    opacity: 0.7;
}

.blog-post-title {
    margin: 10px 0;
    font-size: 22px;
    font-weight: 600;
}

.blog-post-title a {
    text-decoration: none;
    color: #fff;
}

.blog-post-title a:hover {
    color: #f7c600;
}

.blog-excerpt {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}













   /* MAIN BLOG SECTION */
.single-blog-section {
    background: #000;
    padding: 120px 0;
    color: #ddd;
}

.single-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* LEFT AREA */
.single-blog-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.single-blog-title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3;
}

.single-blog-meta {
    margin: 15px 0 35px;
    color: #f7c600;
    font-size: 15px;
}

/* CONTENT */
.single-blog-content h2 {
    font-size: 22px !important;
    color: #fff;
    margin: 35px 0 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-content p,
.single-blog-content li {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.single-blog-content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

/* SIDEBAR */
.single-blog-sidebar .sidebar-box {
    background: #0f0f0f;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid #222;
    margin-bottom: 28px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* LATEST POSTS */
.sidebar-latest-post {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.latest-img img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.latest-text h4 {
    font-size: 15px;
    margin: 0;
}

.latest-text h4 a {
    color: #fff;
}

.latest-date {
    font-size: 13px;
    color: #f7c600;
}

/* SERVICES */
.sidebar-services li {
    margin-bottom: 12px;
}

.sidebar-services a {
    color: #ddd;
    font-size: 15px;
}

.sidebar-services i {
    color: #f7c600;
    margin-right: 6px;
}

/* SOCIAL */
.sidebar-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #111;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 8px;
    transition: .3s;
}

.sidebar-social a:hover {
    background: #f7c600;
}

.sidebar-social i {
    color: #f7c600;
    transition: .3s;
}

.sidebar-social a:hover i {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .single-blog-grid {
        grid-template-columns: 1fr;
    }
}



.single-blog-section a {
    text-decoration: none !important;
}


.single-blog-section a:hover {
    text-decoration: none !important;
    color: #f7c600;
}

