/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --btn-hover: #b1820b;
}

.container-slider-home .hero {
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.container-slider-home .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.container-slider-home .hero-bg-mobile {
    display: none;
}

@media (max-width: 768px) {
    .container-slider-home .hero-bg-desktop {
        display: none !important;
    }

    .container-slider-home .hero-bg-mobile {
        display: block !important;
    }
}

.container-slider-home .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.container-slider-home .hero-inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    min-height: 560px;
}

.container-slider-home .hero-content {
    width: 100%;
    max-width: 700px;
    padding: 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.container-slider-home .hero-eyebrow {
    letter-spacing: 3px;
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.container-slider-home .hero-title {
    font-size: clamp(20px, 4vw, 40px);
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.container-slider-home .hero-title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    width: fit-content;
    /* color: var(--bv-secondary); */
}

.container-slider-home .hero-title-line {
    display: block;
    height: 1.5px;
    width: 125px;
    background: currentColor;
    opacity: 0.8;
}

.container-slider-home .hero-title-diamond {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.95;
    color: currentColor;
}

.container-slider-home .hero-desc {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.container-slider-home .hero-desc p,
.container-slider-home .hero-desc span {
    color: inherit !important;
}

.container-slider-home .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    padding: 11px 22px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.container-slider-home .btn-gold:hover {
    background: #186a1f;
    border-color: #186a1f;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 106, 31, 0.4);
}

.container-slider-home .btn-cta-gold {
    background: #572401;

    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(177, 130, 11, 0.35);
}

.container-slider-home .btn-cta-gold:hover {
    background: #572401;
    border-color: #966e09;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(177, 130, 11, 0.5);
    transform: translateY(-2px);
}

.container-slider-home .slider-home .hero-eyebrow,
.container-slider-home .slider-home .hero-title,
.container-slider-home .slider-home .hero-desc,
.container-slider-home .slider-home .btn-gold,
.container-slider-home .slider-home .hero-features-static {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.container-slider-home .slider-home .slick-active .hero-eyebrow,
.container-slider-home .slider-home .slick-active .hero-title,
.container-slider-home .slider-home .slick-active .hero-desc,
.container-slider-home .slider-home .slick-active .btn-gold,
.container-slider-home .slider-home .slick-active .hero-features-static {
    opacity: 1;
    transform: translateY(0);
}

.container-slider-home .slider-home .slick-active .hero-eyebrow {
    transition-delay: 0.15s;
}

.container-slider-home .slider-home .slick-active .hero-title {
    transition-delay: 0.3s;
}

.container-slider-home .slider-home .slick-active .hero-desc {
    transition-delay: 0.45s;
}

/* .container-slider-home .slider-home .slick-active .btn-gold {
    transition-delay: 0.6s;
} */

.container-slider-home .slider-home .slick-active .hero-features-static {
    transition-delay: 0.75s;
}

.container-slider-home .hero-features {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    width: 100%;
}

.container-slider-home .hf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
}

.container-slider-home .hf-item img {
    width: 30px;
    height: 30px;

}

.container-slider-home .hero-features-static .hero-inner {
    min-height: auto;
}

.container-slider-home .hero-features-static .hero-content {
    padding-top: 0;
    padding-bottom: 0;
    align-items: flex-start;
}

/* ============================================================
   SLICK DOTS & ARROWS STYLE
============================================================ */
.slick-dots {
    bottom: auto;
    z-index: 3;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    border: none;
    background: transparent;
    padding: 0;
    width: 10px;
    height: 10px;
    outline: none;
    font-size: 0;
    line-height: 0;
}

.slick-dots li button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button::before {
    background: var(--color-secondary) !important;
    opacity: 1;
    transform: scale(1.2);
}

.featured-case-section .slick-arrow {
    color: #fff !important
}

.slick-prev,
.slick-next {
    width: 44px !important;
    height: 44px !important;
    z-index: 10 !important;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    line-height: 0;
    outline: none;
    opacity: 1 !important;
}


.slick-prev::before,
.slick-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    color: currentColor;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;

}

.slick-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.slick-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-color: var(--color-secondary) !important;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    opacity: 1;
}

/* Hero slider dots inside slide */
.container-slider-home .hero-slider .slick-dots,
.hero-slider .slick-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-top: 0 !important;
    z-index: 10 !important;
}

