a:hover {
            color: #1e45b6 !important;
        }

        span:hover {
            color: #1e45b6 !important;
        }


        .request-a-quote__left_custom h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .request-a-quote__left_custom p {
            font-size: 1.5rem;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: black;

        }


        .latest-project__tab a.active {
            font-weight: bold;
            color: #1e45b6;
            border-bottom: 2px solid #1e45b6;
        }


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

        .pagination li {
            margin: 0 5px;
        }

        .pagination a {
            display: inline-block;
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .pagination a:hover {
            background-color: #f5f5f5;
            border-color: #aaa;
        }

        .pagination a.active {
            background-color: #1e45b6;
            color: #fff;
            border-color: #1e45b6;
            font-weight: bold;
        }

        .pagination i {
            font-size: 14px;
        }

        @media (max-width: 568px) {
            .project_image {
                width: 100% !important;
                height: 430px !important;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb__area {
                display: none !important;
            }

            .team {
                margin-top: 100px !important;
            }
        }

        .latest-project__item-content {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .latest-project__item:hover .latest-project__item-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }