/* blog.css */

body {

    background-color: #0f081c;

    color: #ffffff;

    font-family: 'Inter', sans-serif;

}



.text-orange {

    color: #ff5e14;

}



.section-padding {

    padding: 60px 0;

}



/* Hero Section */

.blog-hero-section {

    padding: 160px 0 100px;

    text-align: center;

    position: relative;

    background: url('../images/backgroud.png') no-repeat center center/cover;

    overflow: hidden;

}



.blog-hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    /* Overlay resembling radial glow similar to service pages */

    background: radial-gradient(circle at 50% 50%, rgba(255, 94, 20, 0.15) 0%, transparent 70%);

}



.blog-hero-title {

    font-size: 3.5rem;

    font-weight: 800;

    color: white;

    margin-bottom: 0;

    display: inline-block;

}



.blog-hero-title::after {

    content: "";

    display: block;

    width: 100%;

    height: 3px;

    background: linear-gradient(90deg, #ff5e14, #ff8c00);

    margin: 5px auto 0;

    border-radius: 2px;

}



.blog-hero-breadcrumb {

    color: white;

    font-weight: 500;

    font-size: 1.05rem;

}



.blog-hero-breadcrumb a {

    text-decoration: none;

    color: white;

    transition: color 0.3s ease;

}



.blog-hero-breadcrumb a:hover {

    color: #ff5e14;

}



.blog-hero-breadcrumb span {

    color: white;

}



/* Blog Section Background */

.blog-list-section {

    background-color: #0f081c;

}



/* Blog Card Styling */

.blog-card {

    background: #180d26;

    /* Deep dark color */

    border-radius: 12px;

    overflow: hidden;

    position: relative;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

    height: 100%;

}



.blog-card .blog-category {

    min-height: 52px;

}



.blog-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 94, 20, 0.3);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

}



.blog-image {

    width: 100%;

    height: 220px;

    overflow: hidden;

}



.blog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}



.blog-card:hover .blog-image img {

    transform: scale(1.08);

    /* slight smooth zoom on hover */

}



.blog-content {

    padding: 24px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;

}



.blog-category {

    color: #ff5e14;

    font-size: 1.1rem;

    font-weight: 700;

    margin-bottom: 12px;

}



.blog-text {

    color: #bbb3c6;

    font-size: 0.95rem;

    line-height: 1.6;

    margin-bottom: 24px;

    flex-grow: 1;

}



.blog-content .blog-text {

    min-height: 78px;

}



/* align date and button horizontally */

.blog-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 10px;

}



.blog-date {

    color: #e58d55;

    font-size: 0.85rem;

    font-weight: 600;

}



/* Read More Button */

.btn-read-more {

    background: #ff5e14;

    color: white;

    font-size: 0.9rem;

    font-weight: 600;

    padding: 8px 20px;

    border-radius: 6px;

    text-decoration: none;

    transition: background 0.3s ease, transform 0.3s ease;

    display: inline-block;

}



.btn-read-more:hover {

    background: #e04e0e;

    color: white;

    transform: translateY(-2px);

}



/* Responsive Styles */

@media (max-width: 992px) {

    .blog-hero-title {

        font-size: 3rem;

    }



    .blog-hero-section {

        padding: 130px 0 90px;

    }

}



@media (max-width: 768px) {

    .blog-hero-title {

        font-size: 2.5rem;

    }



    .blog-hero-section {

        padding: 110px 0 70px;

    }



    .section-padding {

        padding: 60px 0;

    }

}



@media (max-width: 576px) {

    .blog-hero-title {

        font-size: 2.2rem;

    }



    .blog-image {

        height: 200px;

    }

}



/* =========================================

   Blog Details Page Styles

   ========================================= */



/* Hero Specific */

.blog-details-hero {

    padding: 180px 0 100px;

}



/* Feature Cards */

.blog-feature-card {

    background: #180d26;

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 12px;

    transition: all 0.3s ease;

    height: 100%;

}



.blog-feature-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 94, 20, 0.3);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

    background: rgba(255, 255, 255, 0.02);

}



.services {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;

    margin-top: 18px;

}







.service {

    background: #1b1438;

    border: 1px solid #FF5E14;

    border-radius: 12px;

    padding: 20px;

    text-align: center;

}



.service:hover {

    transform: scale(1.03);

}