.hero-slider .slick-dots li button::before {
    background: #000;
    opacity: 0.4;
}

.hero-slider .slick-dots li.slick-active button::before {
    background: #000 !important;
    opacity: 1;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white) !important;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-color: var(--color-secondary) !important;
}

/* ============================================================
   PARTNER SECTION
============================================================ */
.partner-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.partner-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.partner-slider {
    margin: 0 auto;
    overflow: hidden;
}

.partner-slider .slick-list {
    overflow: hidden;
}

/* Hide dots for partner slider ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â not needed for logo strips */
.partner-slider .slick-dots {
    display: none !important;
}

.partner-item {
    padding: 0 15px;
    outline: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE LAYOUT
============================================================ */
@media (max-width: 992px) {
    .slide-item {
        height: auto !important;
        padding: 50px 0;
    }

    .slide-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .slide-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .slide-divider {
        /* margin-left: auto; */
        margin-right: auto;
    }

    .slide-buttons {
        justify-content: center;
    }

    .slide-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: 300px;
        order: -1;
    }

    .slide-title {
        font-size: 38px;
        text-align: left;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .slide-item {
        min-height: 550px;
        height: auto !important;
        padding: 10px 0 25px 0;
    }

    .slide-picture {
        min-height: 200px;
    }

    .slide-inner {
        padding: 0 12px;
        gap: 20px;
        text-align: left;
    }

    .slide-image-wrapper {
        height: 250px;
    }

    .slide-title {
        font-size: 23px;
    }

    .slide-desc {
        font-size: 14px;
        text-align: left;
    }

    .slide-buttons {
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: left;
    }

    .slide-btn {
        justify-content: center;
        padding: 10px 20px;
        font-size: 12px;
        gap: 0px 7px;
    }

    .slide-btn .arrow {
        transform: translateY(-2px);
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }

    .partner-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .partner-section {
        padding: 40px 0;
    }
}

@media (max-width: 380px) {
    .slide-btn {
        width: 100%;
    }
}



/* ============================================================
   SERVICES CAPABILITIES SECTION (4-COLUMN CATEGORY CARDS)
============================================================ */
.services-section {
    position: relative;
    width: 100%;
    padding: 70px 0 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-cat-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 35px 24px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-cat-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cat-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-cat-title {
    font-size: 15.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.35;
}

.service-cat-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-cat-title a:hover {
    color: #f59e0b;
}

.service-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-cat-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.45;
}

.service-cat-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f59e0b;
}

.service-cat-list li a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-cat-list li a:hover {
    color: #d97706;
}

@media (max-width: 1199px) {
    .services-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TRUST ENGINE SECTION
============================================================ */
.trust-engine-section {
    background: #435254;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative pattern */
.trust-engine-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.trust-engine-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.trust-engine-header {
    margin-bottom: 40px;
}



.trust-engine-title {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Timeline row */
.trust-engine-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 0 50px;
}

/* Each step */
.trust-step {
    flex: 0 0 76px;
    width: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.trust-step-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    /* Double ring: inner dark fill, outer golden ring, outer halo */
    background: var(--color-third);
    border: 2px solid var(--color-third);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12), 0 0 0 7px rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.trust-step-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.trust-step:hover .trust-step-icon {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.22), 0 0 0 7px rgba(201, 168, 76, 0.10);
    border-color: #e0be6a;
}

.trust-step-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-third);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.trust-step-desc {
    font-size: 15px;
    color: #090908;
    line-height: 1.4;
    margin: 0;
    width: 190px;
    max-width: 190px;
}

/* Connector line + diamond dots between steps */
.trust-connector {
    display: flex;
    align-items: center;
    flex: 1;
    /* vertically center with the icon ring (half of 76px icon + 20px margin) */
    margin-top: 38px;
    padding: 0 10px;
}

.trust-connector-line {
    flex: 1;
    height: 1px;
    min-width: 20px;
    background: #211d58;
}

/* Diamond dot at each end of connector */
.trust-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-engine-title {
        font-size: 26px;
    }

    .trust-step-desc {
        max-width: 110px;
        font-size: 12px;
    }

    .trust-step-icon {
        width: 58px;
        height: 58px;
    }

    .trust-step-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-connector {
        margin-top: 31px;
    }
}

