.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--eyebrow-fs);
    font-weight: 700;
    letter-spacing: var(--eyebrow-ls);
    text-transform: uppercase;
    color: rgb(244, 163, 0);
    text-align: center;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    display: inline-block;
    text-align: center;
}

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

.section-desc {
    font-size: var(--fs-base);
    color: var(--text-dark);
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: var(--space-2);
}

.section-header {
    text-align: center;
}

.hero-banner {
    background: url(../images/Hero-Image.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: calc(100vw * 695 / 1774);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    flex: 0 0 48%;
    max-width: 48%;
    align-self: flex-start;
    margin-top: var(--space-6);
    z-index: 2;
}

.sub-title {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #234199;
    margin-bottom: var(--space-3);
    padding: var(--space-1) var(--space-1);
    border: 1px solid #9ED4F4;
    border-radius: 999px;
    box-shadow: var(--shadow-sm, 0 8px 20px rgba(18, 58, 115, 0.08));
    max-width: 470px;
}

.sub-title i {
    color: var(--color-accent);
    padding-right: 5px;
}

.hero-content h1 {
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

.hero-content h1 span {
    color: var(--color-accent);
    font-size: var(--fs-h1);
}

.hero-content p {
    color: var(--text-muted);
    font-size: var(--fs-base);
    max-width: 427px;
}

.hero-btns {
    margin-top: var(--space-4);
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.hero-content-section {
    display: none;
}

.hero-content-section {
    display: none;
}
/*==============================
VWT Stats Strip
==============================*/
.vwt-stats-strip {
    padding: 0;
    background: linear-gradient(90deg, var(--color-primary), #123d82);
}

.vwt-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
}

.vwt-stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-1);
}

.vwt-stat-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwt-stat-icon i {
    color: var(--color-accent);
    font-size: var(--fs-h4, 24px);
}

.vwt-stat-content h3 {
    color: var(--white);
    font-size: var(--fs-h3, 24px);
    margin-bottom: 2px;
}

.vwt-stat-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-sm, 14px);
    line-height: 1.5;
}
/* ====================================
   COMPLIANCE
==================================== */
.compliance-box {
    background: var(--white);
    padding: var(--space-2) 0 var(--space-5) 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.compliance-head {
    text-align: center;
}

.compliance-head h2 {
    color: var(--color-primary);
    margin-bottom: var(--space-1);
}

.compliance-head p {
    color: var(--text-muted);
    margin: 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-2);
}

.compliance-item {
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: var(--space-1) var(--space-1);
    text-align: center;
    transition: box-shadow var(--transition-base, 0.25s ease), transform var(--transition-base, 0.25s ease);
}

.compliance-item:hover {
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, .1));
    transform: translateY(-3px);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-1);
}

.compliance-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.compliance-item h3 {
    margin-bottom: var(--space-1);
    font-size:20px;
}


/* ====================================
   PRODUCTS SECTION
==================================== */
.products-section {
    padding: var(--space-2) 0;
    background: #F7FBFF;
}

.section-header-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: var(--space-2);
}

.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 1px;
}

.section-header-inner p {
    margin: 0;
    color: var(--text-muted);
    max-width: 800px;
    text-align: justify;
}

.products-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-2);
    max-width: 1100px;
    height: 500px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base, 0.35s ease), box-shadow var(--transition-base, 0.35s ease);
}

.product-card.product-card--featured {
    grid-row: span 2;
    text-align: center;
    position: relative;
}

.product-card--featured {
    display: flex;
    align-items: center;
}

.product-card__image {
    flex: 0 0 35%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    display: block;
}

.product-card__content {
    flex: 0 0 55%;
    width: 100%;
    padding: 0 var(--space-3);
}

.product-card__content .h3 {
    padding-bottom: var(--space-1);
    font-size: var(--fs-h3);
    text-align: left;
    padding-left: 0;
    padding-bottom: 10px;
}