.service-icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    margin: 0 auto 12px;

    display: grid;

    place-items: center;

    color: #ff5e14;

    background: rgba(255, 94, 20, 0.12);

    border: 1px solid rgba(255, 94, 20, 0.25);

    font-size: 24px;

}



.service h3 {

    color: #ff5e14;

    margin-bottom: 8px;

}



.service p {

    color: #c3bbcf;

    margin-bottom: 0;

}



.blog-feature-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 94, 20, 0.3);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

    background: rgba(255, 255, 255, 0.02);

}



.blog-detail-content>* {

    width: 100%;

}





.blog-detail-content .stat-box {

    all: unset;

}



.blog-detail-content .faq-section {

    margin-top: 30px;

}







/* Stat Box */

/* .stat-box {

    background: #180d26;

    border: 1px solid rgba(255, 94, 20, 0.1);

    border-radius: 12px;

    height: 100%;

    transition: all 0.3s ease;

} */



.stats-section {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;

    background: #180d26;

    border: 1px solid #ff5e14;

    border-radius: 12px;

    height: 100%;

    transition: all 0.3s ease;

}



.stats-section h2 {

    color: #ff5e14;

    font-weight: 800;

}



.stat-icon {

    color: #ff9a6e;

    font-size: 1.1rem;

}



.stats-section .title {

    color: #d0c9dc;

    margin-bottom: 0;

}



.stats-section .source {

    color: #9d93ad;

    font-size: 12px;

}



.stat-box:hover {

    border-color: rgba(255, 94, 20, 0.5);

    transform: translateY(-5px);

}



/* Comparison Table */

/* .comparison-table {

    width: 100%;

    color: #ffffff;

    border-collapse: separate;

    border-spacing: 0;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    overflow: hidden;

    display: block;

} */



.comparison-table {

    width: 100%;

    color: #ffffff;

    border-collapse: separate;

    border-spacing: 0;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    white-space: nowrap;

    -webkit-overflow-scrolling: touch;

    /* display: block; */

    /* KEY */

    /* overflow-x: auto; */

    /* enable horizontal scroll */

    -webkit-overflow-scrolling: touch;



    /* white-space: nowrap; */

    /* prevent column wrapping */

}



.comparison-table thead th {

    background: #180d26;

    color: #ff5e14;

    padding: 18px 20px;

    font-weight: 700;

    font-size: 1.1rem;

    border-bottom: 2px solid rgba(255, 94, 20, 0.3);

}



.comparison-table tbody td {

    padding: 15px 20px;

    background: #0f081c;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    color: #bbb3c6;

    font-size: 0.95rem;

}



.comparison-table tbody tr:last-child td {

    border-bottom: none;

}



.comparison-table tbody tr:hover td {

    background: rgba(255, 255, 255, 0.02);

}



/* Steps System */

.steps-container {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.step-card {

    background: #1b1438;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    padding: 14px 16px;

    transition: all 0.3s ease;

}



.step-card:hover {

    border-color: rgba(255, 94, 20, 0.35);

    background: rgba(255, 255, 255, 0.03);

}



.step-header {

    color: #ff5e14;

    font-size: 1.35rem;

    font-weight: 700;

    margin-bottom: 6px;

}



.step-body {

    color: #e2dae9;

    font-size: 1.05rem;

    line-height: 1.7;

    margin-bottom: 0;

}



/* Steps template cards (Figma-like 3-column layout) */

.step-features-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

}



.step-feature-card {

    background: rgba(27, 20, 56, 0.9);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    padding: 12px 16px;

    text-align: left;

    transition: 0.3s ease;

}



.step-feature-card:hover {

    border-color: rgba(255, 94, 20, 0.35);

    background: rgba(255, 255, 255, 0.04);

    transform: none;

}



.step-feature-icon {

    display: none !important;

}



.step-feature-title {

    color: #ff5e14;

    font-size: 0.98rem;

    font-weight: 700;

    line-height: 1.35;

    margin-bottom: 6px;

}



.step-feature-text {

    color: #f2eef8;

    font-size: 0.95rem;

    line-height: 1.55;

    margin-bottom: 0;

}



.benefits-list {

    list-style: none;

    padding: 0;

    margin: 0;

    display: grid;

    gap: 14px;

}



.benefits-list li {

    background: #1b1438;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    padding: 14px 16px;

}



.faq-item {

    background: #1b1438;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    padding: 14px 16px;

    margin-bottom: 12px;

}



.faq-item h3,

