body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f0a0a;
}

.bloghead {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px 0;
}



.box {
    width: 100%;  /* Adjust as needed */
    height: 600px; /* Adjust as needed */
    background-image: url('../images/mtpback.webp'); /* Update the path */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column; /* Stack text vertically */
    align-items: center;
    justify-content: center;
    color: white; /* Ensure text is visible */
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}

.box span {
    position: relative;
    z-index: 1;
    display: block;
}





.blog-content {
    background: url('assets/images/AI_Blog.webp') no-repeat center center/cover;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    background: rgba(12, 11, 11, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 1;
    padding: 20px;
}

.image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

