.list-project-info {
    ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -12px;
        gap: 24px 0;
        padding: 0;

        li {
            padding: 0 12px;
            flex: 0 0 20%;
            max-width: 20%;
        }
    }
}

.item-overview {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;

    p {
        margin: 0;
        line-height: normal;
        font-weight: bold;
        color: #000000;
    }
}

/* Services Tabs Styles */
.services-tabs-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-tabs-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.services-nav {
    flex: 0 0 300px;
    background: #fff;
    border-right: 1px solid #eee;
    padding: 30px 0;
}

.services-nav .nav-link {
    padding: 20px 30px;
    color: #444;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: block;
    width: 100%;
}

.services-nav .nav-link:hover {
    background: rgba(119, 183, 67, 0.05);
    color: var(--tg-primary-color);
}

.services-nav .nav-link.active {
    background: rgba(119, 183, 67, 0.1);
    color: var(--tg-primary-color);
    border-left-color: var(--tg-primary-color);
}

.services-content-wrap {
    flex: 1;
    padding: 50px;
}

.service-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-tab-pane.active {
    display: block;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-img-wrapper {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 6;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-wrapper:hover img {
    transform: scale(1.05);
}


.service-detail-text-wrapper {
    color: #555;
    line-height: 1.7;
}

.service-detail-text-wrapper p {
    margin-bottom: 20px;
}

.service-detail-text-wrapper h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text-wrapper ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-detail-text-wrapper ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.service-detail-text-wrapper ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--tg-primary-color);
    font-size: 14px;
}

.service-detail-text-wrapper .highlight-tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-primary-color);
    margin-top: 30px;
    border-left: 4px solid var(--tg-primary-color);
    padding-left: 20px;
    font-style: italic;
}

.service-detail-text-wrapper .sub-header-bold {
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991px) {
    .services-nav {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .services-nav .nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        padding: 15px 20px;
    }

    .services-nav .nav-link.active {
        border-bottom-color: var(--tg-primary-color);
    }

    .services-content-wrap {
        padding: 30px 20px;
    }
}

/* Custom Contact Form Styles */
#custom-contact-form .form-grp {
    margin-bottom: 24px;
}

#custom-contact-form .form-grp input,
#custom-contact-form .form-grp textarea {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--tg-secondary-color);
    border-radius: 8px;
    padding: 13px 24px;
    font-weight: 400;
    font-size: 15px;
    color: var(--tg-secondary-color);
    height: 56px;
    display: block;
    transition: all 0.3s ease;
}

#custom-contact-form .form-grp textarea {
    min-height: 200px;
    max-height: 200px;
}

#custom-contact-form .form-grp input:focus,
#custom-contact-form .form-grp textarea:focus {
    border-color: var(--tg-primary-color) !important;
    outline: none;
}

#custom-contact-form .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-left: 0;
}

#custom-contact-form .form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--tg-primary-color);
}

#custom-contact-form .form-check label {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
    cursor: pointer;
}

#custom-contact-form .form-submit {
    text-align: center;
}

#custom-contact-form .form-submit input[type="submit"] {
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    padding: 16px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#custom-contact-form .form-submit input[type="submit"]:hover {
    background: var(--tg-secondary-color);
    transform: translateY(-2px);
}

#custom-contact-form .form-submit input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Response Message Styling */
#form-response-msg {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    display: none;
}

#form-response-msg.success {
    background: #f6fff0;
    color: #77b743;
    border: 1px solid #77b743;
}

#form-response-msg.error,
#home-form-response-msg.error {
    background: #fff5f5;
    color: #f3871f;
    border: 1px solid #f3871f;
}

#home-form-response-msg {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    display: none;
}

#footer-form-response-msg {
    margin-top: 10px;
    font-size: 13px;
    display: none;
}

.about-area {
    height: 100vh;
    background: url(../images/banner-home-new.png) no-repeat center left,
        linear-gradient(7deg, #366b0a -26.26%, #77b743 50%, #1c2812 127.02%);
    background-size: auto 100%;
    position: relative;
}

.about-area .about-content p {
    color: #fff;
    margin-bottom: 10px;
}

.area-contact {
    height: 100vh;
    background: url(../images/pl2.png) no-repeat center right,
        linear-gradient(351deg, #366b0a -26.26%, #77b743 50%, #1c2812 127.02%);
    background-size: auto 100%;
    position: relative;
}

/* .area-contact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
} */

.area-contact .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .about-area::before, .area-contact::before  {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    .about-area .container, .area-contact .container {
        position: relative;
        z-index: 2;
    }
}