.product-card__content .para {
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.product-card--featured .spec-list {
    list-style: none;
    margin: 0 0 var(--space-1);
    padding: 0;
    overflow: hidden;
    text-align: left;

}

.product-card--featured .spec-list i {
    padding-inline: 6px;
}

.product-card--featured .spec-list li {
    font-size: var(--fs-sm);
    color: var(--color-primary);
    padding: 3px 0;

}

.view {
    flex: 0 0 10%;
    width: 100%;
    border: 1px solid var(--border);

}

.view div {
    padding-top: 10px;
}

.view:hover {
    background-color: var(--color-accent);
    color: var(--white);

}

.view div:hover {
    color: var(--white);

}

.product-card h3 {
    font-size: var(--fs-h4);
    padding: 5px 0px 5px 12px;
}

.product-card .p {
    margin: 0 auto;
    padding-left: 12px;
    font-size: 13px;
    line-height: 1.4;
    padding-bottom: 10px;
}

.product-card .viewmore {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    padding: 2px 0;
}

.product-card .viewmore:hover {
    background-color: var(--color-accent);
    color: var(--white);
    border: 1px solid var(--color-accent);
}

.all-product-btn {
    display: flex;
    justify-content: center;
    margin-top: var(--space-3);
    padding: var(--space-2);
}
/* ====================================
   INDUSTRIES SECTION
==================================== */
.industries-section {
    padding: var(--space-2) 0 var(--space-5) 0;
    background: var(--white);
}

.industries-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-3);
    align-items: stretch;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

.industry-card {
    background: #032b63;
    border-radius: 12px;
    text-decoration: none;
    padding: var(--space-2) var(--space-1);
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background var(--transition-base, 0.3s ease), transform var(--transition-base, 0.3s ease);
}

.industry-card:hover {
    transform: translateY(-6px);
    background: #0b3f8f;
}

.icon-box.on-dark img {
    width: 55px;
    margin-bottom: var(--space-1);
}

.industry-card span {
    color: var(--white);
}

.industry-image {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ==========================
   Why Choose Section
========================== */
.why-choose {
    padding: var(--space-2) 0 var(--space-5) 0;
    background: var(--white);
}

.why-choose__header {
    max-width: 760px;
    margin: 0 auto var(--space-5, 48px);
    text-align: center;
}

.why-choose__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    margin-bottom: var(--space-1);
    color: var(--color-accent);
    font-size: var(--eyebrow-fs);
    font-weight: 700;
    letter-spacing: var(--eyebrow-ls);
    text-transform: uppercase;
}

.why-choose__eyebrow span {
    width: 36px;
    height: 2px;
    background: var(--color-accent);
}

.why-choose__title {
    margin: 0 0 var(--space-1);
}

.why-choose__subtitle .text-accent {
    color: var(--color-accent);
    font-size: inherit;
}

.why-choose__desc {
    margin: 0;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    max-width: 1200px;
    margin: 0 auto;
}

.wc-card {
    padding: var(--space-4) var(--space-1);
    background: var(--color-secondary);
    border-radius: 12px;
    transition: transform var(--transition-base, 0.25s ease), box-shadow var(--transition-base, 0.25s ease);
}

.wc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 10px 28px rgba(26, 60, 101, .12));
}

.wc-card__head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.wc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
}

.wc-card__icon svg {
    width: 22px;
    height: 22px;
}

.wc-card__title {
    margin: 0;
}

.wc-card__text {
    margin: 0;
    color: var(--text-dark);
}
/* =================================
   company-overview
================================= */

.company-overview {
    padding: var(--space-2) 0;
    background: var(--color-secondary);
}

.company-wrapper {
    display: grid;
    grid-template-columns: 40% 57%;
    gap: 30px;
    align-items: center;
}

.company-image {
    position: relative;
}

.company-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    margin-bottom:60px;
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(26, 60, 101, .12);
    background: #F7FBFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: var(--color-primary);
    font-size: 22px;
}

.info-content p {
    margin: 0;
    line-height: 1.3;
    font-size: 15px;
}

.info-content strong {
    color: var(--color-primary);
    font-weight: 700;
}

.company-content .btn {
    margin-top: 8px;
    width: max-content;
}

/* =================================
   SUCCESS SECTION
================================= */
.success-section {
    padding: var(--space-2) 0 var(--space-5) 0;
    background: var(--color-secondary);
}

.success-heading-wrap {
    margin-bottom: var(--space-4, 32px);
}

