.description {
    text-align: justify;
}

/* main img css */
.images-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 5% 0px 0% 0px;
}

.full-width-image {
    width: 100%;
    height: 250px;
}

@media (max-width: 767px) {
    .full-width-image {
        height: 19%;
        margin: 23% 0 0 0;
    }

    .overlay-text {
        left: 5%;
        top: 73%;
        font-size: 14px;
        padding: 5px;
    }
    .image-containers {
        margin-left: 0px !important;
    }
}

/* main card css */
.development-services-repeated-section {
    padding: 40px 0 0 0;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}

.development-services-repeated-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.services-content {
    flex: 1;
    padding: 20px;
}

.service-contentbox {
    margin-bottom: 20px;
}

.text-color-blue {
    color: #007bff;
}

.services-content p {
    margin: 10px 0 20px;
}

.services-content ul {
    list-style-type: none;
    padding: 0;
}

.services-content ul li {
    margin: 10px 0;
}

.services-content ul li a {
    color: #333;
    text-decoration: none;
}

.services-content ul li a:hover {
    text-decoration: underline;
}

.services-buttons {
    margin-top: 20px;
}

.primary-button {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-transparent {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    margin-right: 10px;
}

.btn-blue {
    background-color: #007bff;
    color: #fff;
}

.btn-blue img {
    margin-left: 5px;
}

.services-image {
    background-color: #FFCDBC;
    width: 50%;
    border-radius: 50% 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60vh;
    overflow: visible;
}

.tilt {
    width: 106%;
    height: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.services-image-2 {
    background-color: #F0E1D2;
    width: 50%;
    border-radius: 0% 50% 50% 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60vh;
    overflow: visible;
}

.tilt {
    width: 106%;
    height: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.services-image-3 {
    background-color: #FFCDBC;
    width: 50%;
    border-radius: 50% 0% 0% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60vh;
    overflow: visible;
}

.tilt {
    width: 106%;
    height: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    margin: 0;
    color: black;
}

.item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-list li {
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.item-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #ff685f;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 0;
}

.item-list li:hover::before {
    width: 200%;
    left: 0;
}

.item-list li:hover {
    color: #fff;
}

.item-list li:hover span {
    position: relative;
    z-index: 1;
}


.development-services-repeated-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.development-services-repeated-section.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .development-services-repeated-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .services-content,
    .services-image,
    .services-image-2,
    .services-image-3 {
        width: 100%;
        text-align: center;
    }
}
/* end main card css */

.hidden {
    display: none;
}

.image-containers {
    float: right;
    margin-top: 10px;
    margin-left: 20px;
}

.erp-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section {
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FFCDBC;
}

.section-1 {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.section {
    cursor: pointer;
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.section:hover {
    color: #ff685f;
}

.erp-description {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
    opacity: 0;
    transition: opacity 0.5s;
}

.erp-description.visible {
    opacity: 1;
}

.section-1:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .section {
        flex-direction: column;
        align-items: center;
    }

    .erp-image {
        width: 100%;
        height: auto;
        margin-top: 10px;
    }

    .heading-text {
        text-align: center !important;
        font-size: 1.5rem !important;
    }

    .item-list {
        font-size: 1rem;
    }
}

/* main services description css */
.centered-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.centered-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.erp {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.erp.visible {
    opacity: 1;
    transform: translateY(0);
}

/* end main services description css */
.heading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5FC8FF;
    margin-bottom: 0.5rem;
    text-transform: capitalize !important;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
}

/* who we are section css */
.tp-about-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tp-ab-section-title-box {
    text-align: left;
}

.tp-section-subtitle {
    font-size: 18px;
    color: #5FC8FF;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tp-section-title {
    font-size: 36px;
    font-weight: bold;
    color: #f9f9f9;
    margin-bottom: 20px;
    line-height: 1.4;
}

.tp-ab-section-title-box p {
    font-size: 16px;
    color: #f9f9f9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tp-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #e71c22;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tp-btn:hover {
    background-color: #c4161d;
    transform: translateY(-2px);
}

.adbaties {
    position: relative;
    height: auto;
    overflow: hidden;
    background-image: url('https://t4.ftcdn.net/jpg/09/41/54/21/360_F_941542111_x8zvgcTUGY1w42pObXuUiSDUEuthxGuG.jpg');
    background-attachment: fixed;
}
/* end who we are section css */

@media(min-width: 769px) and (max-width: 992px) {
    .services-content {
        flex: 1;
        padding: 0px;
    }
}
