/* General styles */
.tp-about-text {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 45px;
    padding: 0 20px;
}

.tp-about-text p {
    margin-bottom: 15px;
}

.tp-about-text b {
    font-weight: bold;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.col-xl-6,
.col-lg-4,
.col-md-6,
.col-sm-6 {
    padding: 0 15px;
}


/* Service item styles */
.tp-service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
}

.tp-service-thumb img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.tp-service-title {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tp-service-content p {
    font-size: 16px;
    color: #666;
    line-height: 2;
}

.tp-service-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.tp-service-content a svg {
    width: 18px;
    height: 12px;
    fill: #007bff;
    transition: transform 0.3s ease-in-out;
}

.tp-service-content a:hover svg {
    transform: translateX(5px);
}

/* Social icons */
.headersocial-icons {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-right: 20px;
}

.social-icon {
    font-size: 20px;
    color: #000;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: rgb(255, 0, 0);
}

/* Highlights section */
.highlights {
    display: flex;
    justify-content: space-around;
    background-color: #F6F5ED;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    text-align: center;
    padding: 15px;
    border: 2px solid #009688;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    background-color: #ffffff;
}

.highlight-box h2 {
    color: #00796b;
}

/* Button styles */
.tp-btn-theme span {
    color: white;
}

.tp-btn-theme {
    color: white;
}

.tp-btn-grey.theme-bg.hover-2 {
    color: white;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .col-xl-6,
    .col-lg-4,
    .col-md-6,
    .col-sm-6 {
        padding: 0 20px;
        margin-bottom: 30px;
        width: 100%;
    }

    .tp-service-item {
        padding: 15px;
    }

    .highlight-box {
        max-width: 90%;
        margin: 15px 0;
    }

    .headersocial-icons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-box {
        max-width: 90%;
        margin: 15px 0;
    }

    .tp-service-title {
        font-size: 18px;
    }

    .tp-service-content p {
        font-size: 14px;
    }

    .tp-service-item {
        padding: 15px;
    }

    .row {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .tp-about-text {
        padding: 0 10px;
    }

    .tp-service-title {
        font-size: 16px;
    }

    .tp-service-content p {
        font-size: 14px;
    }

    .highlight-box {
        width: 100%;
        padding: 10px;
    }

    .highlight-box h2 {
        font-size: 18px;
    }

    .social-icon {
        font-size: 18px;
    }
}