/* Services Page Styles */

/* ── About Us Dark Section (reference6 style) ─────────────────── */
.about-dark-section {
    background: #070c18;
    width: 100%;
    max-width: 1340px;
    margin: var(--section-gap, 36px) auto 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    padding: 60px 60px 0;
}

.about-dark-inner {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 400px;
    margin-bottom: 60px;
}

.about-dark-left {
    flex: 0 0 52%;
    padding-right: 60px;
}

.about-dark-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-dark-heading {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 24px 0;
}

.about-dark-body {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
}

.about-dark-right {
    flex: 0 0 48%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 260px;
}

.about-dark-right img {
    width: 200%;
    max-width: none;
    height: 260px;
    object-fit: cover;
    object-position: center right;
    display: block;
    transform: translateX(5%);
    transform-origin: center right;
}

/* Stats row — negative margin breaks out of section padding so border spans full width */
.about-dark-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0 -60px;
    padding: 0 60px 60px;
}

.about-dark-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 0 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
}

.about-dark-stat:first-child {
    padding-left: 0;
}

.about-dark-stat:last-child {
    border-right: none;
}

.ads-number {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.ads-suffix {
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
}

.ads-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Match white-box breakpoints exactly */
@media (max-width: 1200px) {
    .about-dark-section {
        margin: 10px 16px 0 16px;
        max-width: calc(100% - 32px);
        padding: 40px 40px 0;
    }
    .about-dark-stats {
        margin: 0 -40px;
        padding: 0 40px 40px;
    }
    .about-dark-inner {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    .about-dark-inner {
        flex-direction: column;
    }
    .about-dark-left {
        flex: none;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .about-dark-right {
        flex: none;
        width: 100%;
        height: 200px;
    }
    .about-dark-right img {
        width: 150%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        transform: none;
    }
    .about-dark-heading {
        font-size: 32px;
    }
    .about-dark-stats {
        flex-wrap: wrap;
    }
    .about-dark-stat {
        flex: 0 0 50%;
        padding-left: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 24px 0 0;
    }
    .about-dark-stat:nth-child(odd) {
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .about-dark-section {
        margin: 10px 12px 0 12px;
        max-width: calc(100% - 24px);
        padding: 24px 24px 0;
    }
    .about-dark-stats {
        margin: 0 -24px;
        padding: 0 24px 24px;
    }
    .about-dark-inner {
        margin-bottom: 24px;
    }
    .about-dark-heading {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-dark-section {
        margin: 10px 10px 0 10px;
        max-width: calc(100% - 20px);
        padding: 20px 20px 0;
    }
    .about-dark-stats {
        margin: 0 -20px;
        padding: 0 20px 20px;
        flex-direction: column;
    }
    .about-dark-inner {
        margin-bottom: 20px;
    }
    .about-dark-stat {
        flex: 0 0 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-right: none;
        padding-right: 0;
    }
    .ads-number {
        font-size: 34px;
    }
}

/* About Us Hero - vertical center */
.about-hero .hero-slide-static {
    align-items: center;
    padding-top: 0;
}

/* Services Page Hero Overrides */
#hero .hero-slide-static .hero-content h1 {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
}

#hero .hero-slide-static .hero-content .btn {
    font-size: 18px;
    padding: 16px 36px;
    letter-spacing: 0.5px;
}

/* =========================================
   2. Services Partners Section
   ========================================= */

.partners-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partners-main-heading {
    font-size: 42px;
    font-weight: 400;
    text-align: left;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    width: 100%;
}

.partners-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
}

.partner-column-item {
    position: relative;
    overflow: hidden;
    background-color: #f7f9fb;
    border-radius: 0;
    border-top: 3px solid transparent;
    height: 220px;
    box-sizing: border-box;
    cursor: default;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-column-item:hover {
    border-top-color: #00A4EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.partner-column-item .core-card-front,
.partner-column-item .core-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #f7f9fb;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.partner-column-item .core-card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.partner-column-item .core-card-back {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background-color: #fff;
}

.partner-column-item:hover .core-card-front {
    opacity: 0;
    visibility: hidden;
}

.partner-column-item:hover .core-card-back {
    opacity: 1;
    visibility: visible;
}

.partner-column-item .core-card-back p {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

.partner-icon-wrapper {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(6000%) hue-rotate(228deg) brightness(93%) contrast(112%);
}

.partner-column-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0;
}

/* Bottom CTA Banner */
.partners-cta-banner {
    background-color: #f8f8f8;
    width: 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    margin-top: 10px;
}

.partners-cta-text {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    max-width: auto;
    width: auto;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
}

.partners-cta-btn {
    background-color: #00A4EB;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
}

.partners-cta-btn:hover {
    background-color: #000000;
}

.partners-mobile-pagination {
    display: none;
}

/* New Technology Partners Section Styles */
.technology-partners-section {
    background-color: #0F1D2C;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0;
}

.tech-partners-container {
    width: 100%;
}

.tech-partners-header {
    margin-bottom: 40px;
    text-align: left;
}

.tech-partners-header .section-label {
    color: #00A4EB;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.tech-partners-header h2 {
    color: #000000;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tech-partners-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    max-width: 90%;
    margin: 0;
}

.tech-partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    margin-top: 40px;
    align-items: center;
}

.tech-partner-slide {
    display: contents;
}

.tech-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 60px;
}

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

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

/* =========================================
   3. Core Services Section
   ========================================= */

.core-services-section {
    background-color: #0F1D2C;
}

.core-services-header {
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.core-services-header .section-label {
    display: block;
    color: #00A4EB;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-services-header h2 {
    color: #000000;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.core-card {
    width: 100%;
    height: 240px;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background-color: #f7f9fb;
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.core-card:hover {
    border-top-color: #00A4EB;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.core-card-flipper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0;
}

.core-card-front,
.core-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #f7f9fb;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.core-card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.core-service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.core-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(6000%) hue-rotate(228deg) brightness(93%) contrast(112%);
}

.core-card-front h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    color: #111111;
}

.core-card-back {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background-color: #fff;
}

.core-card:hover .core-card-front {
    opacity: 0;
    visibility: hidden;
}

.core-card:hover .core-card-back {
    opacity: 1;
    visibility: visible;
}

.core-card-back p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: #000;
}

/* Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    opacity: 1;
}

.service-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 0;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-modal.active .service-modal-content {
    transform: translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.service-modal-body h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.service-modal-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-modal-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.service-modal-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #00A4EB;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-modal-btn:disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* =========================================
   4. Areas of Expertise Section
   ========================================= */
.expertise-section {
    background-color: #0F1D2C;
}

.expertise-header {
    margin-bottom: 40px;
}

.expertise-header h2 {
    color: #1a1a1a;
}

.expertise-header p {
    font-size: 18px;
    max-width: fit-content;
    line-height: 1.6;
    color: #666666;
}

.expertise-carousel-container {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
}

.expertise-main-card {
    flex: 2;
    background-color: #f5f5f5;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    min-height: 300px;
    text-decoration: none;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.expertise-slide {
    display: flex;
    width: 100%;
    flex-shrink: 0;
}

.expertise-main-img-wrapper {
    width: 45%;
    position: relative;
}

.expertise-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.expertise-main-content {
    width: 55%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-main-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    transition: opacity 0.4s ease;
}

.expertise-main-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    transition: opacity 0.4s ease;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.see-more-btn img {
    width: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.see-more-btn:hover {
    background-color: #d0d0d0;
}

.see-more-btn:hover img {
    transform: translate(2px, -2px);
}

.expertise-thumbnails-wrapper {
    flex: 1.2;
    display: flex;
    gap: 20px;
}

.expertise-thumb-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.expertise-thumb-card h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.expertise-thumb-img-wrapper {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background-color: #f0f0f0;
}

.expertise-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Navigation Arrow */
.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: 1px solid #E5E5E5;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-btn:hover {
    background-color: #00A4EB;
    border-color: #00A4EB;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    fill: #000000;
    transition: fill 0.3s ease;
}

.nav-btn:hover svg {
    fill: #ffffff;
}

.nav-btn path {
    fill: inherit;
}

.nav-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dash {
    width: 24px;
    height: 3px;
    background-color: #E5E5E5;
    border-radius: 0;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.nav-dash.active {
    background-color: #00A4EB;
}

.expertise-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise-mobile-container {
    display: none;
}

/* =========================================
   5. Testimonials Section
   ========================================= */

.testimonials-section {
    background-color: #0F1D2C;
    background-image: url('../../img/bg-section-9.webp');
    background-size: cover;
    background-position: center;
    padding: 60px;
    width: 100%;
    max-width: 1340px;
    margin: var(--section-gap, 36px) auto 0 auto;
    position: relative;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    max-width: 1340px;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.testimonials-container {
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    margin-bottom: 50px;
    text-align: left;
}

.testimonials-header .section-label {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.testimonials-header h2 {
    color: #ffffff;
    line-height: 1.1;
}

.testimonials-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
    max-width: fit-content;
}

.testimonials-section .testimonial-carousel {
    position: relative;
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
}

.testimonials-section .testimonial-mask {
    overflow: hidden;
    width: 100%;
}

.testimonials-section .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonials-section .testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    padding: 0;
}

.testimonials-section .video-card {
    flex: 1.5;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonials-section .details-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-section .video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.testimonials-section .video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonials-section .video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.testimonials-section .play-button {
    width: 84px;
    height: 84px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.3s;
}

.testimonials-section .play-button img {
    width: 100%;
    height: 100%;
    margin: 0;
    filter: none;
}

.video-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-content {
    padding: 40px;
    background: #f9f9f9;
    flex-grow: 1;
}

.video-category {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 15px;
    display: block;
    font-weight: 400;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    font-weight: 400;
}

.client-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    align-self: flex-start;
}

.project-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 10px;
    font-weight: 400;
}

.project-title {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-meta-row {
    margin-bottom: 30px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 8px;
    display: block;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 0;
}

.author-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 0;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.author-role {
    font-size: 14px;
    color: #777;
}

.read-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.3s;
}

.read-btn:hover {
    background: #e0e0e0;
}

.testimonial-nav-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.testimonial-nav-container .nav-btn {
    background-color: #ffffff;
    border-color: #E5E5E5;
}

.testimonial-nav-container .nav-btn svg {
    fill: #000000;
}

.testimonial-nav-container .nav-btn:hover {
    background-color: #00A4EB;
    border-color: #00A4EB;
}

.testimonial-nav-container .nav-btn:hover svg {
    fill: #ffffff;
}

.testimonials-section .client-logo {
    display: none;
}

.testimonial-nav-container .nav-dash {
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-nav-container .nav-dash.active {
    background-color: #00A4EB;
}

.testimonial-mob-pagination {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

@media (max-width: 1200px) {
    .testimonial-mob-pagination {
        display: flex;
    }
    .testimo-mob-dash {
        height: 4px;
        width: 24px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 0;
        transition: width 0.3s ease, background-color 0.3s ease;
        cursor: pointer;
    }
    .testimo-mob-dash.active {
        width: 40px;
        background: #00A4EB;
    }
}

/* =========================================
   WHO WE ARE stat cards (about-us page)
   ========================================= */

.services-stat-item {
    position: relative;
    height: 220px;
    background-color: #f7f9fb;
    overflow: hidden;
    cursor: default;
    display: block;
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s ease;
}

.services-stat-item:hover {
    border-top-color: #00A4EB;
}

.services-stat-item .core-card-front,
.services-stat-item .core-card-back {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    background-color: #f7f9fb;
}

.services-stat-item .core-card-front {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.services-stat-item .core-card-back {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background-color: #fff;
}

.services-stat-item:hover .core-card-front {
    opacity: 0;
    visibility: hidden;
}

.services-stat-item:hover .core-card-back {
    opacity: 1;
    visibility: visible;
}

.services-stat-item h3 {
    font-size: 56px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    color: #1a1a1a;
}

.services-stat-item .stat-suffix {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    margin-left: 2px;
}

.services-stat-item .number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.services-stat-item p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.2;
}

.services-stat-item .core-card-back p {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    font-weight: 300;
}

/* =========================================
   Global White Box Standardization (Responsive)
   ========================================= */

.tech-partners-pagination { display: none; }

@media (max-width: 1200px) {
    #hero .hero-slide-static {
        align-items: center;
        padding-top: 0;
    }

    .stats-grid.services-stats {
        gap: 15px !important;
    }

    .services-stat-item h3,
    .services-stat-item .stat-suffix {
        font-size: 42px !important;
    }
    .stats-grid.services-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .services-stat-item {
        height: auto;
        overflow: visible;
        border: none;
        border-top: 3px solid #00A4EB;
        background-color: #fff;
    }
    .services-stat-item .core-card-front,
    .services-stat-item .core-card-back {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 16px 20px;
        transition: none;
        background-color: transparent;
    }
    .services-stat-item .core-card-back {
        padding-top: 0;
    }
    .services-stat-item:hover { border-top-color: #00A4EB; }
    .services-stat-item:hover .core-card-front,
    .services-stat-item:hover .core-card-back {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .about-us-section .services-stat-item {
        height: 140px;
        overflow: hidden;
        border-top: none;
        pointer-events: none;
    }
    .about-us-section .services-stat-item .core-card-front {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        height: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .about-us-section .services-stat-item .core-card-back {
        display: none !important;
    }
    .about-us-section .services-stat-item:hover .core-card-front {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .services-about-layout .about-content {
        margin-bottom: 30px;
    }

    .services-stats-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    #hero .hero-slide-static .hero-content h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }

    #hero .hero-slide-static .hero-content .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    .partners-main-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .partners-columns-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-bottom: 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 10px;
    }

    .partners-columns-grid::-webkit-scrollbar {
        display: none;
    }

    .partner-column-item {
        min-width: 100%;
        scroll-snap-align: center;
        align-items: flex-start;
        text-align: left;
        transform: none !important;
        margin: 0;
    }

    .partner-column-item:last-child {
        margin-right: 0;
    }

    .partner-icon-wrapper {
        justify-content: center;
    }

    .partners-cta-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
        padding: 30px 20px;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .partners-cta-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .partners-cta-btn {
        background-color: #00A4EB;
        margin: 0 auto;
    }

    .partners-mobile-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
        width: 100%;
    }

    .partners-dot {
        width: 12px;
        height: 4px;
        border-radius: 0;
        background-color: #e0e0e0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .partners-dot.active {
        background-color: #00A4EB;
        width: 24px;
    }

    .partners-dot:last-child:not(.active) {
        width: 6px;
        opacity: 0.5;
    }

    .tech-partners-header p {
        font-size: 16px !important;
        max-width: 100% !important;
    }

    .tech-partners-logos {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-top: 30px;
    }
    .tech-partners-logos::-webkit-scrollbar { display: none; }

    .tech-partner-slide {
        display: flex;
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 20px 30px;
        box-sizing: border-box;
    }

    .tech-partner-logo {
        flex: 1;
        max-width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .tech-partner-logo img {
        max-height: 80px;
        max-width: 100%;
        width: auto;
        filter: grayscale(0%);
        opacity: 1;
    }

    .tech-partners-pagination {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 20px;
    }
    .core-services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding-bottom: 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 10px;
    }

    .core-services-grid::-webkit-scrollbar {
        display: none;
    }

    .core-card {
        min-width: 100%;
        scroll-snap-align: center;
        margin: 0;
        height: auto;
        overflow: visible;
        border: 1px solid #e0e0e0;
        background-color: #f7f9fb;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .core-card-flipper {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .core-card-front {
        position: relative;
        inset: auto;
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 20px;
        transition: none;
    }

    .core-card-back {
        position: relative;
        inset: auto;
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        padding-top: 20px;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        transition: none;
        background-color: #f7f9fb !important;
    }

    .core-card:hover .core-card-front,
    .core-card:hover .core-card-back {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .partner-column-item {
        min-width: 100%;
        scroll-snap-align: center;
        height: auto;
        overflow: visible;
        border: 1px solid #e0e0e0;
        background-color: #f7f9fb;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .partner-column-item .core-card-front,
    .partner-column-item .core-card-back {
        position: relative;
        inset: auto;
        height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        transition: none;
        background-color: #f7f9fb !important;
    }

    .partner-column-item .core-card-back {
        padding-top: 0;
    }

    .partner-column-item:hover .core-card-front,
    .partner-column-item:hover .core-card-back {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .core-services-header h2 {
        white-space: normal;
    }

    .core-pagination {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .tech-partner-logo img { max-height: 70px; }

    .core-card:hover .core-card-flipper {
        transform: none !important;
    }

    a,
    button,
    input,
    select,
    textarea,
    div,
    li {
        -webkit-tap-highlight-color: transparent !important;
    }

    .expertise-carousel-container {
        display: none !important;
    }

    .expertise-mobile-container {
        display: block;
        width: 100%;
    }

    .expertise-mobile-gallery {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
        gap: 0;
        padding-bottom: 20px;
    }

    .expertise-mobile-gallery::-webkit-scrollbar {
        display: none;
    }

    .mobile-expertise-card {
        min-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        display: flex !important;
        flex-direction: column;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        background-color: #ffffff;
        -webkit-user-select: none;
        user-select: none;
    }

    .mobile-expertise-card .expertise-main-img-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .mobile-expertise-card .expertise-main-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-user-drag: none;
        user-select: none;
    }

    .mobile-expertise-card .expertise-main-content {
        width: 100%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .expertise-mobile-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .expertise-mob-dash {
        width: 12px;
        height: 4px;
        background-color: #ccc;
        border-radius: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .expertise-mob-dash.active {
        width: 24px;
        background-color: #00A4EB;
    }

    .expertise-mob-dash:last-child:not(.active) {
        width: 6px;
        opacity: 0.5;
    }
    .testimonial-carousel {
        padding: 0 !important;
    }

    .testimonial-slide {
        flex-direction: column;
    }

    .video-card {
        flex: auto;
        width: 100%;
    }

    .details-card {
        display: none;
    }

    .testimonial-pagination {
        align-items: center;
    }

    .testimonial-pagination .dot {
        width: 12px;
        height: 4px;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }

    .testimonial-pagination .dot.active {
        background-color: #ffffff;
        width: 24px;
    }

    .testimonial-pagination .dot:last-child:not(.active) {
        width: 6px;
        opacity: 0.5;
    }
    .testimonial-nav-btn.prev {
        left: -40px;
    }

    .testimonial-nav-btn.next {
        right: -40px;
    }
    .white-box {
        margin: 10px 16px 0 16px !important;
        padding: 40px;
        height: auto !important;
        width: calc(100% - 32px) !important;
        border-radius: 0;
    }

    .testimonials-section {
        margin: 10px 16px 0 16px !important;
        width: calc(100% - 32px) !important;
        padding: 40px;
        box-sizing: border-box;
    }

    .services-about-layout .about-content h2,
    .services-stats-heading,
    .partners-main-heading,
    .core-services-header h2,
    .tech-partners-header h2,
    .expertise-header h2,
    .testimonials-header h2,
    .section-label,
    .services-about-layout .about-content p,
    .core-services-header p,
    .tech-partners-header p,
    .expertise-header p,
    .testimonials-header p {
        text-align: left !important;
    }
}

@media (max-width: 810px) {
    .white-box {
        margin: 10px 12px 0 12px !important;
        padding: 24px;
        height: auto !important;
        width: calc(100% - 24px) !important;
        border-radius: 0;
    }

    .testimonials-section {
        margin: 10px 12px 0 12px !important;
        width: calc(100% - 24px) !important;
        padding: 24px;
        box-sizing: border-box;
    }

    .mobile-expertise-card .expertise-main-img-wrapper {
        height: 200px;
    }

    .mobile-expertise-card .expertise-main-content {
        padding: 25px 20px;
    }
    .testimonial-nav-btn {
        display: none;
    }

    .video-thumbnail-wrapper {
        height: 200px;
    }

    .core-services-header h2 {
        white-space: normal;
        font-size: 26px;
    }

    .partners-cta-banner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px;
    }
    .partners-cta-text {
        white-space: normal;
        font-size: 16px;
    }
    .partners-cta-btn { margin: 0 auto; }
}

@media (max-width: 390px) {
    .white-box {
        margin: 10px 10px 10px 10px !important;
        padding: 20px;
        height: auto !important;
        width: calc(100% - 20px) !important;
        border-radius: 0;
    }

    .testimonials-section {
        margin: 10px 10px 0 10px !important;
        width: calc(100% - 20px) !important;
        padding: 20px;
        box-sizing: border-box;
    }

    .stats-grid.services-stats {
        gap: 12px !important;
    }

    .services-stat-item {
        min-height: 150px;
        padding: 20px 10px;
    }

    .services-stat-item h3,
    .services-stat-item .stat-suffix {
        font-size: 36px !important;
    }
    #hero .hero-slide-static .hero-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    #hero .hero-slide-static .hero-content .btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

/* =========================================
   Core Values Section
   ========================================= */
.core-values-section {
    width: 100%;
}

.core-values-box {
    padding-bottom: 0;
}

.core-values-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.core-values-content {
    flex: 1;
}

.core-values-content p {
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    color: #737373;
    max-width: 100%;
}

.core-values-image {
    flex: 0 0 420px;
    height: 320px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

.core-values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.core-values-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -60px;
    padding: 0 60px 60px;
}

.cv-kpi {
    display: flex;
    flex-direction: column;
    padding: 36px 0 0 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.cv-kpi:first-child {
    padding-left: 0;
}

.cv-kpi:last-child {
    border-right: none;
}

.cv-kpi-number {
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.cv-kpi-suffix {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
}

.cv-kpi-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .core-values-inner {
        margin-bottom: 40px;
    }
    .core-values-kpis {
        margin: 0 -40px;
        padding: 0 40px 40px;
    }
    .core-values-image {
        flex: 0 0 340px;
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .core-values-inner {
        flex-direction: column;
    }
    .core-values-image {
        flex: none;
        width: 100%;
        height: 220px;
    }
    .core-values-kpis {
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
        gap: 8px;
        margin: 0;
        padding: 0;
    }
    .cv-kpi {
        height: 140px;
        background-color: #f5f6f8;
        border: none;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .cv-kpi:first-child,
    .cv-kpi:nth-child(3) {
        padding-left: 20px;
    }
    .cv-kpi-number {
        font-size: 42px;
        text-align: center;
    }
    .cv-kpi-label {
        text-align: center;
        margin-top: 8px;
    }
}

@media (max-width: 810px) {
    .core-values-inner {
        margin-bottom: 24px;
    }
    .core-values-kpis {
        gap: 8px;
        margin: 0 0 10px 0;
        padding: 0;
    }
    .cv-kpi {
        height: 140px;
        padding: 20px;
    }
    .cv-kpi:first-child,
    .cv-kpi:nth-child(3) {
        padding-left: 20px;
    }
    .cv-kpi-number {
        font-size: 36px;
    }
}

/* =========================================
   Our Offices Section (about-us page)
   ========================================= */
.our-offices-box {
    padding-bottom: 40px;
}

.offices-list {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.offices-grey-box {
    background: #f2f2f2;
    padding: 24px 28px;
}

.office-entry {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.office-entry-city {
    font-size: 28px;
    font-weight: 400;
    color: #0F1D2C;
    margin: 0 0 6px;
    line-height: 1.1;
}

.office-entry-address {
    font-size: 15px;
    line-height: 1.6;
    color: #737373;
    margin: 0;
    font-weight: 300;
}

.office-entry-phone {
    font-size: 15px;
    color: #737373;
    text-decoration: none;
    font-weight: 300;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.office-entry-phone:hover {
    color: #0F1D2C;
}

@media (max-width: 1024px) {
    .office-entry-city {
        font-size: 24px;
    }
}

@media (max-width: 810px) {
    .offices-list {
        flex-direction: column;
        gap: 16px;
    }
    .offices-grey-box {
        padding: 20px;
    }
    .office-entry-city {
        font-size: 22px;
    }
}

/* =========================================
   Scope of IT Services Section (about-us)
   ========================================= */
.its-box {
    padding-bottom: 60px;
}

.its-intro {
    max-width: 640px;
    color: #737373;
    margin-bottom: 48px;
}

.its-layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.its-tabs {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0,0,0,0.12);
}

.its-tab {
    text-align: left;
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #737373;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1.4;
}

.its-tab:hover {
    background: #eeeeee;
    color: #0F1D2C;
}

.its-tab.active {
    color: #0F1D2C;
    font-weight: 600;
    background: #d0d0d0;
}

.its-panels {
    flex: 1;
    padding: 0 0 0 40px;
}

.its-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
}

.its-panel.active {
    display: grid;
}

.its-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 22px;
    background: #f5f6f8;
    border-top: none;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.its-item-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.its-item-text h4 {
    font-size: 15px;
    font-weight: 500;
    color: #0F1D2C;
    margin: 0;
    line-height: 1.35;
}

.its-item-text p {
    font-size: 13px;
    color: #737373;
    margin: 0;
    line-height: 1.45;
    font-weight: 400;
}

.its-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00A4EB;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.its-item:hover::before {
    transform: scaleX(1);
}

.its-item::after {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #000000;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    flex-shrink: 0;
    margin-left: 12px;
    margin-top: 3px;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.its-item:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

.its-item:hover {
    background: #eaecf0;
    color: #0F1D2C;
}

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

@media (max-width: 1024px) {
    .its-tabs {
        flex: 0 0 220px;
    }
    .its-panels {
        padding-left: 28px;
    }
    .its-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 810px) {
    .its-layout {
        flex-direction: column;
    }
    .its-tabs {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.12);
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .its-tabs::-webkit-scrollbar { display: none; }
    .its-tab {
        white-space: nowrap;
        padding: 14px 18px;
        font-size: 14px;
        background: none;
    }
    .its-tab.active {
        background: none;
        color: #0F1D2C;
        font-weight: 600;
        border-bottom: 2px solid #0F1D2C;
    }
    .its-panels {
        padding: 20px 0 0;
        width: 100%;
    }
    .its-panel {
        grid-template-columns: 1fr;
    }
}

.its-accordion {
    display: none;
}

@media (max-width: 1024px) {
    .its-layout {
        display: none;
    }
    .its-accordion {
        display: block;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    .its-acc-item {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .its-acc-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        border: none;
        padding: 22px 0;
        font-size: 16px;
        font-weight: 400;
        font-family: var(--font-primary);
        color: #0F1D2C;
        cursor: pointer;
        text-align: left;
        gap: 16px;
    }
    .its-acc-chevron {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        color: #0F1D2C;
        transition: transform 0.25s ease;
    }
    .its-acc-item.open .its-acc-chevron {
        transform: rotate(180deg);
    }
    .its-acc-body {
        display: none;
        padding: 0 0 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .its-acc-item.open .its-acc-body {
        display: grid;
    }
    .its-acc-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: #f5f6f8;
        font-size: 14px;
        color: #0F1D2C;
        text-decoration: none;
        font-weight: 400;
        transition: background 0.2s ease;
    }
    .its-acc-link::after {
        content: '→';
        font-size: 14px;
        color: #737373;
        flex-shrink: 0;
        margin-left: 8px;
    }
    .its-acc-link:hover {
        background: #eaecf0;
    }
}

@media (max-width: 480px) {
    .its-acc-body {
        grid-template-columns: 1fr;
    }
}
