.msappl-parallax {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
}

/* IMAGE SIDE */
.image-column {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.fixed-image {
    width: 100%;
    height: 100%;
    /* Ensure gallary-2.jpg is in the same folder as this CSS file */
    background-image: url('assets/img/products/about-img-2.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates Parallax Effect */
    background-repeat: no-repeat;
    min-height: 500px;
}

/* CONTENT SIDE */
.content-column {
    flex: 0 0 50%;
    padding: 0px 60px;
    background: #fff;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sub-title { font-size: 40px; margin-bottom: 0; color: #333; }
.main-title { font-size: 50px; margin-top: 0; color: #0f2f57; font-weight: 800; }

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin: 30px 0;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
}

.feature-box i {
    color: #e31e24; /* Red accent color from your logo */
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

.feature-inner h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.feature-inner p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* MOBILE VIEW */
@media (max-width: 991px) {
    .image-column, .content-column { flex: 0 0 100%; }
    .fixed-image { background-attachment: scroll; height: 350px; }
    .features-grid { grid-template-columns: 1fr; }
}