* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.image-row-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.image-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.image-heading {
    margin: 10px 0;
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 5px;
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Rounded corners */
    border: 3px solid #ff6600; /* Border color and width */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.responsive-image:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .image-row-container {
        flex-direction: column;
        align-items: center;
    }
}




/* Contact icons container */
.contact-icons-call {
    position: fixed;
    bottom: 65px; /* Adjust the distance from the bottom as needed */
    right: 5px; /* Adjust the distance from the right as needed */
    z-index: 9999; /* Ensure the icons appear above other elements */
}

.contact-icons-wa {
    position: fixed;
    bottom: 130px; /* Adjust the distance from the bottom as needed */
    right: 5px; /* Adjust the distance from the right as needed */
    z-index: 9999; /* Ensure the icons appear above other elements */
}

/* Style for WhatsApp icon */
.whatsapp-icon img {
    width: 50px; /* Adjust the width as needed */
    height: auto;
    border: none;
    margin-right: 10px; /* Add some spacing between icons */
}

/* Style for Call icon */
.call-icon img {
    width: 50px; /* Adjust the width as needed */
    height: auto;
    border: none;
	margin-right: 10px;
}

