/*Service Page Headline Style Sheet Started Here  */

/* Main section styling */
.services-back-image {
    height: 200px; 
    display: flex; 
    justify-content: center; 
    width: 100%; 
    padding: 0; 
    /* box-sizing: border-box;  */
    background-color: white;
}

/* Overlay styling for content inside the section */
.overlay-Services {
    text-align: center; 
    width: 100%; 
    font-family: 'Georgia', serif;
    /* box-sizing: border-box; Include padding in width */
}

/* Heading styling */
.overlay-Services h2 {
    font-size: 24px; 
    margin: 0; 
    color: #b78727; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-family: 'Georgia', serif;
}

/* Style for the horizontal rule */
hr {
    width: 50px;
    border: 2px solid #b78727;
    margin: auto;
}
/* Paragraph text styling */
.overlay-Services h3 {
    font-size: 18px; 
    margin-top: 10px; 
    color: #b78727; 
    line-height: 1.5; 
    font-family: 'Georgia', serif;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .services-back-image {
        height: auto; 
    }

    .overlay-Services h2 {
        font-size: 20px; 
    }

    .overlay-Services p {
        font-size: 14px; 
    }
}

/*Service Page Headline Style Sheet Ended Here  */



/* Services Page Style Sheet Started Here */

.offerings-section {
    padding: 40px 0;
    background-color: white;
    text-align: center;
    font-family: 'Georgia', serif;
    color: #b78727;
}

.offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.offering-item {
    width: calc(33.33% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    font-family: 'Georgia', serif;
}

.offering-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.offering-item h3 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.offering-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    text-align: center;
    font-family: 'Georgia', serif;
}

.offering-item:hover {
    transform: scale(1.05);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 992px) {
    .offering-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .offering-item {
        width: 100%;
    }
}

/* Services Page Style Sheet Ended Here */