.success-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.success-heading p {
    margin: var(--space-2) auto 0;
    max-width: 800px;
    color: var(--text-dark);
    font-size: var(--fs-base);
}

.logo-slider-col {
    width: 100%;
    max-width: var(--maxw, 1200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.logo-slider-col::before,
.logo-slider-col::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-col::before {
    left: 0;
    background: linear-gradient(to right, #F7FBFF, transparent);
}

.logo-slider-col::after {
    right: 0;
    background: linear-gradient(to left, #F7FBFF, transparent);
}

.logo-rows-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-2, 18px);
}

.logo-row-track {
    display: flex;
    gap: var(--space-2, 12px);
    width: max-content;
    will-change: transform;
}

.logo-row-track.row1 {
    animation: scrollLeft 30s linear infinite;
}

.logo-row-track.row2 {
    animation: scrollRight 30s linear infinite;
}

.logo-row-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

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

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.logo-box {
    background: var(--white);
    border-radius: 12px;
    min-width: 160px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2, 12px);
    box-shadow: var(--shadow-sm, 0 1px 6px rgba(0, 0, 0, .08));
}

.logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
/* ====================================
   what we do section
==================================== */
.what-we-do {
    padding: var(--space-2) 0;
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3, 24px);
    margin-bottom: 0;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: var(--space-3) var(--space-3) 0 var(--space-3);
    box-shadow: var(--shadow-sm, 0 5px 20px rgba(0, 0, 0, .08));
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition-base, 0.25s ease), box-shadow var(--transition-base, 0.25s ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 10px 28px rgba(0, 0, 0, .12));
}

.card-heading {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    margin-bottom: var(--space-3, 24px);
}

.card-heading h3 {
    margin: 0;
    font-size: 20px;
    text-align: left;
}

.card-heading img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-card ul {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: var(--space-1, 8px);
    margin-bottom: var(--space-1, 10px);
    color: var(--text-dark);
    font-size: var(--fs-base);
}

.service-card ul li i {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 900;
}

.service-card>img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-top: var(--space-2, 16px);
}

/*==================================
Platform Section
==================================*/
.platform-section {
    padding: 10px 20px;
    background: linear-gradient(90deg, #0b2d63, #123d82);
    overflow: hidden;
}

.container-platform {
    max-width: 1400px;
    margin: 0 auto;
}

.platform-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    
}

.platform-tag {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #FDB913;
    letter-spacing: 0.5px;
}

.platform-left h2 {
    margin-bottom: 10px;
    color: #ffffff !important;
}

.platform-left p {
    margin-bottom: 10px;
    color: #ffffff !important;
    max-width:560px;
}
.platform-trust span {
    font-weight: 500;
    color: #ffffff;
    margin-bottom:10px
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top:7px;

}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: #FDB913;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: #ffffff !important;
    font-size: 16px;
}

.platform-left .btn-primary {
    background: transparent;
    color: var(--white);
    margin-top: var(--space-3);
    border: 1px solid var(--white);
}

.platform-left .btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--white);
}
/* ====================================
   TESTIMONIAL SECTION
==================================== */
.testimonial-section {
    padding: var(--space-2) 0 var(--space-5) 0;
    background: var(--white);
}

.testimonial-wrap {
    position: relative;
}

.ts-heading {
    text-align: center;
    padding-bottom: var(--space-3, 20px);
    color: var(--color-primary);
}

.ts-viewport {
    overflow: hidden;
}

.ts-track {
    --per-view: 3;
    --gap: var(--space-3, 24px);
    display: flex;
    gap: var(--gap);
    transition: transform 0.5s ease;
    padding: 4px 0;
}

.ts-track.no-transition {
    transition: none;
}

.ts-card {
    flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
    border: 1px solid var(--border);
    border-bottom: 4px solid var(--color-primary);
    border-radius: var(--btn-radius, 6px);
    padding: var(--space-4) var(--space-4) var(--space-4);
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0, 0, 0, .04));
    display: flex;
    flex-direction: column;
    min-height: 300px;
    background: var(--white);
}

.ts-card-head {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2, 16px);
    margin-bottom: var(--space-2, 14px);
}

.ts-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    background-color: var(--bg-light, #e5f1f5);
}

