﻿/* Styling for the service image and title */

.service-content {
    margin-top: 40px;
    display: block;
}

    .service-content .horizontal-image {
        float: left;
        width: 100%;
        max-width: 450px;
        margin: 0 20px 20px 0;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-content::after {
        content: "";
        display: block;
        clear: both;
    }

/* Vertical image next to the contact section */
.contact-section {
    margin-top: 50px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    text-align: center;
}

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        color: #11374C;
        font-weight: 600;
    }

    .contact-info p {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 5px;
    }

    .contact-info .email a {
        color: #C46623;
        font-weight: 600;
        text-decoration: none;
    }

        .contact-info .email a:hover {
            text-decoration: underline;
        }

/* Styling for the smaller vertical image */
.vertical-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .service-detail {
        padding-left: 10px;
        margin-top: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-detail {
        padding-left: 10px;
        margin-top: 20px;
    }

    .service-content .horizontal-image {
        float: none;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-content img {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .service-header h1 {
        font-size: 2rem;
    }

    .service-detail {
        padding-left: 10px;
    }

    .contact-info {
        text-align: center;
        padding: 30px 15px;
    }

    .vertical-image {
        margin-top: 20px;
        text-align: center;
    }

        .vertical-image img {
            max-width: 100%;
        }
}

.contact-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}







