/* Fix for Software Development and Web App Development headings */
/* Keep headings on single line and make them responsive */

.common-home-sect4 .common-sect-para h3 {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .common-home-sect4 .common-sect-para h3 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
}

@media (max-width: 992px) {
    .common-home-sect4 .common-sect-para h3 {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
    }
}

@media (max-width: 768px) {
    .common-home-sect4 .common-sect-para h3 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        white-space: normal;
        word-wrap: break-word;
    }
}

@media (max-width: 576px) {
    .common-home-sect4 .common-sect-para h3 {
        font-size: clamp(1rem, 6vw, 1.5rem);
        white-space: normal;
        line-height: 1.3;
    }
}

/* Extra small devices - allow wrapping but optimize spacing */
@media (max-width: 400px) {
    .common-home-sect4 .common-sect-para h3 {
        font-size: clamp(0.9rem, 7vw, 1.3rem);
    }
}
