* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

section {
    padding: 70px 10px;
}

/* Parent fix (important) */
.carousel,
.carousel-inner,
.carousel-item {
    position: relative;
}

/* Force center controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 40px !important;
    height: 40px !important;
    background-color: #224384cb !important;
    border-radius: 50%;
    opacity: 1 !important;
    z-index: 10;
    font-size: 10px !important;
}

/* Left Right positioning */
.carousel-control-prev {
    left: 20px !important;
}

.carousel-control-next {
    right: 20px !important;
}

/* White icon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    background-size: 60%;
}

.certified .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.certified .container h2 {
    font-size: 36px;
    font-weight: 700;
    color: black;
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;

}

.certified .container .division-img {
    width: 50%;
    padding: 30px 0;
}

.certified .container .certified-img {
    width: 90%;
    padding: 50px 0;

}

/* ===== ankush SECTION START===== */
.ankush{
    background: #EEF2F6;
}
    .akpsl-section {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      background: #EEF2F6;
    }

    .akpsl-heading {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      color: #111;
      margin-bottom: 28px;
    }

    .akpsl-outer {
      position: relative;
      padding: 0 28px;
    }

    .akpsl-viewport {
      overflow: hidden;
      width: 100%;
    }

    .akpsl-track {
      display: flex;
      gap: 14px;
      transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
      will-change: transform;
    }

    .akpsl-card {
      flex-shrink: 0;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      border: 1px solid #e0e0e0;
      background: #fff;
    }

    .akpsl-card img {
      width: 100%;
     
      object-fit: cover;
      display: block;
    }

    .akpsl-label {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
      letter-spacing: 0.3px;
      white-space: nowrap;
    }

    .akpsl-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      z-index: 10;
      transition: background 0.15s;
    }
    .akpsl-btn:hover { background: #f0f0f0; }
    .akpsl-btn svg {
      width: 16px; height: 16px;
      fill: none; stroke: #333;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .akpsl-prev { left: -30px; }
    .akpsl-next { right: -30px; }

    .akpsl-dots {
      display: flex;
      justify-content: center;
      gap: 7px;
      margin-top: 18px;
    }
    .akpsl-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .akpsl-dot.akpsl-active {
      background: #1a5fb4;
      transform: scale(1.35);
    }
/* ===== ankush SECTION end===== */
/* ===== PRODUCT SECTION START===== */

/* OUTER */
.pxr-outer {
    position: relative;
}

.ankushpcr {
    background-color: #eef2f6;
}

.pxr-sec .p-heading {
    font-size: 32px;
    font-weight: 700;
    font-family: inherit;
    color: black;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.pxr-sec .p-para {
    font-size: 16px;
    width: 60%;
    display: block;
    margin: 0 auto;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.pxr-sec .h3p {
    font-size: 25px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-top: 30px;

}

/* INNER (slider area only) */
.pxr-inner {
    overflow: hidden;
}

/* TRACK */
.pxr-track {
    display: flex;
    transition: 0.5s ease;
}

/* CARD */
.pxr-item {
    min-width: 25%;
    padding: 12px;
}

.pxr-item img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.pxr-item img:hover {
    transform: scale(1.05);
}

/* BUTTON */
.pxr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* SIDE */
.pxr-prev {
    left: -60px;
}

.pxr-next {
    right: -60px;
}

/* ===== PRODUCT SECTION END ===== */



/* ===== slide category section start  ===== */
.pxr-sec .btn {
    background: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    border: 2px solid #0d6efd;
    transition: 0.4s linear;
    display: block;
    margin: 0 auto;
    width: 15%;
    margin-top: 30px;

}

.pxr-sec .btn a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.pxr-sec .btn:hover {
    background-color: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.pxr-sec .btn:hover a {
    color: #0d6efd;
}

.pxr-sec .btn i {
    color: white;
}

.pxr-sec .btn:hover i {
    color: #0d6efd;
}


/* ===== slide category section end  ===== */



/* ====== about section start ======== */
.about-section-custom {
    background: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.about-img-box {
    background: #dbe7f0;
    border-radius: 20px;
    height: 350px;
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-counter {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #007bff;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.about-count {
    font-weight: 800;
}

.about-small-title {
    color: #0d6efd;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* 🔥 MAIN HEADING */
.about-heading {
    font-size: 40px;
    font-weight: 700;
}

/* 🔥 PARAGRAPH */
.about-text {
    font-size: 16px;
    color: #555;
    font-weight: 400 !important;
}

.about-feature-box {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    background: #f4f7fb;
}

.about-btn {
    background: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    border: 2px solid #0d6efd;
    transition: 0.4s linear;

}

.about-btn a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.about-btn:hover {
    background-color: transparent;
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.about-btn:hover a {
    color: #0d6efd;
}

.about-btn i {
    color: white;
}

.about-btn:hover i {
    color: #0d6efd;
}

/* ====== about section end ======== */

/* ===== PRODUCT CATEGORY SECTION START ===== */
.nx16-cat-section {
    background: #eef2f6;
    font-family: 'Poppins', sans-serif;
}

/* HEADING */
.nx16-cat-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.nx16-cat-subtext {
    font-size: 15px;
    color: #6c757d;
    max-width: 700px;
    margin: auto;
}

.nx16-cat-card {
    text-decoration: none;
}

/* CARD */
/* .nx16-cat-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nx16-cat-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
} */

.nx16-cat-card h6 {
    padding: 10px;
    font-weight: 600;
    color: #0d6efd;
}

/* HOVER */
.nx16-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== PRODUCT CATEGORY SECTION END ===== */


/* ===== COUNTER  SECTION START ===== */
/* SECTION */
.counter-section {
    background: #f3f5f7;
}

/* GRID FIX */


/* CARD */
.counter-card {
    background: #2f3842;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}.counter-heading{
    text-align: center;
    font-weight: 700;
    color: black;
    padding-bottom: 20px;
    font-style: 32px;
}
/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    border: 2px solid #3cda64;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
    transition: 0.4s;
}

/* NUMBER */
.counter-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    transition: 0.3s;
}

/* LABEL */
.counter-label {
    font-size: 16px;
    color: #ddd;
}

/* 🔥 HOVER EFFECT */
.counter-card:hover {
    transform: translateY(-8px);
}

.counter-card:hover .counter-number {
    color: #3cda64;
}

.counter-card:hover .icon-box {
    background: #3cda64;
    color: #fff;
}

/* FIRST CARD ACTIVE GREEN */
.counter-card.active {
    background: #3cda64;
}

.counter-card.active .icon-box {
    background: #2f3842;
    border: none;
}

.counter-card.active .counter-number {
    color: #fff;
}
/* ===== COUNTER  SECTION END ===== */


/* ===== SLIDE LOGO SECTION START ===== */
.nx-div-section {
    overflow: hidden;
    background: #eef2f6;
    font-family: 'Poppins', sans-serif;
}

/* HEADING */
.nx-div-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

/* CARD */
.nx-div-card {
    background: #fff;
    border-radius: 15px;

    text-align: center;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-div-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* SLIDER SPACE */
.nx-div-slider {
    padding-bottom: 20px;
}

/* ===== SLIDE LOGO SECTION END ===== */

/* ====== Best Solutions section start ===== */
.solutions h3 {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    font-family: inherit;
}

.solutions h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    font-family: inherit;
}

.solutions p {
    font-size: 16px;
    font-weight: 400;
    font-family: inherit !important;

}

.solutions img {
    border-radius: 20px !important;
}

.solutions .text p {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 8px 10px;

    display: flex !important;
    align-items: center !important;

}

.solutions .text {
    margin-top: -8px;
}

.solutions .text i {
    margin-right: 10px;
    color: #007bff;
}

/* ====== Best Solutions section end ===== */

/* ===== WHY CHOOSE US SECTION START ===== */
.why-choose {
    font-family: "Montserrat", sans-serif;
    background-color: #eef2f6;

}

.why-choose H2 {
    font-weight: 800;
    font-size: 36px;
    color: #222;

    text-align: center;
}

.why-card {
    background: #ffffff;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;

}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-card .icon {
    width: 60px;
    height: 60px;
    background: #e6f9f0;
    color: #28c76f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 12px;
    font-size: 24px;
    transition: 0.4s linear;
}

.why-card:hover .icon {
    background: #28c76f;
    color: #fff;
}

.text-muted {
    width: 75%;
    margin: 0 auto;
}

.why-card h5 {
    font-weight: 700;
    margin-top: 10px;
    font-family: inherit;
}

.why-card p {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    font-family: inherit;
}

/* ===== WHY CHOOSE US SECTION END ===== */


/* ===== Testimonial  section star ===== */
.nx-test-section {
    background: #ffffff;
    overflow: hidden !important;
    padding-bottom: 0 !important;
}

/* HEADING */
.nx-test-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* SWIPER FIX */
.swiper {
    overflow: visible !important;
}

/* CARD */
.nx-test-card {
    background: #eef2f6;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nx-test-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.nx-test-card h5 {
    font-size: 20px;

    font-weight: 600;
}

.stars {
    color: orange;
    margin-top: -10px;

    font-size: 30px;
}

.testi-p {
    font-size: 16px;

}

/* HOVER */
.nx-test-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Testimonial  section end ===== */


/* ===== faq section strt ===== */
.nfaq {
    background: #eef2f6;
    padding: 70px 10px;
}

.nfaq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nfaq-item {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s;
}

.nfaq-item.open {
    border-color: #303842;
}

.nfaq-num-box {
    width: 54px;
    min-width: 54px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 13px;
    background: #f5f5f5;
    border-right: 1px solid #e0e0e0;
}

.nfaq-num-inner {
    width: 32px;
    height: 32px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    background: #88888888;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.nfaq-item.open .nfaq-num-inner {
    background: #007bff;
    border-color: #007bff;
}

.nfaq-num-inner span {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #666666;
    line-height: 1;
    transition: color 0.2s;
}

.nfaq-item.open .nfaq-num-inner span {
    color: #ffffff;
}

.nfaq-body {
    flex: 1;
    min-width: 0;
}

.nfaq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 18px;
    cursor: pointer;
    user-select: none;
}

.nfaq-q-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.45;
}

.nfaq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.nfaq-item.open .nfaq-toggle {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.nfaq-toggle-icon {
    font-size: 20px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1;
    transition: color 0.2s;
    margin-top: -7px;
}

.nfaq-item.open .nfaq-toggle-icon {
    color: #000000;
}

.nfaq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.nfaq-item.open .nfaq-ans {
    max-height: 300px;
}

.nfaq-ans-inner {
    padding: 0 18px 17px;
    border-top: 1px solid #eeeeee;
}

.nfaq-ans-inner p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height: 1.75;
    margin: 13px 0 0;
}

/* ===== faq section end ===== */



/* MOBILE ONLY */
.pxr-mobile-bar {

    display: none;
}

/* BUTTON */
.pxr-btn {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* COLORS */
.pxr-btn.call {
    background: #0d6efd;
}

.pxr-btn.whatsapp {
    background: #25D366;
}

.pxr-btn.quote {
    background: #0dcaf0;
}


/* ========Responsivi============== */

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    section {
        padding: 50px 10px;
    }

    .certified .container h2 {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        display: flex;
        color: black;
        font-family: "Montserrat", sans-serif;

    }

    .pxr-item {
        min-width: 50% !important;
    }

    .pxr-sec .p-heading {
        font-size: 30px;
        font-weight: 700;
        font-family: inherit;
        color: black;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .pxr-sec .p-para {
        font-size: 16px;
        width: 90%;
        display: block;
        margin: 0 auto;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .certified .container .division-img {
        width: 100%;
        padding: 10px 0;
    }

    .certified .container .certified-img {
        width: 100%;
        padding: 10px 0;
    }

    .about-heading {
        font-size: 32px;
    }

    /* product section start */
    .nex-product-heading {
        font-size: 28px;
    }

    .nex-product-section .pro {
        margin-top: -50px;
    }

    .nx2-card {
        min-width: 50%;
    }

    /* product section end */
    /* product category section start */
    .nx16-cat-heading {
        font-size: 26px;
    }

    .nfaq {
        background: #eef2f6;
        padding: 50px 10px;
    }

    .text-muted {
        width: 85%;
        margin: 0 auto;
    }

    .tastimonial-card {
        width: 220px;
    }

}

@media (max-width: 768px) {
    .certified .container h2 {
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        display: flex;
        color: black;
        font-family: "Montserrat", sans-serif;

    }

    .pxr-item {
        max-width: 100% !important;
    }

    .certified .container .division-img {
        width: 100%;
        padding: 10px 0;
    }

    .pxr-prev {
        left: 0px;
    }

    /* 🔥 अंदर ले आए */
    .pxr-next {
        right: 0px;
    }

    /* 🔥 अंदर ले आए */

    .pxr-sec .btn {
        background: #0d6efd;
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        color: #fff;
        border: 2px solid #0d6efd;
        transition: 0.4s linear;
        display: block;
        margin: 0 auto;
        width: 50%;
        margin-top: 30px;

    }

    .certified .container .certified-img {
        width: 100%;
        padding: 10px 0;
    }

    .about-section-custom button {
        display: block;
        margin: 0 auto;
    }

    .pxr-sec .p-heading {
        font-size: 25px;
        font-weight: 700;
        font-family: inherit;
        color: black;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .pxr-sec .p-para {
        font-size: 16px;
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
        font-family: "Montserrat", sans-serif;
    }

    .about-small-title {
        margin-top: 60px;
    }

    section {
        padding: 30px 10px;
    }

    .counter-section h2 {
        font-size: 25px !important;
        font-weight: 700;
    }

    .about-heading {
        font-size: 26px;
    }

    .solutions h2 {
        font-size: 25px !important;
        font-weight: 700 !important;
    }

    .why-choose H2 {
        font-size: 25px !important;
        font-weight: 700 !important;
    }

    .nx-div-heading {
        font-size: 25px !important;
        font-weight: 700 !important;
    }

    .nx-test-heading {
        font-size: 25px !important;
        font-weight: 700 !important;
    }

    .about-text {
        font-size: 16px;
    }

    .about-img-box {
        height: 280px;
    }

    .about-counter {
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }

    /* product section start */
    .nex-product-heading {
        font-size: 24px;
        width: 100%;

    }

    .nex-product-subtext {
        font-size: 16px;
        width: 100%;

    }

    /* product section end */

    /* product category section start */
    .nx16-cat-heading {
        font-size: 22px;
    }

    .nx16-cat-card img {
        height: 100px;
    }

    .text-muted {
        width: 100%;
        margin: 0 auto;
    }

    .tastimonial-card {
        width: 180px;
    }

    .quote {
        font-size: 12px;
    }

    /* ====== faq =======*/
    .nfaq {
        padding: 2rem 12px;
    }

    .nfaq-q-text {
        font-size: 15px;
    }

    .nfaq-ans-inner p {
        font-size: 14px;
    }

    .nfaq-num-box {
        width: 46px;
        min-width: 46px;
    }

    .nfaq-title {
        font-size: 25px;
    }

    .nfaq {
        background: #eef2f6;
        padding: 30px 10px;
    }

    .pxr-mobile-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 9999;
    }

    .pxr-btn {
        flex: 1;
        text-align: center;
        padding: 12px 5px;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        font-weight: 600;
    }

    .pxr-btn.call {
        background: #0d6efd;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pxr-btn.call i {
        color: white;
        font-size: 15px;
        margin-right: 5px;
    }

    .pxr-btn.whatsapp {
        background: #25D366;
    }

    .pxr-btn.whatsapp i {
        color: white;
        font-size: 17px;
        margin-right: px;
    }

    .pxr-btn.quote {
        background: gray;
    }

    .pxr-btn.quote i {
        color: white;
        font-size: 17px;
        margin-right: px;
    }
     .akpsl-prev { left: 10px; }
    .akpsl-next { right: 10px; }
}