.ts-info h3 {
    margin: 0 0 4px;
    font-size: var(--fs-lg);
}

.ts-info p {
    margin: 0 0 var(--space-1, 8px);
    font-size: var(--fs-sm);
    color: var(--text-dark);
    font-weight: 600;
}

.ts-stars {
    color: var(--color-accent);
    font-size: var(--fs-lg, 16px);
    letter-spacing: 2px;
}

.ts-review {
    font-size: var(--fs-base);
    color: var(--text-dark);
    flex-grow: 1;
}

.ts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, .08));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition-base, 0.2s ease), transform var(--transition-base, 0.2s ease);
}

.ts-nav:hover {
    background: var(--color-primary);
    color: var(--white);
}

.ts-prev {
    left: -22px;
    color: var(--color-primary);
}

.ts-next {
    right: -22px;
    color: var(--color-primary);
}

.ts-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-1, 8px);
    margin-top: var(--space-4, 26px);
}

.ts-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background var(--transition-base, 0.2s ease), width var(--transition-base, 0.2s ease);
}

.ts-dot.active {
    background: var(--color-primary);
    width: 22px;
    border-radius: 4px;
}

@media(max-width:1024px) {
    .hero-content {
        margin-top: 20px;
    }

    .hero-content h1 {
        font-size: 38px;
        margin-bottom: 15px;

    }

    .hero-content h1 span {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 400px;
        margin-bottom: 15px;
    }

    .hero-btns {
        margin-top: 15px;
    }

    .hero-btns .btn-primary {
        padding: 12px 14px;
    }

    .hero-btns .btn-outline {
        padding: 12px 18px;
    }
    .vwt-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        height: auto;
    }

    .product-card.product-card--featured {
        grid-column: span 3;
        grid-row: auto;
    }

    .product-card {
        height: auto;
    }

