.services-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
}

.service-section-left {
    flex: 1 1 30%; /* Flex basis of 300px, can grow and shrink */
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-section-left-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;

}


.service-section-right {
    flex: 1 1 calc(70% - 10px); /* Flex basis of 50% - 20px, can grow and shrink */
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
    }

    .service-section-left,
    .service-section-right {
        flex: 1 1 100%; /* Full width on smaller screens */
        margin-bottom: 20px;
    }
}




/* Our Services Cards */
.our-services-details{
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    background-color: white;
    gap: 10px;
    margin-bottom:4px;
    margin-top:4px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    position:relative;
}

.our-services-details::before,
.our-services-details::after {
    content: '';
    position: absolute;
    top: 4px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
}

.our-services-details::before {
    border-width: 20px 20px 0 0;
    border-color: var(--primary-color) transparent transparent transparent; /* Change 'red' to your desired color */
    transform: rotate(135deg);
}

.our-services-details::after {
    border-width: 0 20px 20px 0;
    border-color: var(--primary-color) transparent transparent transparent; /* Change 'red' to your desired color */
    transform: rotate(135deg);
}


.our-services-details-items {
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 10px);
    background-color: var(--light-accent);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.our-services-details-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.our-services-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-color);
}

.our-services-details-items h5 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.our-services-details-items p {
    margin-top: 5px;
    line-height: 1.4;
    color: var(--dark-accent);
    font-size: 14px;
}



.our-services-detail-text {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Headings */
.our-services-detail-text h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.our-services-detail-text h5 {
    color: #555;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Paragraph */
.our-services-detail-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.our-services-detail-text button {
    padding: 10px 20px;
    background-color: #C8102E;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.our-services-detail-text button:hover {
    background-color: #9C0014;
}

/* Button Link */
.our-services-detail-text .service-btn {
    text-decoration: none;
    color: #fff;
}

.our-services-detail-text .service-btn:hover {
    text-decoration: underline;
}

