.services-section {
    padding: 80px 0;
    /* background-color: var(--primary-bg); */
}

.services-section__main_heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black-text);
    margin-bottom: 20px;
}

.services-section__main_description {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black-text);
    margin-bottom: 20px;
}

.services___main-img {
    width: 100%;
    border-radius: 25px;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 25px 25px 0px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 0.5px solid var(--primary);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.service-card:hover {
    transform: translateY(-10px);
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black-text);
}

.service-card p {
    color: var(--black-text);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 15px;
    }
}

/* Before & After CSS Starts Here */
.before-after-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .comparison-container {
        height: 300px;
    }
}

.before-label,
.after-label {
    position: absolute;
    padding: 5px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    border-radius: 4px;
}

.before-label {
    top: 15px;
    left: 15px;
}

.after-label {
    top: 15px;
    right: 15px;
    background-color: #4CAF50;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .before-after-section {
        padding: 50px 0;
    }

    .comparison-container {
        margin-bottom: 20px;
    }
}

/* Before & After CSS Ends Here */

/* How it works CSS Starts Here */
.how__section_title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary-bg);
}

.how___title_description {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--secondary-bg);
    font-size: 1.1rem;
}

.how___feature_icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-bg);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.how___feature_icon:hover {
    background-color: var(--primary);
}

.how___feature_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-bg);
}

.how___feature_text {
    color: var(--secondary-bg);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* How it works CSS Ends Here */

/* Home Hero Section CSS Starts Here */
.main_home____bg {
    background-image: linear-gradient(#0000003b, rgba(0, 0, 0, 0.5)), url('../img/main-bg.jpg');
    color: var(--white-text);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page___main-header {
    background-image: linear-gradient(#0000003b, rgba(0, 0, 0, 0.5)), url('../img/page-header-bg.jpg');
    color: var(--white-text);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Home Hero Section CSS Ends Here */