 .about-sec{
            padding-bottom: 0rem!important;
            padding-top: 1rem!important;
        }   
        .text-justify{
            text-align: justify!important;
        }
        .heading-title{
            color: #976e43;
        }
        .service-sec{
            padding-top: 2rem;
        }
        .title-area{
            margin-top: 0px;
        }

.service-box_icon {
        font-family: var(--title-font);
        font-size: 2rem; /* Adjust font size as needed */
        font-weight: bold;
        color: #333; /* Change to the desired color */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px; /* Adjust width to fit */
        height: 60px; /* Adjust height to fit */
        background-color: #f2f2f2; /* Optional background */
        border-radius: 50%; /* Make it circular */
    }
    
    .icon-number {
        display: inline-block;
        line-height: 1; /* Center the number vertically */
    }
    
 /* Base styling for service box */
        .service-box {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
            background-color: var(--smoke-color);
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            height: 100%;
            position: relative;
        }
        
        /* Fixed height for larger screens */
        @media (min-width: 1200px) {
            .service-box {
                height: 288px; /* Set the desired height for extra-large screens */
            }
        }
        
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .service-box {
                height: 320px; /* Set height for large screens */
            }
        }
        
        @media (min-width: 768px) and (max-width: 991.98px) {
            .service-box {
                height: 300px; /* Set height for medium screens */
            }
        }
        
        /* Flexible height for smaller screens */
        @media (max-width: 767.98px) {
            .service-box {
                height: auto;
            }
        }
        
        /* Additional styling for service image alignment */
        .service-img {
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* Responsive adjustments for box-title and text */
        .box-title {
            font-size: 1.25rem;
            margin: 10px 0;
        }
        
        .service-box_text {
            font-size: 0.95rem;
        }
        
