.stats-section {
    background: #fff;
    padding: 0 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px
}

.stats-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,#f5c400,#11559b,transparent)
}

.stats-section .stats-container {
    max-width: 1400px;
    margin: 0 auto;padding-top: 40px !important;
    padding: 0 20px
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px
}

.stats-section .stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px 21px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgb(0 0 0 / .05)
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,#f5c400,#ffd740);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1)
}

.stats-section .stat-card:hover::before {
    transform: scaleX(1)
}

.stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgb(245 196 0 / .15)
}

.stats-section .stat-card:nth-child(2)::before {
    background: linear-gradient(90deg,#11559b,#1976d2)
}

.stats-section .stat-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgb(17 85 155 / .15)
}

.stats-section .stat-card:nth-child(3)::before {
    background: linear-gradient(90deg,#f5c400,#11559b)
}

.stats-section .stat-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgb(245 196 0 / .12)
}

.stats-section .stat-card:nth-child(4)::before {
    background: linear-gradient(90deg,#11559b,#f5c400)
}

.stats-section .stat-card:nth-child(4):hover {
    box-shadow: 0 12px 40px rgb(17 85 155 / .12)
}

.stats-section .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,#f5c400 0%,#ffd740 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 10px!important;
    position: relative;
    transition: all 0.4s ease
}

.stats-section .stat-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg,#11559b 0%,#1976d2 100%)
}

.stats-section .stat-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg,#176cc2 0%,#11559b 100%)
}

.stats-section .stat-card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg,#f7cb1f 0%,#fbcf26 100%)
}

.stats-section .stat-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg)
}

.stats-section .icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: .3;
    filter: blur(20px);
    z-index: -1
}

.stats-section .icon-wrapper svg {
    width: 21px;
    height: 21px;
    fill: #fff
}

.stats-section .stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 7px;
}

.stats-section .stat-value {
    font-size: 21px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px
}

.stats-section .stat-card:nth-child(1) .stat-value {
    background: linear-gradient(135deg,#f5c400 0%,#ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(2) .stat-value {
    background: linear-gradient(135deg,#11559b 0%,#1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(3) .stat-value {
    background: linear-gradient(135deg,#f5c400 0%,#11559b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-card:nth-child(4) .stat-value {
    background: linear-gradient(135deg,#816211 0%,#f5c400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.stats-section .stat-subtitle {
    font-size: .85rem;
    color: #868e96;
    font-weight: 500
}

.stats-section .decorative-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg,#f5c400 0%,transparent);
    opacity: .05;
    bottom: -40px;
    right: -40px;
    transition: all 0.4s ease
}

.stats-section .stat-card:hover .decorative-circle {
    transform: scale(1.2);
    opacity: .08
}

@media (max-width: 1200px) {
    .stats-section .stats-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding:60px 0
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .stats-section .stat-card {
        padding: 32px 24px
    }

    .stats-section .stat-value {
        font-size: 2.4rem
    }
}

@media (max-width: 576px) {
    .stats-section .stat-value {
        font-size:2rem
    }

    .stats-section .icon-wrapper {
        width: 56px;
        height: 56px
    }

    .stats-section .icon-wrapper svg {
        width: 28px;
        height: 28px
    }
}

.logos-scroller {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 0!important;
    padding: 0
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite
}

.partner-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center
}

.rtl .logos-track {
    animation-direction: reverse
}

.ltr .logos-track {
    animation-direction: normal
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.logos-scroller:hover .logos-track {
    animation-play-state: paused
}

.partners-section {
    background: #fff;
    padding: 50px 0
}

.partners-section .section-title {
    text-align: center;
    margin-bottom: 8px;
}

.partners-section .section-subtitle

 {
    /* font-size: 20px; */
    text-align: center;
    /* color: #666; */
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.partners-logo {
    height: 104px;
    object-fit: contain;
    transition: all 0.4s ease
}

.partners-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1)
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s ease
}

.partner-item:hover {
    background: rgb(255 255 255 / .8);
    border-radius: 12px
}

@media (max-width: 768px) {
    .partners-section {
        padding:80px 0
    }

    .partners-logo {
        height: 50px
    }
}.tabs-wrapper.case-study-wrapper {
    padding: 50px 0
}

.case-study-wrapper .tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px
}

.case-study-wrapper .custom-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    flex-wrap: wrap;
    justify-content: center
}

.tabs-wrapper.case-study-wrapper .section-heading {
    line-height: 1.2;
    margin-bottom: 8px;
}

