
/* BETHEME SERVICES DEFINITIVE REPLICATION */

.mcb-section-services {
    background-color: #fff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.service-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 120px auto; /* Added 120px bottom margin for spacing */
    position: relative;
    padding: 0 40px;
}

/* Vertical Line connecting numbers */
.service-row::after {
    content: '';
    position: absolute;
    top: 100px; /* Start below the number */
    bottom: 20px; /* Stop near the bottom of the row's content instead of extending */
    left: 50%;
    width: 2px; /* Slightly thicker for better dotted visibility */
    background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%); /* Dotted effect via gradient */
    background-size: 2px 10px; /* Size of dots */
    background-color: transparent;
    z-index: 1;
}

.service-row:last-child::after { display: none; }

.col-image, .col-text {
    width: 42%;
    flex: 0 0 42%;
    z-index: 5;
}

.col-number {
    width: 16%;
    flex: 0 0 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Image styles */
.img-container img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* Number styles (Outlined large numbers) */
.num-large {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #ddd; /* Light outline as in PDF */
    margin-top: -20px;
}

.active .num-large {
    -webkit-text-stroke: 1px var(--neon, #50E3C2);
}

/* Content styles */
.text-container {
    padding: 20px 40px;
}

.text-container .service-icon {
    font-size: 40px;
    color: var(--neon, #50E3C2);
    margin-bottom: 20px;
}

.text-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.text-container ul li {
    font-size: 15px;
    color: #626262;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.text-container ul li i {
    color: var(--neon, #50E3C2);
    font-size: 18px;
    margin-top: 2px;
}

/* Alternating layout logic */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row.reverse .text-container {
    text-align: right;
}

.service-row.reverse .text-container ul li {
    flex-direction: row-reverse;
}

/* Intro section */
.services-intro {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
}

.intro-img {
    margin-bottom: 60px;
}

.intro-img img {
    width: 100%;
    height: auto;
}

.intro-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.intro-left { width: 50%; }
.intro-right { width: 40%; }

.uptitle {
    color: var(--neon, #50E3C2);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-title {
    font-size: 44px;
    font-weight: 600;
    color: #1b1b1b;
}

/* Responsive */
@media (max-width: 991px) {
    .service-row, .service-row.reverse { flex-direction: column; align-items: center; text-align: center; }
    .col-image, .col-text, .col-number { width: 100%; flex: 0 0 100%; }
    .service-row::after { display: none; }
    .text-container { padding: 40px 0; }
    .text-container ul li { justify-content: center; }
    .intro-grid { flex-direction: column; }
    .intro-left, .intro-right { width: 100%; }
}