.faq-item h4 {

    color: #ff5e14;

    margin-bottom: 8px;

}





.blog-detail-content p,

.blog-detail-content li {

    color: #bbb3c6;

    line-height: 1.8;

    font-size: 0.97rem;

}



.blog-detail-content ul,

.blog-detail-content ol {

    padding-left: 1.2rem;

}



.blog-detail-content strong {

    color: #ffffff;

}



.blog-detail-content a {

    color: #ff9a6e;

}



.blog-detail-content h2,

.blog-detail-content h3,

.blog-detail-content h4,

.blog-detail-content h5 {

    color: #ff5e14;

    margin: 20px 0 10px;

}



.blog-detail-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 16px 0;

}



.blog-detail-content th,

.blog-detail-content td {

    border: 1px solid rgba(255, 255, 255, 0.15);

    padding: 10px;

}



.blog-detail-content th {

    color: #ff5e14;

    background: #180d26;

}



.blog-detail-content blockquote {

    background: #180d26;

    border-left: 4px solid #ff5e14;

    padding: 14px;

    border-radius: 6px;

}



/* .blog-section-shell {

    background: #140c2b;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    padding: 24px;

} */



.blog-section-description {

    color: #a89fba;

    margin-bottom: 14px;

}



.blog-detail-content .sub-text {

    color: #bbb3c6;

}









/* Animations */

@keyframes float {

    0% {

        transform: translateY(0px);

    }



    50% {

        transform: translateY(-15px);

    }



    100% {

        transform: translateY(0px);

    }

}



.animate-float {

    animation: float 6s ease-in-out infinite;

}



/* Responsive tweaks for new components */

@media (max-width: 768px) {

    .blog-details-hero {

        padding: 130px 0 70px;

    }



    .comparison-table thead th {

        font-size: 0.9rem;

    }



    .comparison-table tbody td {

        font-size: 0.85rem;

    }



    .services {

        grid-template-columns: 1fr;

    }



    .stats-section {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }



    /* .blog-section-shell {

        padding: 16px;

    } */



    .blog-detail-content h2,

    .blog-detail-content h3 {

        font-size: 1.15rem;

    }



    .step-feature-title {

        font-size: 0.95rem;

    }



    .step-feature-text {

        font-size: 0.9rem;

    }

}



@media (max-width: 992px) {

    .services {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }



    .stats-section {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }



    .step-features-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================
   Featured Blog Image
========================================= */

.blog-featured-image {
    position: relative;
    width: 100%;
    margin-bottom: 50px;

    border-radius: 18px;
    overflow: hidden;

    background: #180d26;
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    /* IMPORTANT */
    display: block;
    transition: transform .4s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

/* Date Badge */

.blog-date-wrapper {
    margin-top: 20px;
    margin-bottom: 35px;
}

.blog-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    background: #180d26;
    border: 1px solid rgba(255, 94, 20, 0.25);

    border-radius: 999px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-date-badge i {
    color: #ff5e14;
}

.blog-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 8, 28, .15),
            rgba(15, 8, 28, 0));
    pointer-events: none;
}




/* final media query */



/* mobile css */



@media (min-width : 0px) and (max-width : 767px) {

    .services {

        grid-template-columns: 1fr;

    }

    .blog-featured-image {
        margin-bottom: 30px;
        border-radius: 14px;
    }

    .blog-featured-image img {
        height: auto;
        object-fit: contain;
    }

    .blog-date-wrapper {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .blog-date-badge {
        font-size: 13px;
        padding: 8px 14px;
    }


    .stats-section {

        grid-template-columns: 1fr;

    }



    .comparison-table {

        display: block;

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;

    }

}



/* tab css */



@media (min-width : 768px) and (max-width : 991px) {

    .services {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .blog-featured-image {
        max-width: 100%;
    }

    .blog-featured-image img {
        width: 100%;
        height: auto;
    }

    .blog-featured-image img {
        height: 350px;
    }

    .blog-date-wrapper {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .blog-date-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    .stats-section {

        grid-template-columns: 1fr;

    }



    .comparison-table {

        display: block;

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;

    }

}



/* mini desktop css */



@media (min-width : 992px) and (max-width : 1199px) {}



/* laptop css */



@media (min-width : 1200px) and (max-width : 1399px) {}



/* large screen css */



@media (min-width : 1400px) and (max-width : 1919px) {}



/* hd screen css */



@media (min-width : 1920px) and (max-width : 2559px) {}