@media (max-width: 768px) {
    .trust-engine-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0 10px;
    }

    .trust-step {
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        width: 100%;
        display: grid;
        grid-template-columns: 60px 100px 1fr;

    }

    .trust-step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .trust-step-name {
        margin-bottom: 6px;
    }

    .trust-step-desc {
        max-width: 100%;
    }

    .trust-connector {
        flex-direction: column;
        margin-top: 0;
        margin-left: 25px;
        padding: 4px 0;
    }

    .trust-connector-line {
        min-width: 0;
        width: 1px;
        min-height: 24px;
        height: auto;
        background: rgba(201, 168, 76, 0.55);
    }

    .trust-engine-section {
        padding: 45px 0;
    }
}



/* ============================================================
   NEWS SLIDER SECTION
============================================================ */
.news-slider-section {
    background: #ffffff;
    padding: 40px 0;
}

.news-slider-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.news-header-left {
    display: flex;
    flex-direction: column;
}

.news-header-left .sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
    display: block;
}

.news-header-left .main-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.news-header-right {
    margin-bottom: 6px;
}

.view-all-link {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.news-slider .slick-track {
    /* display: flex !important; */
}

.news-slider .slick-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.news-slide-item {
    outline: none;
    height: auto;
    display: flex;
    flex-direction: column;
}

.news-slider .slick-slide {
    margin: 0 12px;
}

.news-slider .slick-list {
    margin: 0 -12px;
}

.news-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 10px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
}

.news-card-title a {
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 12px 15px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-card-category {
    font-size: 15px;
    font-weight: 700;
}

.news-card-date {
    font-size: 14px;
    color: #000;
}

/* Adjust Dots & Arrows position for News Slider */
.news-slider-section .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-slider-section {
        padding: 40px 0;
    }

    .news-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .news-slider .slick-slide {
        margin: 0 10px;
    }

    .news-slider .slick-list {
        margin: 0 -10px;
    }

    .news-header-left .main-title {
        font-size: 23px;
    }
}


/* ============================================================
   FEATURED CASE STUDY SECTION
============================================================ */
.featured-case-section {
    background: #f8f9fa;
    padding: 60px 0 50px 0;
}

.featured-case-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.featured-case-content {
    flex: 1;
    max-width: 520px;
}

.featured-case-content .sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.featured-case-content .main-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--bv-primary);
    margin-bottom: 0;
    text-transform: uppercase;
}

.featured-case-title .title-brand {
    display: block;
    margin-bottom: 8px;
}

.featured-case-title .title-main {
    display: block;
}

.featured-case-divider {
    width: 105px;
    height: 2px;
    background: var(--color-secondary);
    margin: 10px 0 15px 0;
}

.featured-case-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.featured-case-desc p {
    margin-bottom: 10px;
}

.featured-case-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    color: #fff;
    background: var(--bv-primary);
}

.featured-case-link .arrow {
    display: inline-block;
    margin-left: 8px;
    margin-top: -4px;
    transition: transform 0.3s;
}

.featured-case-link:hover {
    background: #186a1f;
    color: #fff;
}

.featured-case-link:hover .arrow {
    transform: translateX(5px);
}

.featured-case-image {
    flex: 1.2;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.featured-case-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    transition: transform 0.6s ease;
}

.featured-case-image:hover img {
    transform: scale(1.02);
}

/* Customer Slider in Hero Section */
.customer-slider-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.customer-slider .customer-slide-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.customer-slider .customer-slide-inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.customer-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 65%, transparent 100%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 2;
    pointer-events: none;
}

