/* ===== ABOUT PAGE IMPROVEMENTS ===== */

/* Blog text (now About content) */
.blog_text {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Heading */
.blog_text h5 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
}

/* Sub headings */
.blog_text h5 + p,
.blog_text h5 + ul {
    margin-top: 10px;
}

/* Paragraph */
.blog_text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Services & Why Choose (tick style) */
.blog_text p br {
    margin-bottom: 8px;
}

/* Image styling */
.blog_image img {
    width: 100%;
    border-radius: 6px;
    transition: 0.4s;
}

/* Image hover effect */
.blog_image img:hover {
    transform: scale(1.03);
}

/* Section spacing */
.blog_item {
    margin-bottom: 30px;
}

/* Breadcrumb highlight */
.breadcrumb li.active {
    color: #000;
    font-weight: 600;
}

/* Sidebar improvement */
.sidebar .heading {
    border-left: 3px solid #000;
    padding-left: 10px;
}

/* Sidebar items */
.sidebar .media h5 {
    font-size: 14px;
    font-weight: 500;
}

.sidebar .media span {
    font-size: 12px;
    color: #777;
}

/* Responsive improvement */
@media (max-width: 768px) {
    .blog_text {
        padding: 15px;
    }

    .blog_text h5 {
        font-size: 18px;
    }
}

/* ===== CENTER ALIGN FIX ===== */

.blog_item {
    max-width: 850px;   /* controls width */
    margin: 0 auto;     /* centers horizontally */
}

/* Center headings */
.blog_text h5 {
    text-align: center;
}

/* Center sub text */
.blog_text .meta {
    text-align: center;
}

/* Center paragraphs */
.blog_text p {
    text-align: center;
}

/* Center services & why choose */
.blog_text p br {
    display: block;
    margin-bottom: 6px;
}

/* Optional: make list style centered nicely */
.blog_text {
    text-align: center;
}

/* Image center */
.blog_image {
    text-align: center;
}

.blog_image img {
    max-width: 100%;
    margin: 20px auto;
    display: block;
}

/* GRID FOR SERVICES + WHY */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

/* BOX STYLE */
.about-box {
    text-align: center;
}

/* LIST STYLE */
.about-box ul {
    list-style: none;
    padding: 0;
}

.about-box ul li {
    margin-bottom: 8px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* IMAGE + CONTENT ROW */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

/* IMAGE */
.about-img img {
    width: 100%;
    border-radius: 8px;
}

/* CONTENT */
.about-content {
    text-align: left;
}

.about-content h5 {
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }
}