/* hero */
.container-0- {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: rgba(11, 11, 11, 0.32);
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container-0{
    position: relative;
    width: 100%;
}

.container-1{
    display: flex;
    flex-direction: column;
    max-width: 600px;
    gap: 20px;
    margin: 50px;
}

.text-2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.text-3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ddd;
    line-height: 1.6;
}



/* Features */
.container.features {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    flex-wrap: wrap;
    height: fit-content;
}

.feature-dropdown {
    display: none;
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.left-panel {
    flex: 1;
    height: fit-content;
    background-color: #f0f0f0;
    padding: 20px;
    min-width: 250px;
}

.left-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-panel ul li {
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #e6e6e6;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s ease-in-out, color 0.3s;
    text-align: center;
}

.left-panel ul li:hover,
.left-panel ul li.active {
    background-color: #18a686;
    color: white;
}

.verticalline {
    width: 5px;
    background-color: #18a686;
    position: relative;
    border-radius: 2px;
    z-index: 2;
}

.verticalline .select {
    position: absolute;
    top: 0;
    left: -8px;
    background-color: #18a686;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
    z-index: 2;
}

.right-panel {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;

}

.right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.right-panel > * {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.details {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.details.active {
    display: block;
}

.right-panel h2 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: white;
}

.right-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container.features {
        flex-direction: column;
        text-align: center;
    }

    .feature-dropdown {
        display: block;
    }

    .left-panel ul {
        display: none;
    }

    .right-panel {
        padding: 20px;
    }

    .right-panel h2 {
        font-size: 24px;
    }

    .right-panel p {
        font-size: 14px;
    }
}




/* Why Choose This Service */
.service-description {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.service-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.service-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-box h2 {
    font-size: 1.5rem;
    color: #18a686;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}



/* Industries */
.features-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    margin-bottom: 10px;
}

.feature-card h2 {
    font-size: 1.5rem;
    color: #18a686;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-section .container {
        flex-direction: column;
    }
    .left-panel ul li {
        font-size: 14px;
    }
    .verticalline {
        display: none;
    }
    .feature-list {
        display: none;
    }

    .feature-dropdown {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 20px;
    }

    .service-features {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }

    .feature-box {
        width: 90%;
    }
}


/* Steps Map */
.steps-map {
    background-image: linear-gradient(30deg, #076767 0%, #18a686 100%);
    background-repeat: no-repeat;
    height: fit-content;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.steps-progress {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.steps-title{
    font-weight: 900;
    font-size: large;
}

.steps-progress-head {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    width: 100%;
    position: relative;
    list-style: none;
    padding: 0;
}

.steps-list::before {
    content: "";
    position: absolute;
    top: 2;
    left: 50%;
    width: 2px;
    height: calc(100% - 2px);
    background-color: #fff;
    transform: translateX(-50%);
}

.steps-item {
    width: 50%;
    position: relative;
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    padding-top: 0;
}

/* Alternating Left and Right */
.steps-item:nth-child(even) {
    text-align: left;
    margin-left: auto;
}

.steps-item:nth-child(odd) {
    text-align: right;
    margin-right: auto;
}

/* Step Dots */
.steps-item::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #18a686;
    transition: height 0.3s ease-in-out;
}

.steps-item:nth-child(odd)::before {
    left: calc(100% - 6px);
}

.steps-item:nth-child(even)::before {
    right: calc(100% - 6px);
}


/* Hover Effect - Old Style */
.steps-item:hover::before {
    height: calc(100% + 2px);
    background-color: #52c234;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    [dir='ltr'] .steps-list::before {
        left: 20px;
    }
    [dir='rtl'] .steps-list::before {
        right: 20px;
    }
    .steps-item {
        width: 100%;
        text-align: left;
        padding-left: 40px;
    }
    [dir='ltr'] .steps-item:nth-child(odd)::before {
        left: 14.5;
    }
    [dir='ltr'] .steps-item:nth-child(even)::before {
        right: calc(100% - 26.5px);
    }
    [dir='rtl'] .steps-item:nth-child(odd)::before {
        right: 16;
    }
    [dir='rtl'] .steps-item:nth-child(even)::before {
        right: 16;
    }
    .steps-item:nth-child(even) {
        text-align: start;
        margin-left: auto;
    }
    .steps-item:nth-child(odd) {
        text-align: start;
        margin-right: auto;
    }
}






.solve {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.service-features {
    flex: 1 1 calc(50% - 10px); /* 2 columns on larger screens */
    max-width: calc(50% - 10px);
}

/* Make it full-width on smaller screens */
@media (max-width: 768px) {
    .service-features {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