.tabs-wrapper.case-study-wrapper .section-subtitle {
   
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto 40px;
  
    opacity: 1
}

.tabs-wrapper.case-study-wrapper .section-header {
    text-align: center
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar {
    height: 6px
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px
}

.case-study-wrapper .custom-tabs::-webkit-scrollbar-thumb {
    background: #f5c400;
    border-radius: 10px
}

.case-study-wrapper .tab-btn {
    background: #fff0;
    border: none;
    color: #495057;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    box-shadow: 0 4px 12px rgb(0 0 0 / .08);
    border: 1px solid #ddd
}

.case-study-wrapper .tab-btn:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / .08)
}

.case-study-wrapper .tab-btn.active {
    background: linear-gradient(135deg,#f5c400 0%,#ffdb4d 100%);
    color: #000;
    box-shadow: 0 6px 20px rgb(245 196 0 / .3)
}

.case-study-wrapper .tab-btn i {
    font-size: 18px
}

.case-study-wrapper .tab-content-wrapper {
    display: none;
    animation: fadeInUp 0.6s ease
}

.case-study-wrapper .tab-content-wrapper.active {
    display: block
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.case-study-wrapper .case-card {
    background: #fbfbfb;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1)
}

.case-study-wrapper .case-card:hover {
    border-color: #f5c400;
    box-shadow: 0 12px 48px rgb(0 0 0 / .1);
    transform: translateY(-8px)
}

.case-study-wrapper .case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.case-study-wrapper .client-badge {
    display: inline-block;
    background: #dfb71217;
    color: #000;
    padding: 3px 19px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
    border: 1px solid #f7c812;
    padding-top: 6px
}

.case-study-wrapper .section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a
}

.case-study-wrapper .section-title i {
    font-size: 24px;
    color: #f5c400
}

.case-study-wrapper .section-content {
    color: #495057;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px
}

.case-study-wrapper .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 36px
}

.case-study-wrapper .metric-card {
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    padding: 11px;
    border-radius: 16px;
    border-left: 4px solid #f5c400;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden
}

.case-study-wrapper .metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgb(245 196 0 / .08) 0%,transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease
}

.case-study-wrapper .metric-card:hover::before {
    opacity: 1
}

.case-study-wrapper .metric-card:hover {
    transform: translateX(8px);
    border-left-width: 6px;
    box-shadow: 0 8px 24px rgb(0 0 0 / .08)
}

.case-study-wrapper .metric-icon {
    font-size: 28px;
    color: #f5c400;
    margin-bottom: 12px
}

.case-study-wrapper .metric-value {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1px
}

.case-study-wrapper .metric-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 6px
}

.case-study-wrapper .metric-change {
    font-size: 13px;
    color: #28a745;
    font-weight: 600
}

.case-study-wrapper .case-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgb(0 0 0 / .12)
}

.case-study-wrapper .case-image {
    width: 100%;
    height: 336px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1)
}

.case-study-wrapper .case-image-wrapper:hover .case-image {
    transform: scale(1.08)
}

.case-study-wrapper .result-badge {
    display: inline-block;
    background: #e9ecef;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 36px;
    border: 2px solid #dee2e6;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    min-width: 400px!important;
    width: 501px;
    margin-top: 30px
}