.industries-wrapper {
        grid-template-columns: 1fr;
    }

    .industry-image {
        min-height: 260px;
    }
     .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
      .logo-slider-col {
        max-width: 100%;
    }

    .platform-section {
        padding: 20px 20px;
    }

    .platform-wrapper {
        gap: 20px;
        align-items: center;
    }

    .platform-left h2 {
        font-size: 22px;
    }

    .platform-left p {
        font-size: 15px;
    }

    .platform-features {
        gap: 15px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .platform-images img {
        width: 100%;
        max-width: 550px;
        display: block;
        margin: auto;
    }
    .ts-track {
        --per-view: 2;
    }

    .ts-nav {
        width: 38px;
        height: 38px;
    }
    .company-wrapper {
        grid-template-columns: 45% 55%;
        gap: 40px;
    }

    .company-content {
        gap: 24px;
    }

    .info-item {
        gap: 16px;
    }

    .info-icon {
        width: 52px;
        height: 52px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-content p {
        font-size: 15px;
        line-height: 1.8;
    }
   
}
@media(max-width:768px) {
   .hero-banner .hero-content {
        display: none;
    }

    .hero-content-section {
        display: block;
    }

    .hero-content-section .hero-content {
        display: block;
    }

    .hero-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sub-title {
        font-size: 10px;
        padding: 5px 5px;
        width: 100%;
        font-weight: 500;
    }

    .hero-content-mobile {
        width: 100%;
        max-width: 100%;
    }

    .hero-content-mobile.hero-content h1 {
        font-size: var(--fs-h2);
        line-height: 1.2;
    }

    .hero-content-mobile.hero-content h1 span {
        font-size: var(--fs-h2);
        line-height: 1.2;
    }


    .hero-banner {
        background-position: 99% center;
        height: calc(100vw * 1000 / 1774);
    }
    .vwt-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vwt-stat-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-1, 8px);
    }
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.product-card--featured {
        grid-column: span 2;
    }
    .product-card.product-card--featured {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .product-card--featured .product-card__image {
        flex: 0 0 35%;
        width: auto;
    }

    .product-card--featured .product-card__image img {
        height: 100%;
        object-fit: cover;
    }

    .product-card--featured .product-card__content {
        flex: 0 0 45%;
        width: auto;
        padding: var(--space-2) var(--space-3) var(--space-2) 0;
    }

    .product-card--featured h3,
    .product-card--featured p,
    .product-card--featured .spec-list li {
        text-align: left;
    }

    .product-card--featured .viewmore,
    .product-card--featured .view {
        margin: 0;
    }
     .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose__title {
        font-size: var(--fs-h2);
    }

    .why-choose__subtitle {
        font-size: var(--fs-h3);
    }
    
    .success-heading h2 {
        font-size: var(--fs-h3);
    }

    .logo-box {
        min-width: 130px;
        height: 75px;
    }
    .service-grid {
        gap: var(--space-2, 16px);
    }

    .service-card>img {
        height: 180px;
    }
   
  .platform-section {
        padding: 20px 20px;
    }

    .platform-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .platform-images {
        order: -1;
        text-align: center;
    }

    .platform-images img {
        width: 100%;
        max-width: 500px;
        margin: auto;
        display: block;
    }

    .platform-left h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .platform-trust {
        margin: 20px 0;
    }

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

    .feature-item {
        justify-content: center;
        text-align: left;
    }

    .platform-left .btn-primary {
        margin-top: 20px;
    }
    .ts-track {
        --per-view: 2;
        --gap: var(--space-2, 16px);
    }

    .ts-prev {
        bottom: -50px;
        left: calc(50% - 50px);
    }

    .ts-next {
        bottom: -50px;
        right: calc(50% - 50px);
    }

    .ts-nav {
        display: none;
    }
.company-overview {
        padding: var(--space-6) 0;
    }

    .company-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .company-content {
        gap: 24px;
    }

    .company-content .btn {
        width: max-content;
    }
}

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

    .vwt-stat-item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .compliance-item {
        display: flex;
        align-items: center;
        gap: var(--space-1);
        text-align: left;
        padding: var(--space-1);
    }

    .compliance-item h3 {
        font-size: var(--fs-h4);
    }
    .icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .product-card.product-card--featured {
        grid-column: span 1;
    }

    .product-card--featured .product-card__content {
        padding-left: var(--space-2);
    }

    .product-card__content .h3 {
        font-size: var(--fs-h4);
    }

    .products-grid {
        height: auto;
        grid-template-columns: 1fr;
    }

    .product-card.product-card--featured {
        height: auto;
    }

    .product-card--featured .product-card__image {
        flex: 0 0 auto;
    }

    .product-card--featured .product-card__content {
        flex: 1 1 auto;
    }

    .view {
        flex: 0 0 auto;
        margin-top: auto;
    }
    .industries-grid {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .industry-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
        gap: var(--space-2);
    }
    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .wc-card__head {
        gap: var(--space-1);
    }

    .wc-card {
        padding: var(--space-2) var(--space-1);
    }
    .success-heading p {
        font-size: var(--fs-sm);
    }

    .logo-box {
        min-width: 110px;
        height: 65px;
        padding: var(--space-1);
    }

    .logo-row-track {
        gap: var(--space-1);
    }
    .service-grid {
        grid-template-columns: 1fr;
    }

    .card-heading img {
        width: 32px;
        height: 32px;
    }
    
    .platform-section {
        padding: 20px 15px;
    }

    .platform-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .platform-images {
        order: -1;
    }

    .platform-images img {
        width: 100%;
        max-width: 350px;
        margin: auto;
        display: block;
    }

    .platform-tag {
        font-size: 13px;
        line-height: 1.2;
    }

    .platform-left h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .platform-trust span {
        font-size: 16px;
        line-height: 1.2;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }

    .feature-icon {
        font-size: 18px;
        width: 22px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .platform-left .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
        .platform-left p{
        text-align:left;
        }
        
      .platform-trust {
            text-align:left;
            }
            
    .ts-track {
        --per-view: 1;
        --gap: var(--space-2, 16px);
    }

    .ts-card {
        min-height: 280px;
        padding: var(--space-3, 20px);
    }

    .ts-info h3 {
        font-size: var(--fs-base);
    }
    .company-wrapper {
        gap: 30px;
    }

    .company-content {
        gap: 20px;
    }

    .info-item {
        gap: 14px;
    }

    .info-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .company-content .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (min-width:769px) {

    .hero-content-section {
        display: none;
    }

    .hero-banner .hero-content {
        display: block;
    }
}