.col-lg-22 {-webkit-box-flex: 0;flex: 0 0 13.5%;max-width: 13.5%;}

.technology_area { 
    background:url(../picture/bg2.png);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.technology_area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(115, 170, 131, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Left Image Section */
.tech_image_wrap {
    position: relative;
    padding: 20px;
}

.tech_image_box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(23, 54, 48, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.tech_image_box:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(23, 54, 48, 0.2);
}

.tech_image_box img {
    width: 100%;
    height: auto;
    display: block;
}

.tech_glow_effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(115, 170, 131, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Right Content Section */
.tech_content_wrap {
    padding-left: 0px;
}

.tech_section_title {
    margin-bottom: 60px; text-align: right;
}

.tech_section_title h2 {
    font-size: 2.084vw;
    font-weight: 700;
    color: #173630;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
}

.tech_title_line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #018b35, #173630);
    border-radius: 2px;
    position: relative;
    float: right;
}

/* .tech_title_line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    width: 10px;
    height: 4px;
    background: #009e4a;
    border-radius: 2px;
    animation: linePulse 2s infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.5; transform: scaleX(1.5); }
} */

/* Stats Grid */
.tech_stats_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech_stat_item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.tech_stat_item:nth-child(1) { animation-delay: 0.1s; }
.tech_stat_item:nth-child(2) { animation-delay: 0.2s; }
.tech_stat_item:nth-child(3) { animation-delay: 0.3s; }
.tech_stat_item:nth-child(4) { animation-delay: 0.4s; }
.tech_stat_item:nth-child(5) { animation-delay: 0.5s; }
.tech_stat_item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat Card */
.tech_stat_card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(115, 170, 131, 0.1);
    box-shadow: 0 10px 30px rgba(23, 54, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech_stat_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(115, 170, 131, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech_stat_card:hover::before {
    left: 100%;
}

.tech_stat_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(23, 54, 48, 0.15);
    border-color: rgba(115, 170, 131, 0.3);
}

/* Stat Icon */
.tech_stat_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #07ae57 0%, #039c4c 100%);
   /*  background: linear-gradient(135deg, #73aa83 0%, #e8c72b 100%); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     box-shadow: 0 8px 20px rgba(115, 170, 131, 0.3); */
    transition: all 0.3s ease;
}

.tech_stat_card:hover .tech_stat_icon {
    transform: rotateY(360deg) scale(1.1);
   /*  box-shadow: 0 12px 25px rgba(115, 170, 131, 0.4); */
}

.tech_stat_icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

/* Stat Number */
.tech_stat_number {
    font-size: 42px;
    font-weight: 800;
    color: #73aa83;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.counter {
    background: linear-gradient(135deg, #73aa83 0%, #e8c72b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.plus {
    font-size: 32px;
    color: #73aa83;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Stat Label */
.tech_stat_label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}


.f_link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.f_link a img {margin:0px 0;}


.t_link {
    display: inline-block;
    align-items: center;
  
}
.t_link a img {margin-left:5px; height: 20px;}

/* Responsive */
@media (max-width: 991px) {
    .tech_content_wrap {
        padding-left: 0;
        margin-top: 0px;
    }
    
    .tech_stats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech_section_title h2 {
        font-size: 28px;
    }
    
    .tech_stat_number {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .technology_area {
        padding: 10px 0 50px 0;
        margin-top: 30px;
        background-size: cover;
    }
    
   
    
    .tech_image_box {
        transform: none;
    }

   
}

/* ==================== Impact Stats Area ==================== */
.impact_stats_area {
    padding: 100px 0;
    background: #f8faf9;
}

.impact_stats_area .witr_section_title {
    margin-bottom: 50px;
}

.impact_stats_area .witr_section_title_inner h2 {
    font-size: 17px; 
    color: #73aa83;
    margin-bottom: 2px;
}

.impact_stats_area .witr_section_title_inner h3 {
    font-size:2.084vw;
    font-weight: 700;
    color: #173630;
    line-height: 1.2;
    font-family: 'Jost', sans-serif;
}

/* Impact Grid Layout */
.impact_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

/* Impact Cards */
.impact_card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.impact_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 54, 48, 0.05);
}

/* Text Cards */
.impact_card_text {
    background: #e8ebe9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact_label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 600;
}

.impact_number {
    font-size: 36px;
    font-weight: 800;
    color: #173630;
    font-family: 'Jost', sans-serif;
    margin: 10px 0;
}

.impact_desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Dark Card */
.impact_card_dark {
    background: #0d5c3b url(../picture/jia-4.jpg) no-repeat right top;
    background-size: cover;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 2;
}

.impact_card_dark .impact_label {
    color: rgba(255, 255, 255, 0.7);
}

.impact_card_dark .impact_number {
    color: #fff;
    font-size: 30px;
}

.impact_card_dark .impact_desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Image Cards */
.impact_card_image {
    position: relative;
    overflow: hidden;
}

.impact_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.impact_card_image:hover img {
    transform: scale(1.08);
}

/* Grid Positioning */
.impact_card_text:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.impact_card_tall {
    grid-column: 2;
    grid-row: 1 / 3;
}

.impact_card_text:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.impact_card_image:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
}

.impact_card_image:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.impact_card_dark:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 2;
}


