/* Section spacing */
.technology-section {
    padding: 60px 20px;
   
}

/* Headings */
.technology-section h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Paragraph text */
.technology-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
    margin: 0 auto 25px auto; /* center align text block */
}

/* Image wrapper
.technology-img {
    margin-top: 20px;
}

.technology-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;  center image 
    object-fit: contain;
} */

.technology-img {
    margin-top: 20px;
    text-align: center; 
}

.technology-img img.technology-image {
    max-width: 70%;     
    width: 100%;         
    height: auto;         
    display: block;       
    margin: 0 auto;      
    object-fit: contain;  
    border-radius: 8px;   
}

/* Responsive typography */
@media (max-width: 992px) {
    .technology-section h4 {
        font-size: 1.6rem;
    }
    .technology-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .technology-section h4 {
        font-size: 1.4rem;
    }
    .technology-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
@media (min-width: 1200px) {
    .technology-img img.technology-image {
        max-width: 800px;
    }
}
