.main-logo{
    width: 250px;
}

.product-image{
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.inner-title{
    font-size: 32px;
    margin-bottom: 10px;
}

.white-bg{
    background: #FFF;
    padding: 80px 0;
}

.grey-bg{
    background: #F4F6FF;
    padding: 80px 0;
}

.inner-content{
    padding: 0 40px;
}

.service-details-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details-list li{
    margin-bottom: 10px;
}

/* Image hover effect */
.service-details-image a img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 100%;
    border-radius: 8px;
}

.service-details-image a:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Heading hover effect */
.inner-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .inner-content h3 a:hover {
        color: #007BFF; /* Or your brand color */
        text-decoration: underline;
        cursor: pointer;
    }

.blog-image-wrapper .product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-details-image .product-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
    background-color: #f8f9fa; /* Optional: light gray background */
}

/* Better spacing for blog detail headings */
.blog-details-content h2,
.blog-details-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Improved readability for paragraphs */
.blog-details-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Spacing and padding for the blog content wrapper */
.blog-details-content {
    padding: 30px 20px;
}

    /* List spacing */
    .blog-details-content ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .blog-details-content li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

/* Section padding for breathing room */
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
/*Space for blog thumbnail*/
.col-lg-4.col-md-6 {
    margin-bottom: 50px; /* Adjust spacing as needed */
}
.breadcrumb-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-details-content {
        padding: 20px 10px;
    }
}