.customer-name {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animation when slide is active */
.customer-slider .slick-active .customer-name {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

/* Custom Slick Dots for Customer Slider */
.customer-slider .slick-dots {
    position: absolute;
    bottom: 16px;
    right: 20px;
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 5;
}

.customer-slider .slick-dots li {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.customer-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.customer-slider .slick-dots li.slick-active button {
    background: #ffffff;
    width: 22px;
    border-radius: 4px;
}

/* Custom Arrows for Customer Slider */
.customer-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    padding: 0;
}

.customer-slider-arrow:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.customer-slider-prev {
    left: 14px;
}

.customer-slider-next {
    right: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-case-inner {
        gap: 40px;
    }

    .featured-case-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .featured-case-section {
        padding: 40px 0 40px;
    }

    .featured-case-inner {
        flex-direction: column;
        gap: 36px;
    }

    .featured-case-content {
        max-width: 100%;
    }

    .featured-case-image {
        width: 100%;
    }

    .featured-case-desc {
        margin-bottom: 20px;
    }

    .slide-sub {
        width: 100%;
    }

    .featured-case-content .main-title {
        font-size: 23px;
    }

    .featured-case-link {
        display: flex;
        width: fit-content;
        margin: 0 auto;
        justify-content: center;
    }
}

/* ============================================================
   PRACTICE AREAS (SLICK SLIDER)
============================================================ */
.practice-areas-section {
    position: relative;
    width: 100%;
    padding: 55px 0 50px;
    background-color: #eceff2;
}

.practice-areas-header {
    text-align: center;
    margin-bottom: 25px;
}

.practice-areas-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.practice-areas-divider {
    width: 65px;
    height: 3.5px;
    background-color: var(--bv-primary, #b1820b);
    margin: 0 auto;
    border-radius: 2px;
}

.practice-slider {
    position: relative;
}

.practice-slider .slick-list {
    margin: 0 -10px;
}


.practice-slider .slick-slide {
    margin: 10px;
}

.practice-slider .slick-track {
    display: flex !important;
}

.practice-slider .slick-slide {
    height: inherit !important;
    display: flex !important;
    flex-direction: column;
}

.practice-slider .slick-slide>div {
    /* display: flex; */
    /* flex-direction: column; */
    /* height: 100%; */
    /* width: 100%; */
    /* flex: 1; */
}

.practice-slide-item {
    height: 100%;
    outline: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.practice-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
    /* display: flex; */
    /* flex-direction: column; */
    /* height: 100%; */
    flex: 1;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    text-align: center;
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.practice-image {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practice-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.practice-image img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.practice-card:hover .practice-image img {
    transform: scale(1.08);
}

.practice-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.practice-icon img,
.practice-icon svg {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.practice-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}

.practice-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.practice-title a:hover {
    color: var(--bv-primary);
}

.practice-desc {
    margin-bottom: 18px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    height: 63px;
}

.practice-action {
    margin-top: auto;
}

.practice-action .btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--bv-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.practice-action .btn:hover {
    background-color: #186a1f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 106, 31, 0.25);
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex-grow: 1;
}

.practice-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    font-weight: 400;
}

.practice-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f59e0b;
}

.practice-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline;
}

.practice-list li a:hover {
    color: var(--color-third, #c59b27);
}

/* Practice Slider Arrows */
.practice-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
}

.practice-slider-arrow:hover {
    background: var(--color-third, #2a2663);
    color: #ffffff;
    border-color: var(--color-third, #2a2663);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.practice-slider-prev {
    left: -20px;
}

.practice-slider-next {
    right: -20px;
}

/* Practice Slider Dots */
.practice-slider .slick-dots {
    margin-top: 10px;
    position: relative;
    bottom: auto;
}

@media (max-width: 1200px) {
    .practice-slider-prev {
        left: -10px;
    }

    .practice-slider-next {
        right: -10px;
    }

    .practice-card {
        padding: 32px 18px 28px 18px;
    }

    .practice-list li {
        font-size: 13.5px;
    }
}

@media (max-width: 992px) {
    .practice-areas-section {
        padding: 50px 0;
    }

    .practice-slider-prev {
        left: -5px;
    }

    .practice-slider-next {
        right: -5px;
    }
}

@media (max-width: 576px) {
    .practice-areas-section {
        padding: 40px 0;
    }

    .practice-card {
        padding: 24px 18px;
    }

    .practice-image {
        margin-bottom: 15px;
    }

    .practice-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .practice-areas-title {
        font-size: 22px;
    }

    .practice-title {
        height: auto;
    }
}

/* ============================================================
   WHAT WE DO SECTION (12-CARD GRID - NO HOVER EFFECT)
============================================================ */
.what-we-do-section {
    position: relative;
    width: 100%;
    padding: 35px 0;
    background-color: #ffffff;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 35px;
}

.what-we-do-title {
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.what-we-do-divider {
    width: 65px;
    height: 3.5px;
    background-color: var(--bv-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.what-we-do-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 15px 10px 15px 10px;
    display: flex;
    border: solid 1px #eee;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-we-do-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Cursor pointer on icon, title, and read more */
.wwd-icon {
    display: inline-block;
    width: 70px;
    height: auto;
    margin: auto;
    text-decoration: none;
}

.wwd-icon img,
.wwd-icon svg {
    width: 135px;
    height: auto;
    object-fit: contain;
    display: block;
}

.wwd-card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    margin: 15px 0 0px 0;
}

.wwd-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wwd-card-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wwd-readmore {
    font-size: 14px;
    font-weight: 600;
    color: #d97706;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.wwd-readmore .wwd-arrow {
    font-size: 14px;
}

.what-we-do-action {
    text-align: center;
    margin-top: 45px;
}

.wwd-btn-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #f59e0b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 36px;
    border-radius: 4px;
}

.wwd-btn-all .wwd-btn-arrow {
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .what-we-do-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 868px) {
    .what-we-do-section {
        padding: 50px 0;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .what-we-do-card {
        padding: 20px 14px;
    }
}

@media (max-width: 576px) {
    .what-we-do-section {
        padding: 40px 0;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .what-we-do-header {
        margin-bottom: 25px;
    }

    .what-we-do-card {
        padding: 20px 14px 18px 14px;
        border-radius: 6px;
    }

    .wwd-icon {
        width: 55px;
        height: 55px;
    }

    .wwd-icon img,
    .wwd-icon svg {
        width: 55px;
        height: 55px;
    }

    .wwd-card-title {
        font-size: 13.5px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .wwd-card-desc {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 14px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .wwd-readmore {
        font-size: 12.5px;
    }
}

/* ============================================================
   MEET OUR TEAM SECTION
============================================================ */
.meet-our-team-section {
    position: relative;
    width: 100%;
    padding: 60px 0 70px;
    background-size: cover;
    background-position: center;
    margin: 0;
}

.meet-our-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-title-divider {
    width: 65px;
    height: 3.5px;
    background: linear-gradient(90deg, #d4af37, #f3e5ab);
    margin: 0 auto;
    border-radius: 2px;
}

.team-btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bv-secondary);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 3px;
    transition: opacity 0.2s ease;
}

.team-btn-readmore:hover {
    opacity: 0.9;
    color: #000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.team-slider {
    position: relative;
    z-index: 2;
}

.team-slider .slick-track {
    display: flex !important;
}

.team-slider .slick-slide {
    height: auto;
    display: flex !important;
    padding: 12px 14px;
    outline: none;
    margin: 0 10px;
}

.team-slider .slick-slide>div {
    width: 100%;
    display: flex;
}

.team-slider .slick-list {
    margin: 0 -10px;
    padding: 10px 0 25px 0;
}

.team-slider .team-card {
    height: 100%;
}

.team-slider .slick-dots {
    margin-top: 15px;
}

.team-slider .slick-dots li button::before {
    background: #ffffff !important;
    opacity: 0.4;
}

.team-slider .slick-dots li.slick-active button::before {
    background: #ffffff !important;
    opacity: 1;
    transform: scale(1.3);
}

.team-slider .slick-dots li.slick-active {
    background-color: #d1d1d1;
}

.team-slider .slick-dots li {
    background-color: #ffffff25;
}

.team-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
} */

.team-photo-wrap {
    width: 100%;
    padding: 15px 20px 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    border-radius: 16px 16px 0 0;
    box-shadow: none;
    height: auto;
    /* min-height: 200px; */
}

.team-photo {
    width: 160px;
    height: 160px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.08);
}

.team-info-box {
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    padding: 15px 24px 28px 24px;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
    box-shadow: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.team-name {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 10px;
}

.team-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2.5px;
    background-color: #d4af37;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.team-card:hover .team-name::after {
    width: 55px;
}

.team-role {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.6;
    height: 45px;
}

/* Responsive */
@media (max-width: 1200px) {
    .team-grid {
        gap: 20px;
    }

    .team-photo {
        width: 140px;
        height: 140px;
    }

    .team-name {
        font-size: 17px;
    }

}

@media (max-width: 992px) {
    .meet-our-team-section {
        padding: 55px 0 65px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
}

@media (max-width: 576px) {
    .meet-our-team-section {
        padding: 40px 0 50px 0;
    }

    .team-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .team-title {
        font-size: 23px;
        margin-bottom: 8px;
    }

    .team-title-divider {
        width: 50px;
        height: 3px;
        margin: 0 auto;
    }

    .team-btn-readmore {
        padding: 8px 16px;
        font-size: 12px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
    }

    .team-role {
        margin-bottom: 2px;
        line-height: 1.25;
    }

    .container-slider-home .hero-eyebrow {
        font-size: 14px;
    }

    .team-slider .slick-dots {
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .team-grid {
        gap: 22px 8px;
    }


}

/* ============================================================
   EXPERIENCE & ACHIEVEMENTS STATS SECTION
============================================================ */
.experience-stats-section {
    position: relative;
    width: 100%;
    padding: 30px 0 30px;
    /* background: linear-gradient(rgba(35, 18, 14, 0.88), rgba(25, 12, 9, 0.92)), url('../images/experience-bg.jpg') no-repeat center center; */
    background-size: cover;
    background-position: center;
}

.experience-stats-header {
    text-align: center;
    margin-bottom: 40px;
}

.experience-stats-header .what-we-do-divider {
    margin-top: 16px;
}

.exp-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.exp-title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.25;
}

.experience-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    border-top: dashed 1px #ccc;
    padding-top: 10px;
}

.exp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.exp-stat-item:last-child {
    border-right: none;
}

.exp-stat-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.exp-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.exp-stat-icon img,
.exp-stat-icon svg {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.exp-stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
}

.exp-stat-label {
    font-size: 16px;
    font-weight: 500;
    /* color: rgba(255, 255, 255, 0.9); */
    text-transform: uppercase;
    line-height: 1.3;
}

/* Responsive - Experience & Stats */
@media (max-width: 1200px) {
    .exp-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .experience-stats-section {
        padding: 55px 0 65px 0;
    }

    .experience-stats-header {
        margin-bottom: 35px;
    }

    .exp-title {
        font-size: 28px;
        white-space: normal;
        line-height: 1.3;
    }

    .experience-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .exp-stat-item {
        padding: 20px 15px;
    }

    .exp-stat-item:nth-child(1),
    .exp-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 25px;
    }

    .exp-stat-item:nth-child(3),
    .exp-stat-item:nth-child(4) {
        padding-top: 25px;
    }

    .exp-stat-item:nth-child(2),
    .exp-stat-item:nth-child(4) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .experience-stats-section {
        padding: 40px 0;
    }

    .experience-stats-header {
        margin-bottom: 28px;
        padding: 0 10px;
    }

    .exp-subtitle {
        font-size: 11.5px;
        margin-bottom: 8px;
    }

    .exp-title {
        font-size: 22px;
        white-space: normal;
        line-height: 1.35;
    }

    .experience-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .exp-stat-item {
        padding: 16px 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .exp-stat-item:nth-child(1),
    .exp-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 20px;
    }

    .exp-stat-item:nth-child(3),
    .exp-stat-item:nth-child(4) {
        padding-top: 20px;
    }

    .exp-stat-item:nth-child(2),
    .exp-stat-item:nth-child(4) {
        border-right: none;
    }

    .exp-stat-top {
        margin-bottom: 6px;
        gap: 8px;
    }

    .exp-stat-icon {
        width: 32px;
        height: 32px;
    }

    .exp-stat-icon img,
    .exp-stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .exp-stat-number {
        font-size: 28px;
    }

    .exp-stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 380px) {
    .exp-title {
        font-size: 19px;
    }

    .exp-stat-number {
        font-size: 24px;
    }

    .exp-stat-icon {
        width: 26px;
        height: 26px;
    }

    .exp-stat-icon img,
    .exp-stat-icon svg {
        width: 26px;
        height: 26px;
    }

    .exp-stat-label {
        font-size: 10px;
    }
}