.hero-section {
    position: relative;
   /* background-image: url('../../images/blog2.webp');*/
    background-image: url('../../images/blogDetailimg.webp');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    color: white;
    margin-top: -23px;
}

 .hero-section::before {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     /* Black overlay with 50% opacity */
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 0;
 }

.hero-content h1 {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans';
    letter-spacing: 0.5px;
    font-size: 2.8rem;
    line-height: 1.2;
    max-width: 900px;
}
.content {
    padding: 2px 30px;
}
.blog-text-f {
    font-family: 'Plus Jakarta Sans';
    letter-spacing: 0.5px;
}
 @media (min-width: 992px) {
     .hero-section {
         height: 340px;
         padding-left: 5rem;
     }

     .hero-content h1 {
         max-width: 1200px;
     }
 }
@media (max-width: 991px) {
    .content {
        padding: 0px 8px!important;
    }
    .content img {
        width: 100% !important;
        height: auto !important;
    }
    .row-custm {
        flex-direction: column-reverse!important;
    }
}
@media (max-width: 575px) {
    .blog-txt-nn {
        font-size: 24px!important;
    }

    }

  @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 28px !important;
            line-height: 1.8 !important;
        }

        .hero-section {
            height: 214px !important;
            text-align: center !important;
            padding: 0px !important;
        }

    }

    /* Custom styles for typography & server-box */
    .content h1 {
        font-weight: 600;
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

.content p {
    margin-top: 12px;
    margin-bottom: 0px;
    font-weight: 300;
    font-size: 15px;
    color: #222222;
}



    .content h2 {
        font-weight: 400;
        font-family: 'Plus Jakarta Sans';
        font-size: 21px;
        margin-top: 20px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .blog-txt-nn {
        color: black;
        font-size: 28px;
        font-family: Plus Jakarta Sans;
        font-weight: 600;
        word-wrap: break-word;
    }

    .content ul {
        margin-bottom: 25px;
        list-style-type: disc;
        padding-left: 20px;
    }

        .content ul li {
            font-weight: 300;
            font-size: 15px;
            margin-bottom: 10px;
        }

.server-box {
    border: 1px solid #e8e8e8;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 7px rgb(0 0 0 / 0.025);
}

        .server-box strong {
            display: block;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 17px;
            color: #222222;
        }

        .server-box a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 18px;
            margin-bottom: 14px;
            font-weight: 400;
            font-size: 15px;
            color: #47a3ff;
            background-color: #ffffff;
            border: 1.5px solid #b4d1ff;
            border-radius: 16px;
            text-decoration: none;
            transition: background-color 0.28s ease, border-color 0.28s ease;
            cursor: pointer;
        }

            .server-box a:last-child {
                margin-bottom: 0;
            }

            .server-box a:hover {
                background-color: #d9eaff;
                border-color: #47a3ff;
            }

            .server-box a svg {
                width: 12px;
                height: 12px;
                stroke: #47a3ff;
                stroke-width: 2.5;
                fill: none;
            }

    .blog-card {
        /* background: #fff; */
        border-radius: 20px;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
        overflow: hidden;
        transition: transform 0.2s ease;
    }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-card img {
            width: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        .blog-card .card-body {
            padding: 20px 0px;
        }

        .blog-card h5 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #121416;
        }

        .blog-card .date {
            font-size: 0.9rem;
            color: #6C757D;
            margin-bottom: 15px;
        }

        .blog-card p {
            font-size: 1rem;
            color: #6C757D;
            line-height: 1.6;
        }

        .blog-card a {
            display: inline-block;
            margin-top: 10px;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            color: #121416;
            border-bottom: 1px solid #121416;
            padding-bottom: 2px;
        }

    .cart-btn-menu {
        border: 1.5px solid #34A4F5;
        background: #34a4f5;
        color: #fff;
        padding: 6px 9px;
        border-radius: 14px;
        font-size: 16px;
        transition: 0.3s;
    }