.henfam-description-area p { font-size: 15px; line-height: 1.4; }
.henfam-description-area p.phone { margin-top: 1rem; margin-bottom: .5rem;}
@media (max-width: 1450px) {
.impact_number {  font-size: 28px;}
.impact_card_dark .impact_number {font-size: 24px;}

}
@media (max-width: 1280px) {
.impact_number {    font-size: 24px;}
.impact_card_dark .impact_number {    font-size:22px;}
.impact_stats_area .witr_section_title_inner h3 {  font-size: 28px;}

.all_blog_color h2 a {   font-size:18px;}

.footer-middle .widget ul li, .footer-middle .widget ul li a, .footer-middle .widget ul li::before, .footer-middle .tagcloud a, .footer-middle caption, .footer-middle table, .footer-middle table td a, .footer-middle cite, .footer-middle .rssSummary, .footer-middle span.rss-date, .footer-middle span.comment-author-link, .footer-middle .textwidget p, .footer-middle .widget .screen-reader-text, mc4wp-form-fields p, .mc4wp-form-fields, .footer-m-address p, .footer-m-address, .footer-widget.address, .footer-widget.address p, .mc4wp-form-fields p, .henfam-description-area p, .henfam-description-area .phone a, .henfam-description-area .social-icons a, .recent-review-content h3, .recent-review-content h3 a, .recent-review-content p, .footer-middle .henfam-description-area p, .footer-middle .recent-post-text h4 a, .footer-middle .recent-post-text .rcomment, .witr_sub_table span {
    color: #ffffff;
    font-size: 13px;
}
.footer-middle .widget h2 {   font-size: 16px;}

.tech_section_title h2 { font-size:28px;}
.tech_stat_card { zoom: 0.8;}
.tech_content_wrap {  width: 90%;   float: right;}

}

/* Responsive */
@media (max-width: 991px) {
    .impact_stats_area {
        padding: 60px 0;
    }
    

    .impact_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .impact_card {
        min-height: 200px;
    }
    
    .impact_card_tall {
        grid-column: 2;
        grid-row: span 2;
        min-height: 420px;
    }
    
    .impact_card_dark {
        grid-column: span 2;
    }

    .tech_content_wrap { width: 70%;}

}  
   

@media (max-width: 576px) {
    .impact_grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    .impact_card,
    .impact_card_tall,
    .impact_card_dark {
        grid-column: 1;
        grid-row: auto;
        min-height: 180px;
    }
    
    .impact_card_tall {
        min-height: 300px;
    }
    
    .impact_card_dark {
        grid-column: 1;
    }
    
    .impact_number {
        font-size: 28px;
    }
    


    .col-lg-22 { display: none;}
    .f_link {justify-content: center;}

     .impact_stats_area .witr_section_title {   margin-bottom:20px;}

     .tech_content_wrap {     width: 100%;   }
     .tech_stat_card {padding: 15px 0px;}
     .tech_section_title h2 {    font-size: 21px;   }
     .impact_stats_area .witr_section_title_inner h3 {     font-size: 21px;    }
     .impact_card_text {padding: 20px;}
     .impact_card_dark {padding: 20px;}
    
}