.case-study-wrapper .impact-title {
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(135deg,#f5c400 0%,#ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin: 23px 0 13px;
    letter-spacing: -.5px
}

@media (max-width: 1200px) {
    .case-study-wrapper .case-content {
        grid-template-columns:1fr;
        gap: 50px
    }

    .case-study-wrapper .case-image {
        height: 400px
    }
}

@media (max-width: 768px) {
    .case-study-wrapper .custom-tabs {
        flex-wrap:nowrap
    }

    .case-study-wrapper .tab-btn {
        padding: 12px 20px;
        font-size: 14px
    }

    .case-study-wrapper .case-card {
        padding: 32px 20px
    }

    .case-study-wrapper .metrics-grid {
        grid-template-columns: 1fr
    }

    .case-study-wrapper .case-image {
        height: 300px
    }

    .case-study-wrapper .section-title {
        font-size: 24px
    }

    .case-study-wrapper .impact-title {
        font-size: 28px
    }
}

.case-study-wrapper .metric-label {
    margin-bottom: -7px;
}

h3.expert-title {
    color: #f7c812;
}

img.bggg {
    width: 100%;
    position: fixed;
    top: 50px;
    opacity: .1;
}

img.human {
    position: fixed;
    top: 140px;
    width: 80%;
    left: -0px;
    opacity: .2;
}
.clutch-testimonial-section {
    padding: 50px 0;
    background: #fdfaec;
    position: relative
}

.arrow-testi {
    position: absolute;
    top: 174px;
    right: 1px;
    display: flex;
    gap: 20px;
    width: 100px;
    left: 85.5%;
}

.arrow-testi i {
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff
}

.clutch-testimonial-section .section-header {
    margin-bottom: 60px
}

.clutch-testimonial-section .section-title {
  
    text-align: center;
    margin-bottom: 0;
    
    position: relative
}

.clutch-testimonial-section .section-subtitle {
    /* font-size: 20px; */
    /* color: #333; */
    line-height: 1.6;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.clutch-testimonial-section .clutch-testimonials-container {
    display: flex;
    gap: 30px;
    align-items: stretch
}

.clutch-testimonial-section .clutch-card {
    min-width: 480px;
    width: 480px;
    background: linear-gradient(180deg,#000000 0%,#1a4d5c 100%);
    border-radius: 30px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-shrink: 0
}

.clutch-testimonial-section .clutch-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 32px
}

.clutch-testimonial-section .stars {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center
}

.clutch-testimonial-section .star {
    color: #ff3d57;
    font-size: 24px
}

.clutch-testimonial-section .clutch-btn {
    background: #fff0;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 60px
}

.clutch-testimonial-section .clutch-btn:hover {
    background: #fff;
    color: #000
}

.clutch-testimonial-section .clutch-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px
}

.clutch-testimonial-section .clutch-icon {
    width: 24px;
    height: 24px;
    background: #ff3d57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px
}

.clutch-testimonial-section .slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 7px 0
}

.clutch-testimonial-section .clutch-testimonials-slider {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease
}

.clutch-testimonial-section .clutch-testimonial-card {
    min-width: 383px;
    width: 322px;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    height: 421px;
    border: 1px solid
}

.clutch-testimonial-section .clutch-testimonial-card:hover {
    transform: translateY(-5px)
}

.clutch-testimonial-section .client-header {
    display: flex;
    align-items: start;
    gap: 13px;
    margin-bottom: 9px
}

.clutch-testimonial-section .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.clutch-testimonial-section .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.clutch-testimonial-section .client-info {
    flex: 1
}

.clutch-testimonial-section .client-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px
}

.clutch-testimonial-section .client-position {
    font-size: 12px;
    color: #666;
    margin-bottom: 0
}

.clutch-testimonial-section .client-stars {
    display: flex;
    gap: 6px
}

.clutch-testimonial-section .divider {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin: 25px 0
}

.clutch-testimonial-section .clutch-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    height: 190px;
    overflow: auto;
    padding-right: 10px
}

.clutch-testimonial-section .pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px
}

.clutch-testimonial-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease
}

.clutch-testimonial-section .dot.active {
    background: #666;
    width: 30px;
    border-radius: 5px
}

@media (max-width: 1200px) {
    .clutch-testimonial-section .clutch-testimonials-container {
        flex-direction:column
    }

    .clutch-testimonial-section .clutch-card {
        width: 100%;
        min-width: 100%
    }

    .clutch-testimonial-section .clutch-testimonial-card {
        width: 100%;
        min-width: 100%
    }
}

@media (max-width: 768px) {
    .clutch-testimonial-section {
        padding:50px 0
    }

    .clutch-testimonial-section .section-title {
        font-size: 32px
    }

    .clutch-testimonial-section .section-subtitle {
        font-size: 16px
    }

    .clutch-testimonial-section .clutch-card,.clutch-testimonial-section .clutch-testimonial-card {
        padding: 35px 25px;
        min-width: 100%
    }

    .clutch-testimonial-section .clutch-logo {
        font-size: 42px
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 0px 0;
    }.arrow-testi {
    position: absolute;
    bottom: 0;
    right: 1px;
    display: flex;
    gap: 20px;
    width: 100px;
    left: 39.5%;
}.clutch-testimonial-section {
        padding: 50px 0;
        overflow: hidden;
    }.tabs-wrapper.case-study-wrapper .section-heading {
    font-size: 30px;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111827;
}.tabs-wrapper.case-study-wrapper {
    overflow: hidden;
}.case-study-wrapper .custom-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    flex-wrap: wrap;
    justify-content: start;
}.case-study-wrapper .result-badge {
    display: inline-block;
    background: #e9ecef;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 36px;
    border: 2px solid #dee2e6;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    min-width: 100% !important;
    width: 100%;
    margin-top: 30px;
    text-align: center;
}
}