/* Desktop Banner */
.slider_section2 {
    display: block !important;
}

/* Mobile Banner */
.mobile_slider_section {
    display: none !important;
}


/*Hero section*/
.hero-slider-section {
    position: relative;
    overflow: visible;
    /* padding: 0 0 120px; */
}

.hero-slide-img {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .45) 38%,
            rgba(0, 0, 0, .15) 70%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* LEFT CONTENT */

.hero-slider-left-side-content-div {
    position: absolute;
    top: 49%;
    left: 4%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 560px;
    padding: 0;
}

.heroRightSlider .swiper-button-next,
.heroRightSlider .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff4b;
    transition: all .4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.heroRightSlider .swiper-button-prev {
    left: 30px;
}

.heroRightSlider .swiper-button-next {
    right: 30px;
}

.heroRightSlider .swiper-button-next::after,
.heroRightSlider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.heroRightSlider .swiper-button-next:hover,
.heroRightSlider .swiper-button-prev:hover {

    color: #ffffff86;
    transform: translateY(-50%) scale(1.08);
}

/* Font same */

.hero-slider-left-side-content-div p:first-child {
    display: inline-block;
    padding: 10px 0;
    color: var(--theme-color);
    text-transform: uppercase;
}

.hero-slider-left-side-content-div h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
}

.hero-slider-left-side-content-div h1 span {
    font-size: 30px;
    font-weight: 700;
    color: var(--theme-color2);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-slider-left-side-content-div h1 span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 15%;
    height: 3px;
    background: var(--theme-color2);
}

.hero-slider-left-side-content-div p:last-of-type {
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 25px;
    margin: 20px 0;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 500;
}

.hero-highlight-item i {
    color: var(--theme-color2);
    font-size: 16px;
}

.hero-highlight-item span {
    font-size: 14px;
    min-width: 266px;
}

@media(max-width:991px) {

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}

/* Buttons */

.hero-btn {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-enquiry-btn a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--theme-color2);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-color2);
}

.hero-enquiry-btn a:hover {
    background: transparent;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.hero-view-pro-btn a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--theme-color2);
    color: var(--theme-color2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.hero-view-pro-btn a:hover {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--theme-color2);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-color2);
}

.hero-btn a i {
    transition: .3s;
}

.hero-btn a:hover i {
    transform: translateX(5px);
}

.hero-bottom-features {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;
    width: 92%;
    background: #181818;
    border: 1px solid rgba(188, 148, 80, .35);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    z-index: 99;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    margin-bottom: 139px;

}

.hero-feature-item {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero-feature-icon {
    width: 62px;
    height: 62px;
    border: 1px solid rgba(188, 148, 80, .4);
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 28px;
}

.hero-feature-content h4 {
    color: var(--color-white);
    font-size: 34px;
    margin: 0;
}

.hero-feature-content p {
    color: #ddd;
    font-size: 14px;
    margin: 4px 0 0;
}

/*  */

/* trusted section   */

.trusted-by-section {
    background: #8697b514;
    padding: 40px 0;
    border-top: 1px solid #e8edf7;
    border-bottom: 1px solid #e8edf7;
}

.trusted-title {
    text-align: center;
    margin-bottom: 30px;
}

.trusted-title span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #153d7a;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 25px;
}

.trusted-title span::before,
.trusted-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: #d9e2f2;
}

.trusted-title span::before {
    right: 100%;
}

.trusted-title span::after {
    left: 100%;
}

.trusted-card{
    background:#fff;
    border:1px solid #d9e3f4;
    border-radius:10px;
    padding:10px;
    height:100%;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.4s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.trusted-card:hover{
    transform:translateY(-6px);
    border-color:#0b3b86;
    box-shadow:0 15px 35px rgba(11,59,134,.15);
}

.trusted-card .trusted-icon{
    width:40px;
    height:40px;
    min-width:40px;
    border-radius:15%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.trusted-card .trusted-icon i{
    font-size:26px;
    color:#0b3b86;
    transition:.4s;
}

.trusted-card .trusted-content{
    text-align:left;
}

.trusted-card .trusted-content h6{
    margin:0 0 5px;
    font-size:15px;
    font-weight:700;
    color:#0b3b86;
}

.trusted-card .trusted-content p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.5;
}

.trusted-card:hover .trusted-icon{
    background:#0b3b86;
}

.trusted-card:hover .trusted-icon i{
    color:#fff;
}
.trusted-card p {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--body-text-color);
    line-height: 1.5;
    font-weight: 500;
}

.trusted-card:hover {
    transform: translateY(-5px);
}

.trusted-card:hover i {
    color: #0b2c66;
}

@media(max-width:991px) {

    .trusted-by-section {
        padding: 25px 0;
    }

    .trusted-card {
        margin-bottom: 10px;
    }

}

@media(max-width:576px) {

    .trusted-card i {
        font-size: 30px;
    }

    .trusted-card h6 {
        font-size: 14px;
    }

    .trusted-card p {
        font-size: 12px;
    }

}

/*  */



/* ABOUT US START */

.a3d-about-section {
    padding: 50px 0;
    background: var(--color-white);
    overflow: hidden;

}

.a3d-about-section .a3d-about-image {

    position: relative;

    padding: 35px;

}

.a3d-about-section .a3d-frame {

    position: absolute;

    left: 0;

    top: 0;

    width: 88%;

    height: 88%;

    border: 3px solid var(--theme-color);

    z-index: 1;

}

.a3d-about-section .a3d-image-box {

    position: relative;

    z-index: 2;

    background: var(--color-white);

    padding: 10px;

    border: 1px solid #d9c4a0;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

.a3d-about-section .a3d-image-box::before {

    content: "";

    position: absolute;

    top: -12px;

    right: -12px;

    width: 100%;

    height: 100%;

    border: 2px solid var(--theme-color2);

    z-index: -1;

}

.a3d-about-section .a3d-image-box::after {

    content: "";

    position: absolute;

    left: -12px;

    bottom: -12px;

    width: 100%;

    height: 100%;

    border: 2px solid var(--theme-color);

    z-index: -2;

}

.a3d-about-section .a3d-image-box img {

    width: 100%;

    display: block;

}

.a3d-about-section .a3d-subtitle {
    color: var(--theme-color2);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;

}

.a3d-about-section .a3d-about-content h2 {
    font-size: 35px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.a3d-about-section .a3d-about-content h2 span {

    display: block;

    color: var(--theme-color2);

}

.a3d-about-section .a3d-about-content p {
    color: var(--body-text-color);
    line-height: 27px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;

}

.a3d-about-section .a3d-feature-title{
    flex: 1;
    min-width: 0;
}

.a3d-about-section .a3d-feature p{
    margin: 0;
    font-size: 14px;
    color: var(--body-text-color);
    font-weight: 500;
    line-height: 1.6;

    /* Long text ko wrap karega */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.a3d-about-section .a3d-feature{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px;
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:15px;
    height:100%;
    /* transition:.4s ease; */
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.a3d-about-section .a3d-feature:hover{
    /* transform:translateY(-6px); */
    border-color:#0b3b86;
    box-shadow:0 15px 35px rgba(11,59,134,.15);
}

.a3d-about-section .a3d-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.a3d-about-section .a3d-icon i{
    font-size:28px;
    color:#0b3b86;
    transition:.4s;
}

.a3d-about-section .a3d-feature-title h5{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#0b3b86;
    line-height:1;
}

.a3d-about-section .a3d-feature-title p{
    margin:6px 0 0;
    font-size:15px;
    font-weight:500;
    color:#666;
    line-height:1.5;
}

.a3d-about-section .a3d-feature:hover .a3d-icon{
    background:#0b3b86;
}

.a3d-about-section .a3d-feature:hover .a3d-icon i{
    color:#fff;
}

.a3d-about-section .a3d-icon {
    width: 49px;
    height: 49px;
    /* background: var(--theme-color2); */
    color: var(--theme-color2);
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    transition: .4s;
}

.a3d-about-section .a3d-feature-title h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
}

.a3d-about-section .a3d-feature:hover .a3d-icon {
    /* background: var(--theme-color); */
    color: var(--color-dark);
    /* transform:rotate(8deg); */

}

.a3d-about-section .a3d-feature p {
    margin: 0;
    font-size: 14px;
    color: var(--body-text-color);
    font-weight: 500;

}

.a3d-about-section .a3d-about-btn {

    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: var(--theme-color2);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: capitalize;
    transition: .4s;
    border-radius: 5px;

}

.a3d-about-section .a3d-about-btn:hover {

    background: var(--color-dark);

    color: var(--color-white);

}


/* ABOUT US END */

/*why choose start*/
.why-choose-section {
    padding: 60px 0;
    background: #0b2f6b;
    background-image: linear-gradient(rgba(7, 38, 89, .95), rgba(7, 38, 89, .95)),
        url("../images/pattern.png");
    background-size: cover;
    background-position: center;
}

.why-video {
    width: 100%;
    height: 100%;
    min-height: 430px;
    overflow: hidden;
}

.why-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.why-choose-section .section-title h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 15px;
}

.why-choose-section .section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: #cfcfcf;
}

.why-choose-section .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #0b3b86;
    border: 4px solid #fff;
}

.why-choose-section .section-title p {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
    margin-top: 25px;
}

.why-choose-section .why-card {
    text-align: center;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    height: 100%;
}

.why-choose-section .why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.why-choose-section .why-icon i {
    font-size: 30px;
    color: var(--color-white);
}

.why-choose-section .why-card h4 {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.why-choose-section .why-card p {
    color: rgba(255, 255, 255, .80);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.why-choose-section .why-card:hover .why-icon {
    background: var(--color-white);
}

.why-choose-section .why-card:hover .why-icon i {
    color: #0b2f6b;
}

@media(max-width:991px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title h2 {
        font-size: 28px;
    }

    .why-choose-section .why-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding: 25px 15px;
    }

}

@media(max-width:576px) {

    .why-choose-section .section-title h2 {
        font-size: 24px;
    }

    .why-choose-section .why-card h4 {
        font-size: 17px;
    }

    .why-choose-section .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-section .why-icon i {
        font-size: 24px;
    }

}

/* why choose end */


/*  */

.manufacturing-certification-section {
    padding: 55px 0;
    background: var(--theme-color4);
}

.manufacturing-certification-section .mc-box {
    height: 100%;
}

.manufacturing-certification-section .micron-heading {
    text-align: center;
    margin-bottom: 25px;
}

.manufacturing-certification-section .micron-heading span {
    display: block;
    color: var(--theme-color2);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.manufacturing-certification-section .micron-heading h2 {
    color: var(--color-dark);
    font-size: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 5px;
    position: relative;
}

.manufacturing-certification-section .micron-heading h2 strong {
    color: var(--theme-color2);
    font-size: 34px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 5px;
}

/* .manufacturing-certification-section .micron-heading h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 15px;
} */

.manufacturing-certification-section .micron-heading h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: #cfcfcf;
}

.manufacturing-certification-section .micron-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #0b3b86;
    border: 4px solid #fff;
}

.manufacturing-certification-section .micron-heading p {
    font-size: 15px;
    font-weight: 500;
    color: var(--body-text-color);
    margin-top: 15px;

}

.manufacturing-certification-section .facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.manufacturing-certification-section .facility-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: .4s;
}

.manufacturing-certification-section .facility-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    color: var(--color-white);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

.manufacturing-certification-section .facility-overlay h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);

}

.manufacturing-certification-section .facility-card:hover img {
    transform: scale(1.08);
}

.manufacturing-certification-section .factory-btn {
    text-align: center;
    margin-top: 22px;
}

.manufacturing-certification-section .factory-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-color2);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: capitalize;
}

.manufacturing-certification-section .factory-btn a:hover {
    background: #082f72;
}

.manufacturing-certification-section .certificate-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: var(--color-white);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.manufacturing-certification-section .certificate-card img {
    max-width: 100%;
    max-height: 111px;
}

.manufacturing-certification-section .certificate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

    .manufacturing-certification-section {
        padding: 55px 0;
    }

    /* .manufacturing-certification-section .micron-heading h2 {
        font-size: 28px;
    } */

    .manufacturing-certification-section .certificate-card {
        height: 120px;
    }

}

@media(max-width:576px) {

    /* .manufacturing-certification-section .micron-heading h2 {
        font-size: 22px;
    } */

    .manufacturing-certification-section .facility-card img {
        height: 90px;
    }

    .manufacturing-certification-section .certificate-card {
        height: 100px;
    }

}

/*  */

/* product section start */
.product-range-section {
    padding: 50px 0;
    background: var(--theme-color4);
}

.product-range-section .section-title {
    text-align: center;
    margin-bottom: 35px;
}

.product-range-section .section-title h2 {
    position: relative;
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 15px;
}

.product-range-section .section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: #cfcfcf;
}

.product-range-section .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #0b3b86;
    border: 4px solid #fff;
}

.product-range-section .section-title h2 strong {
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: capitalize;
    margin: 0;
}

.product-range-section .section-title p {
    max-width: 750px;
    margin: 25px auto 0;
    color: var(--body-text-color);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

/* ===========================
   Product Range Card
=========================== */

.product-range-section .product-range-card {
    border: 1px solid #d7dfe9;
    border-radius: 10px;
    background: var(--color-white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    transition: .3s;
}

.product-range-section .product-range-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.product-range-section .product-img {
    width: 157px;
    flex-shrink: 0;
}

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

.product-range-section .product-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color2);
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: capitalize;
}

.product-range-section .product-content p {
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 500;
}

.product-range-section .product-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--theme-color2);
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: .3s;
}

.product-range-section .product-btn:hover {
    background: #082f72;
    color: var(--color-white);
}

/* ===========================
   Best Selling Product
=========================== */

.product-range-section .best-product-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: var(--color-white);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: .3s;
}

.product-range-section .best-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.product-range-section .best-product-card img {
    width: 157px;
    flex-shrink: 0;
}

.product-range-section .best-product-content h5 {
    font-size: 16px;
    color: var(--theme-color2);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-range-section .best-product-content p {
    font-size: 14px;
    color: var(--body-text-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.product-range-section .best-product-content a {
    display: inline-block;
    padding: 8px 18px;
    background: var(--theme-color2);
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: .3s;
}

.product-range-section .best-product-content a:hover {
    background: #082f72;
    color: var(--color-white);
}

/* ===========================
   Responsive
=========================== */

@media (max-width:991px) {

    .product-range-section {
        padding: 40px 0;
    }

    .product-range-section .section-title h2 {
        font-size: 26px;
    }

    .product-range-section .product-range-card,
    .product-range-section .best-product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-range-section .product-img {
        width: 130px;
    }

    .product-range-section .best-product-card img {
        width: 110px;
    }

}

@media (max-width:576px) {

    .product-range-section .section-title h2 {
        font-size: 22px;
    }

    .product-range-section .product-content h4 {
        font-size: 16px;
    }

    .product-range-section .best-product-content h5 {
        font-size: 15px;
    }

}

/* product section end */

.industries-section {
    padding: 35px 0;
    background: var(--color-white);
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.industries-section .industries-heading {
    text-align: center;
    margin-bottom: 25px;
}

.industries-section .industries-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.industries-section .industries-heading h2::before,
.industries-section .industries-heading h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 180px;
    height: 1px;
    background: #d9d9d9;
}

.industries-section .industries-heading h2::before {
    right: 100%;
}

.industries-section .industries-heading h2::after {
    left: 100%;
}

.industry-video {
    width: 100%;
    height: 100%;
    min-height: 272px;
    overflow: hidden;
}

.industry-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.industries-section .industry-card {
    text-align: center;
    padding: 15px;
    border-right: 1px solid #e8e8e8;
    transition: .3s;
    height: 100%;
}

.industries-section .industry-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #234f97;
    font-size: 30px;
    transition: .3s;
}

.industries-section .industry-card h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1d2d50;
    line-height: 1.5;
}

.industries-section .industry-card:hover {
    transform: translateY(-5px);
}

.industries-section .industry-card:hover .industry-icon {
    color: #0d4aa8;
}

@media(max-width:991px) {

    .industries-section .row {
        row-gap: 20px;
    }

    .industries-section .industry-card {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }

    .industries-section .industries-heading h2 {
        font-size: 24px;
    }

    .industries-section .industries-heading h2::before,
    .industries-section .industries-heading h2::after {
        display: none;
    }

}

@media(max-width:576px) {

    .industries-section {
        padding: 30px 0;
    }

    .industries-section .industry-icon {
        font-size: 26px;
        width: 48px;
        height: 48px;
    }

    .industries-section .industry-card h5 {
        font-size: 13px;
    }

}

/*  */

/*==============================
Counter Section
==============================*/

.counter-section {
    padding: 70px 0;
    background: #f7f3ed;
}

.counter-section .counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* background:#6d0d14; */
    border: 1px solid var(--theme-color2);
    padding: 30px 20px;
    transition: .4s;
    height: 100%;
    border-radius: 10px;
}

.counter-section .counter-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.counter-section .counter-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--theme-color2);
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--theme-color2);
}

.counter-section .counter-icon i {
    font-size: 34px;
    color: var(--theme-color);
}

.counter-section .counter-content h2 {
    margin: 0;
    color: var(--theme-color2);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.counter-section .counter-content p {
    margin: 8px 0 0;
    color: var(--theme-color2);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
}

@media(max-width:991px) {

    .counter-section {
        padding: 60px 0;
    }

    .counter-section .counter-box {
        justify-content: flex-start;
    }

}

@media(max-width:767px) {

    .counter-section .counter-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .counter-section .counter-content h2 {
        font-size: 34px;
    }

    .counter-section .counter-content p {
        font-size: 14px;
    }

}

/*  */

/*==========================
Testimonial Section
==========================*/
.customer-review-section {
    padding: 60px 0;
    background: var(--theme-color4);
}

.customer-review-section .review-heading {
    text-align: center;
    margin-bottom: 40px;
}

/* .customer-review-section .review-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
}

.customer-review-section .review-heading h2 strong{
    font-size: 34px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: capitalize;
} */


.customer-review-section .review-heading h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 15px;
}

.customer-review-section .review-heading h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: #cfcfcf;
}

.customer-review-section .review-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #0b3b86;
    border: 4px solid #fff;
}

.customer-review-section .review-heading h2 strong {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: capitalize;
    margin: 0;
}

.customer-review-section .review-heading p {
    max-width: 750px;
    margin: 25px auto 0;
    color: var(--body-text-color);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.customer-review-section .review-card {
    background: var(--color-white);
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 136px;
    transition: .3s;
}

.customer-review-section .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.customer-review-section .quote-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f5f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0d4aa8;
    font-size: 28px;
    flex-shrink: 0;
}

.customer-review-section .review-logo {
    width: 65px;
    flex-shrink: 0;
}

.customer-review-section .review-logo img {
    width: 100%;
}

.customer-review-section .review-content p {
    font-size: 15px;
    color: var(--body-text-color);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 500;
}

.customer-review-section .review-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color2);
}

.customer-review-section .review-prev,
.customer-review-section .review-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f2f2f2;
    color: var(--theme-color2);
}

.customer-review-section .review-prev::after,
.customer-review-section .review-next::after {
    font-size: 16px;
    font-weight: 700;
}

.customer-review-section .review-prev:hover,
.customer-review-section .review-next:hover {
    background: var(--theme-color2);
    color: var(--color-white);
}
/*
@media(max-width:991px) {

    .customer-review-section {
        padding: 70px 0;
    }

    .customer-review-section .review-heading h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .customer-review-section .review-card {
        flex-direction: column;
        text-align: center;
    }

    .customer-review-section .quote-icon,
    .customer-review-section .review-logo {
        margin: auto;
    }

    .customer-review-section .review-heading h2 {
        font-size: 22px;
    }

} */

/* testimoniial end */
/* blogs start */


.insights-cta-section {
    padding: 0;
    padding: 10px;
    overflow: hidden;
    /* color: #fff; */

    background:
        linear-gradient(rgba(11, 78, 162, 0.75), rgba(11, 78, 162, 0.75)),
        url("../blogs/blog-bg.png") center/cover no-repeat;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
    overflow: hidden;
    z-index: 1;
}

.insights-cta-section .insight-area {
    padding: 40px;
    height: 100%;
}


.insights-cta-section .section-heading h2 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 15px;
}

.insights-cta-section .section-heading h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: #cfcfcf;
}

.insights-cta-section .section-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #0b3b86;
    border: 4px solid #fff;
}

.insights-cta-section .section-heading h2 strong {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color2);
    text-transform: capitalize;
    margin: 0;
}

.insights-cta-section .section-heading p {
    max-width: 750px;
    margin: 25px auto 20px;
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.insights-cta-section .insight-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
    border: 2px solid #5a768b;
}

.insights-cta-section .insight-card:hover {
    transform: translateY(-5px);
}

.insights-cta-section .insight-img {
    overflow: hidden;
}

.insights-cta-section .insight-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: .4s;
}

.insights-cta-section .insight-card:hover img {
    transform: scale(1.08);
}

.insights-cta-section .insight-content {
    padding: 15px;
}

.insights-cta-section .insight-content h5 {
    font-size: 15px;
    color: #163a75;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 600;
}

.insights-cta-section .insight-content span {
    font-size: 13px;
    color: var(--body-text-color);
    font-weight: 500;
}

.insights-cta-section .view-all-btn {
    text-align: center;
    margin-top: 30px;

}

.insights-cta-section .view-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.insights-cta-section .view-all-btn a:hover {
    background: var(--color-white);
    color: var(--theme-color2);
}

.insights-cta-section .cta-area {
    position: relative;
    padding: 45px 0px 45px 100px;
    overflow: hidden;
    /* color: #fff; */

    background: transparent
}

.cta-content {
    padding: 10px 0px;
}

.insights-cta-section .cta-area span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
}

.insights-cta-section .cta-area h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 12px 0 13px;
    color: var(--color-white);
}

.insights-cta-section .cta-area p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-white);
    font-weight: 500;
}

.insights-cta-section .cta-area ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.insights-cta-section .cta-area ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    display: flex;
}

.insights-cta-section .cta-area ul li a{
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    display: flex;
}

.insights-cta-section .cta-area ul li i {
    width: 30px;
    height: 30px;
    border-radius: 15%;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #5a768b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;

}

.insights-cta-section .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.insights-cta-section .quote-btn {
    background: var(--color-white);
    color: var(--theme-color2);
    padding: 13px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;

}

.insights-cta-section .catalog-btn {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 13px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.insights-cta-section .catalog-btn:hover {
    background: var(--color-white);
    color: #0b3b86;
}

.insights-cta-section .cta-area img {
    max-height: 360px;
}

@media(max-width:991px) {

    .insights-cta-section {
        padding: 40px 0;
    }

    .insights-cta-section .insight-area,
    .insights-cta-section .cta-area {
        padding: 30px;
    }

    .insights-cta-section .cta-area h2 {
        font-size: 30px;
    }

    .insights-cta-section .cta-area img {
        margin-top: 30px;
    }

}

@media(max-width:576px) {

    .insights-cta-section .section-heading h2 {
        font-size: 24px;
    }

    .insights-cta-section .cta-area h2 {
        font-size: 24px;
    }

    .insights-cta-section .cta-buttons {
        flex-direction: column;
    }

    .insights-cta-section .quote-btn,
    .insights-cta-section .catalog-btn {
        width: 100%;
        text-align: center;
    }

}

/* blogs end */


/*  */
.micron-footer {
    position: relative;
    padding: 70px 0 20px;
    color: var(--color-white);

    background: linear-gradient(90deg, rgb(0 17 48 / 96%) 0%, rgb(0 24 68 / 90%) 35%, rgb(10 48 102 / 92%) 70%, rgb(0 0 0 / 42%) 100%), url(../images/footerbg01.png);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.micron-footer .footer-logo{
    height:60px;
    margin-bottom:20px;
    filter: brightness(0) invert(1);
}

.micron-footer p {
    color: var(--color-white);
    line-height: 1.8;
    font-size: 14px;
}
.footer-widget h4{
    position:relative;
    display:inline-block;
    margin:0 0 28px;
    padding-bottom:14px;
    font-size:24px;
    font-weight:700;
    color:#ffffff;
    text-transform:capitalize;
    letter-spacing:.5px;
    line-height:1.2;
}

/* Main Underline */
.footer-widget h4::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:var(--color-white);
    border-radius:30px;
}

/* Small Accent Line */
.footer-widget h4::after{
    content:"";
    position:absolute;
    left:78px;
    bottom:1px;
    width:18px;
    height:3px;
    background:#ffffff;
    border-radius:30px;
}

.micron-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.micron-footer ul li {
    margin-bottom: 12px;
}

.micron-footer ul li a {
    color: var(--color-white);
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
}

.micron-footer ul li a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.micron-footer .footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.micron-footer .footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.micron-footer .footer-contact i{
    width:42px;
    height:42px;
    min-width:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    border-radius:15%;
    color:#fff;
    font-size:16px;
    margin-top:2px;
}

.micron-footer .footer-contact .contact-info{
    flex:1;

}

.micron-footer .footer-contact .contact-info p,
.micron-footer .footer-contact .contact-info a{
    margin:0;
    color:#fff;
    font-size:14px;
    line-height:1.8;
    text-decoration:none;
    word-break:break-word;
    font-weight: 600;
    display: block;
}



.micron-footer .footer-social {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.micron-footer .footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #ffffff33;
    border-radius: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    transition: .3s;
}

.micron-footer .footer-social a:hover {
    background: var(--color-white);
    color: #0d4aa8;
}

.micron-footer .footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    text-align: center;
}

.micron-footer .footer-bottom p {
    margin: 0;
    font-size: 13px;
}

@media(max-width:991px) {

    .micron-footer {
        padding: 60px 0 20px;
    }

    .micron-footer .footer-contact li {
        justify-content: center;
    }

    /* .micron-footer .footer-social {
        justify-content: center;
    } */

}

/* @media(max-width:576px) {

    .micron-footer .footer-widget {
        margin-bottom: 30px;
    }

    .micron-footer .footer-logo {
        height: 50px;
    }

} */

/* footer end */

.landing_footer{
    position: relative;
    padding: 70px 0 20px;
    color: var(--color-white);
    background: linear-gradient(90deg, rgb(0 17 48 / 96%) 0%, rgb(0 24 68 / 90%) 35%, rgb(10 48 102 / 92%) 70%, rgb(0 0 0 / 42%) 100%), url(../images/footerbg01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_box h4,
.footer_form h4{
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
    color: var(--theme-primary);
}

.footer_item{
    display:flex;
    gap:15px;
    margin-bottom:22px;
}

.footer_item i{
    width:45px;
    height:45px;
    background:var(--secondry-color);
    color:#fff;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    flex-shrink:0;
}

.footer_item span{
    display:block;
    color:#ffff;
    font-size:20px;
    font-weight: 600;
}

.footer_item a{
    display:block;
    color:#bbb;
    text-decoration:none;
    margin-top:3px;
    font-size: 15px;
}

.footer_item p{
    color:#bbb;
    text-decoration:none;
    margin-top:3px;
    font-size: 15px;
}

.footer_map iframe{
    width:100%;
    height:280px;
    border:0;
    border-radius:10px;
}

.footer_form p{
    font-size: 14px;
    margin-bottom: 10px !important;
}

.footer_form{
    background-image: linear-gradient(rgba(7, 38, 89, .95), rgba(7, 38, 89, .95)), url(../images/pattern.png);
    padding:30px;
    border-radius:12px;
}

.footer_form .form-control{
    border-radius:8px;
    height:50px;
    font-size: 14px;
}

::placeholder{
    font-size: 14px;
}

.footer_form textarea.form-control{
    height:auto;
}

.btn_quote{
    background:var(--secondry-color);
    color:#fff;
    border:none;
    height:50px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn_quote:hover{
    background:#fff;
    color:#111;
}

.footer_bottom p{
    color:#bbb;
    margin:0;
}

/*  */

.copy_right_section {
    background-color: var(--color-dark);
    text-align: center;
    padding: 7px 1px;
}

.copyright_content_div>p {
    margin-bottom: 0px !important;
    color: #ffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
}

.copyright_content_div>p>a {
    color: #ffff;
    text-decoration:underline !important;
}

.copyright_content_div>p>a>img {
    width: 45px;
    object-fit: contain;
    margin-left: 3px;
    filter: brightness(0%) invert(1)
}


/* css start */
.desktop_fixed_btn {
    position: fixed;
    bottom: 110px;
    z-index: 999;
    right: 10px;

}

.desktop_fixed_btn>a {
    text-align: center;
    color: var(--color-white) !important;
    display: inline-block;
    line-height: 40px;
    font-size: 23px;
    margin: 0px 5px 0px 0px;
    font-weight: 500;
}


.desktop_fixed_btn>a>i {
    border-radius: 10px;
    background-color: var(--whatsapp-color);
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    animation: pulse 1.8s infinite;
}

.desktop_fixed_btn {
    display: block;
}

.mobile_fixed_btn {
    display: none;
}

/* css end */


/* breadcrumb start */
.breadcrumb-section {
    background-image: url(../images/breadcrumb02.png);
    position: relative;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

.breadcrumb-overly-div {
    background-color: rgb(27 32 51 / 78%);
    padding-top: 45px;
}

.breadcrumb-title-main-div {
    text-align: center;
    margin: auto;
}

.breadcrumb-title-div {
    text-align: center;
    display: inline-block;
    padding: 7px 5px 70px 5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.breadcrumb-title-div>h1 {
    color: var(--color-white);
    text-transform: capitalize;
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 25px;
}

.breadcrumb-title-div>ul {
    list-style: none;
    padding: 0px 6px;
    margin-top: -7px;
}

.breadcrumb-title-div>ul>li>a {
    color: var(--color-white);
    font-weight: 500;
}

.breadcrumb-title-div>ul>li {
    display: inline-block;
    color: var(--color-white);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    margin: 0px 10px 0px 10px;
}

.breadcrumb-title-div>ul>i {
    font-size: 12px;
    color: var(--color-white);
}

/* page titile css end */

/*  product page start*/
/*  PRODUCT BOTTOM CONTENT */

.product-bottom-content {
    padding: 40px 0px 20px 0px;
    background: #f8f9fb;
}

.product-bottom-content .content-box {
    background: #ffff;
    margin-bottom: 10px;
}

.product-bottom-content .content-box h2 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 14px;
}

.product-bottom-content .content-box p {
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 500;
}

.product-bottom-content .content-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-bottom-content .content-box ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.product-bottom-content .content-box ul li:last-child {
    margin-bottom: 0;
}

.product-bottom-content .content-box ul li::before {
    content: "🔹";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--theme-color2);
    font-size: 18px;
}

.product-bottom-content .content-box ul li strong {
    color: var(--black-color2);
    font-weight: 700;
}

/* faq section in product page */
.product-faq-section {
    padding: 40px 0;
    background: #f7faff;
}

.product-faq-heading {
    text-align: center;
    margin-bottom: 40px;
}

.product-faq-heading span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.product-faq-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 12px;
}

.product-faq-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}


/* FAQ Box */

.product-faq .accordion-item {
    border: 0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(20, 33, 61, 0.07);
    overflow: hidden;
}

.product-faq .accordion-button {
    position: relative;
    padding: 22px 65px 22px 25px;
    font-size: 17px;
    font-weight: 600;
    color: #17243a;
    background: #ffffff;
    box-shadow: none;
}

.product-faq .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: var(--color-white);
    box-shadow: none;
    font-size: 19px;
    font-weight: 700;
}


/* Remove Bootstrap Arrow */

.product-faq .accordion-button::after {
    display: none;
}


/* Plus Icon */

.product-faq .faq-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    color: var(--theme-color);
    font-size: 13px;
    transition: all 0.3s ease;
}

.product-faq .accordion-button:not(.collapsed) .faq-icon {
    background: var(--theme-color);
    color: #ffffff;
    transform: translateY(-50%) rotate(45deg);
}


/* Answer */

.product-faq .accordion-body {
    padding: 0 65px 24px 25px;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid #edf1f6;
    font-weight: 500;
}


/* Hover */

.product-faq .accordion-button:hover {
    color: #1769aa;
}


/* Mobile */

@media (max-width: 767px) {

    .product-faq-heading h2 {
        font-size: 28px;
    }

    .product-faq-heading p {
        font-size: 14px;
    }

    .product-faq .accordion-button {
        padding: 18px 55px 18px 18px;
        font-size: 15px;
    }

    .product-faq .accordion-body {
        padding: 0 55px 20px 18px;
        font-size: 14px;
    }

    .product-faq .faq-icon {
        right: 15px;
    }

}
/* product page end */

/*  */
/* pro dt css start */

.shri_prod_dt_section {
    padding: 45px 0;
    background: #ffff;
}

.shri_prod_dt_img {
    position: sticky !important;
    top:25px;
    background: #ffff;
    border-radius: 25px;
    border: 1px solid var(--gray-color2);

}

.shri_prod_dt_img img {
    width: 100% !important;
    height: auto;
    object-fit: contain;
    transition: 0.4s ease;
    border-radius: 25px;
    filter: brightness(87%);
}



.shri_prod_dt_content span {
    font-size: 35px;
    line-height: 25px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 12px;
     font-family: var(--heading-font)
}

/* .shri_prod_dt_content h2 {
    font-size: 20px;
    line-height: 58px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 5px;
} */

.shri_prod_dt_content h2 span {
    color: var(--theme-color);
    font-size: inherit;
}

.shri_prod_dt_content p {
    font-size: 14px;
    line-height: 26px;
    color: var(--body-text-color);
    margin-bottom: 18px !important;
    font-weight: 500;
}

.shri_prod_dt_content p>strong {
    font-size: 15px;
}

.shri_prod_dt_content ul {
    list-style: square !important;
    padding: 0px 0px 0px 20px !important;
}

.shri_prod_dt_content ul li p{
    font-size: 14px;
    line-height: 25px;
    color: var(--body-text-color);
    margin-bottom: 5px !important;
    font-weight: 500;
}


.shri_prod_dt_content ul li strong {
    font-size: 14px;
}

.shri_prod_dt_content h3 {
    font-size: 26px;
    line-height: 24px;
    font-weight: 700;
    color: var(--theme-color7);
    margin-bottom: 12px;
}

.shri_prod_dt_content_full {
    padding-left: 0;
    margin-top: 20px;
}

/* similar product */
/* =========================================
   PRODUCT RANGE SWIPER
========================================= */

.product-range-slider {
    position: relative;
    padding: 5px 5px 55px;
    overflow: hidden;
}

    .product-range-slider .swiper-wrapper {
        align-items: stretch;
    }

    .product-range-slider .swiper-slide {
        height: auto;
        display: flex;
        align-items: stretch;
    }

    .product-range-slider .swiper-slide > .product-range-card,
    .product-range-slider .swiper-slide > .best-product-card {
        width: 100%;
        height: 80%;
        display: flex;
    }


/* =========================================
   NAVIGATION
========================================= */

.product-range-prev,
.product-range-next {
    position: absolute;
    top: 45%;
    z-index: 10;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #1769aa;

    border: 1px solid #e5eaf0;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);

    cursor: pointer;

    transition: all 0.3s ease;
}

.product-range-prev {
    left: 0;
}

.product-range-next {
    right: 0;
}

.product-range-prev:hover,
.product-range-next:hover {
    background: #1769aa;
    color: #ffffff;
}

.product-range-prev.swiper-button-disabled,
.product-range-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* =========================================
   PAGINATION
========================================= */

.product-range-slider .swiper-pagination {
    bottom: 5px;
}

.product-range-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.product-range-slider .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    opacity: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .product-range-prev {
        left: 5px;
    }

    .product-range-next {
        right: 5px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .product-range-slider {
        padding-left: 5px;
        padding-right: 5px;
    }

    .product-range-prev,
    .product-range-next {
        display: none;
    }

}
/* pro dt css end */


/* =========================================
   BLOG PAGE
========================================= */

.blogs-page-section {
    padding: 50px 0;
    background: #f7faff;
}


/* =========================================
   HEADING
========================================= */

.blogs-page-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.blogs-page-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--theme-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.blogs-page-heading h1 {
    margin: 0 0 15px;
    color: var(--theme-color7);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.blogs-page-heading p {
    max-width: 700px;
    margin: auto;
    color: #697386;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}


/* =========================================
   FILTER
========================================= */

.blog-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.blog-filter button {
    border: 1px solid #dfe6ef;
    background: #ffffff;

    color: #536174;

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.blog-filter button:hover,
.blog-filter button.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-page-card {
    height: 100%;

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(20, 33, 61, 0.06);

    transition: all 0.4s ease;
}

.blog-page-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.13);
}


/* =========================================
   IMAGE
========================================= */

.blog-page-img {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #eef3f8;
}

.blog-page-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;
}

.blog-page-card:hover .blog-page-img img {
    transform: scale(1.08);
}


/* Category */

.blog-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 14px;

    border-radius: 20px;

    background: var(--theme-color);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* =========================================
   CONTENT
========================================= */

.blog-page-content {
    padding: 24px 24px 27px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 13px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #8a94a6;

    font-size: 12px;
}

.blog-meta i {
    color: var(--theme-color);
}


.blog-page-content h3 {
    margin: 0 0 13px;

    color: #14213d;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;

    transition: color 0.3s ease;
}

.blog-page-card:hover .blog-page-content h3 {
    color: var(--theme-color);
}


.blog-page-content p {
    margin: 0 0 20px;
    color: var(--body-text-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   READ MORE
========================================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--theme-color);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #14213d;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}


/* =========================================
   PAGINATION
========================================= */

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 55px;
}

.blog-pagination a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    border: 1px solid #e0e6ee;

    background: #ffffff;

    color: #536174;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}

.blog-pagination .pagination-prev,
.blog-pagination .pagination-next {
    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .blogs-page-section {
        padding: 70px 0;
    }

    .blogs-page-heading h1 {
        font-size: 36px;
    }

    .blog-page-img {
        height: 225px;
    }

}


@media (max-width: 767px) {

    .blogs-page-section {
        padding: 60px 0;
    }

    .blogs-page-heading {
        margin-bottom: 30px;
    }

    .blogs-page-heading h1 {
        font-size: 30px;
    }

    .blogs-page-heading p {
        font-size: 14px;
    }

    .blog-filter {
        margin-bottom: 30px;
    }

    .blog-filter button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .blog-page-img {
        height: 230px;
    }

}


@media (max-width: 575px) {

    .blogs-page-section {
        padding: 50px 0;
    }

    .blogs-page-heading h1 {
        font-size: 27px;
    }

    .blog-page-content {
        padding: 20px;
    }

    .blog-page-content h3 {
        font-size: 19px;
    }

    .blog-meta {
        gap: 10px;
    }

}
/* blogs end  */


/* - blog detail start - */

.blog-detail {
    padding: 60px 0;
}

.blog-detail .blog-detail-content {
    width: 100%;
}

.blog-detail .blog-detail-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

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

.blog-detail .blog-detail-meta {
    margin-bottom: 15px;
    color: var(--theme-primary);
    font-size: 14px;
    font-weight: 500;
}

.blog-detail .blog-detail-meta i {
    margin-right: 6px;
}

.blog-detail .blog-detail-content h1 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-color2);
}

.blog-detail .blog-detail-content h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--theme-color7);
}

.blog-detail .blog-detail-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--body-text-color);
    margin-bottom: 20px;
    font-weight: 500;
}


/* ================================
   Recent Blogs Sidebar
================================ */

.blog-detail .blog-sidebar {
    position: sticky;
    top: 60px;
}

.blog-detail .recent-blog-box {
    padding: 25px;
    background: #b7d5e829;
    border-radius: 12px;
    border: 1px solid #b7d5e84d;
}

.blog-detail .recent-blog-box>h3 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--theme-color7);
    margin: 0 0 25px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid #9fbae47a;
}

.blog-detail .recent-blog-box>h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    /* background: var(--theme-primary); */
}


/* Recent Blog Item */

.blog-detail .recent-blog-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #9fbae47a;
}

.blog-detail .recent-blog-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}


/* Recent Blog Image */

.blog-detail .recent-blog-img {
    width: 95px;
    min-width: 95px;
    height: 75px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-detail .recent-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Recent Blog Content */

.blog-detail .recent-blog-content {
    flex: 1;
}

.blog-detail .recent-blog-content h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 8px;
}

.blog-detail .recent-blog-content h4 a {
    color: var(--theme-color7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail .recent-blog-content h4 a:hover {
    color: var(--theme-color2);
}

.blog-detail .recent-blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color2);
    text-decoration: none;
}

.blog-detail .recent-blog-link i {
    margin-left: 4px;
    font-size: 11px;
}

/*  */

.blog-sidebar-contact {
    margin-top: 25px;
    padding: 30px;
    border-radius: 15px;
    background: var(--theme-color);
    color: #ffffff;
}

.blog-sidebar-contact > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-sidebar-contact h3 {
    margin: 10px 0 12px;
    color: var(--color-white);
    font-size: 23px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-sidebar-contact p {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.blog-sidebar-contact > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;

    background: #ffffff;
    color: var(--theme-color);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.blog-sidebar-contact > a:hover {
    background: #14213d;
    color: #ffffff;
}

/* blog-detail end */


.certificates-page-section {
    padding: 60px 0;
    background: #f6f9fc;
}


/* =========================================
   PAGE HEADING
========================================= */

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

.certificates-page-heading > span {
    display: inline-block;
    margin-bottom: 12px;

    color: #1769aa;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.certificates-page-heading h1 {
    margin-bottom: 18px;

    color: #14213d;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}

.certificates-page-heading h1 strong {
    font-weight: 800;
}

.certificates-page-heading p {
    max-width: 770px;
    margin: 0 auto;
    color: var(--body-text-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   CERTIFICATE CARD
========================================= */
.certificates-page-section {
    padding: 80px 0;
    background: #f6f9fc;
}

.certificate-image-card {
    width: 100%;
    height: 360px;
    padding: 20px;

    background: #fff;
    border: 1px solid #e5eaf0;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    transition: all 0.3s ease;
}

.certificate-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(20, 33, 61, 0.12);
}

.certificate-image-card a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    cursor: zoom-in;
}


@media (max-width: 767px) {

    .certificates-page-section {
        padding: 55px 0;
    }

    .certificate-image-card {
        height: 320px;
    }

}


@media (max-width: 575px) {

    .certificate-image-card {
        height: 300px;
        padding: 15px;
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .certificates-page-section {
        padding: 70px 0;
    }

    .certificates-page-heading {
        margin-bottom: 40px;
    }

    .certificates-page-heading h1 {
        font-size: 36px;
    }

    .certificate-page-img {
        height: 280px;
    }

}


@media (max-width: 767px) {

    .certificates-page-section {
        padding: 55px 0;
    }

    .certificates-page-heading h1 {
        font-size: 32px;
    }

    .certificates-page-heading p {
        font-size: 14px;
    }

    .certificate-page-img {
        height: 300px;
    }

}


@media (max-width: 575px) {

    .certificates-page-heading h1 {
        font-size: 28px;
    }

    .certificate-page-content {
        padding: 22px;
    }

    .certificate-page-img {
        height: 270px;
        padding: 20px;
    }

}
/* cerificates end */

/* privacy section start */

.privacy_section {
    padding: 40px 0px 40px 0px;
}

.privacy_content_main_div>h1 {
    color: var(--theme-color7);
    text-transform: capitalize;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px !important;
}


.privacy_content_main_div>h3 {
    color: var(--theme-color7);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}



.privacy_content_main_div>h4 {
    color: var(--theme-color7);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>h5 {
    color: var(--theme-color7);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div>p {
    font-weight: 500;
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div>p>strong {
    color: var(--theme-color2);
}

.privacy_content_main_div>p>a {
    color: var(--theme-color2);
    font-weight: 700;
    text-decoration: underline !important;
}


.privacy_content_main_div ul {
    list-style-type: square !important;
    list-style-position: outside;
    padding-left: 25px !important;
    margin: 0;
}

.privacy_content_main_div ul li {
    display: list-item !important;
    list-style-type: square !important;
    font-weight: 500;
    font-size: 14px;
    color: var(--body-text-color);
    line-height: 27px;
    margin-bottom: 10px;
}

.privacy_content_main_div ul li::marker {
    color: var(--theme-color2);
    font-size: 15px;
}

/* Privacy Section end  */


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero-section {
    position: relative;
    min-height: 400px;
    padding: 45px 0 70px;
    background-image: url("../images/contact01.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 35, 92, 0.98) 0%,
        rgba(3, 35, 92, 0.92) 38%,
        rgba(3, 35, 92, 0.55) 65%,
        rgba(3, 35, 92, 0.18) 100%
    );
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    color: #fff;
    padding: 20px 20px 20px 0;
}

.contact-small-title {
    display: block;
    color: #1d9bea;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-hero-content h1 {
    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
    margin: 0;
    color: var(--color-white);
}

.contact-title-line {
   width: 34px;
    height: 2px;
    background: var(--theme-color);
    margin: 12px 0;
}

.contact-hero-content > p {
    max-width: 560px;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}


/* BENEFITS */

.contact-benefits {
    display: flex;
    flex-wrap: wrap;
}

.contact-benefit {
    width: 25%;
    padding: 0 18px;
    border-right: 1px solid rgba(255,255,255,0.35);
}

.contact-benefit:first-child {
    padding-left: 0;
}

.contact-benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 23px;
    margin-bottom: 8px;
}

.contact-benefit h5 {
    font-size: 13px;
    margin: 0 0 6px;
    color: #fff;
}

.contact-benefit p {
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,0.82);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 25px 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

.contact-form-heading span {
    display: block;
    color: #092e75;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    height: 46px;
    border: 1px solid #e2e5ea;
    border-radius: 5px;
    box-shadow: none;
    font-size: 13px;
    color: #444;
    padding: 10px 12px;
    font-weight: 500;
}

.contact-form-box textarea.form-control {
    height: 95px;
    resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px rgba(13,91,215,0.08);
}

.contact-submit-btn {
    width: 100%;
    height: 47px;
    border: 0;
    border-radius: 5px;
    background: var(--theme-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit-btn i {
    margin-left: 7px;
}

.contact-submit-btn:hover {
    background: #043e9c;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--body-text-color);
    margin: 8px 0 0;
    font-weight: 700;
}


/* =========================================
   STATS
========================================= */

.contact-stats-section {
    position: relative;
    margin-top: -35px;
    z-index: 5;
}

.contact-stats-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 18px 12px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.contact-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid #e5e7eb;
}

.contact-stat-item:last-child {
    border-right: 0;
}

.contact-stat-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: #0c4da2;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-stat-item h3 {
    color: var(--theme-color);
    font-size: 20px;
    margin: 0 0 2px;
    font-weight: 700;
}

.contact-stat-item span {
    display: block;
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 500;
}



/* =========================
   CONTACT INFORMATION
========================= */

.contact-information-section {
    padding: 40px 0;
    background: #eef2ffba;
}

.contact-section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.contact-section-heading span {
    display: block;
    margin-bottom: 8px;
    color: #123f91;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-section-heading h2 {
    margin: 0;
    color: var(--theme-color7);
    font-size: 34px;
    font-weight: 800;
}

.contact-section-heading h2 strong {
    color: var(--theme-color7);
    font-size: 34px;
    font-weight: 800;
}

.heading-line {
    width: 55px;
    height: 3px;
    margin: 6px auto 0;
    background: #168ee8;
    border-radius: 10px;
}


/* Contact Details */

.contact-details-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5ff;
    border-radius: 12px;
    color: #123f91;
    font-size: 23px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background: #123f91;
    color: #fff;
}

.contact-detail-content h4 {
    margin: 3px 0 7px;
    color: var(--theme-color2);
    font-size: 19px;
    font-weight: 700;
    line-height: 27px;
}

.contact-detail-content p {
    margin: 0;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.contact-detail-content a {
    color: #555;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-detail-content a:hover {
    color: #123f91;
}


/* Map */

.contact-map-box {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.map-direction-btn {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    background: #123f91;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.map-direction-btn:hover {
    background: #168ee8;
    color: #fff;
}


/* =========================
   HELP SECTION
========================= */

.contact-help-section {
    padding: 50px 0;
    background: #f7f9fc;
}

.help-card {
    height: 100%;
    padding: 30px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid #e7ebf2;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.help-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(18, 63, 145, 0.13);
}

.help-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #123f91;
    color: #fff;
    border-radius: 12px;
    font-size: 21px;
    transition: 0.3s ease;
}

.help-card:hover .help-icon {
    background: #168ee8;
    transform: scale(1.05);
}

.help-card h3 {
    margin: 0 0 10px;
    color: var(--theme-color2);
    font-size: 19px;
    font-weight: 700;
}

.help-card > p {
    min-height: 45px;
    margin: 0 0 20px;
    color:  var(--body-text-color);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}


/* Clickable Phone / Email */

.help-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.help-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #173f8f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.help-contact a i {
    width: 17px;
    min-width: 17px;
    text-align: center;
    font-size: 13px;
}

.help-contact a:hover {
    color: #168ee8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .contact-information-section,
    .contact-help-section {
        padding: 60px 0;
    }

    .contact-map-box {
        min-height: 380px;
    }

    .contact-map-box iframe {
        min-height: 380px;
    }

    .help-card {
        padding: 28px 20px;
    }

}


@media (max-width: 767px) {

    .contact-section-heading {
        margin-bottom: 30px;
    }

    .contact-section-heading h2 {
        font-size: 28px;
    }

    .contact-detail-item {
        gap: 14px;
    }

    .contact-detail-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
    }

    .contact-map-box {
        min-height: 320px;
    }

    .contact-map-box iframe {
        min-height: 320px;
    }

    .map-direction-btn {
        right: 12px;
        bottom: 12px;
        padding: 11px 15px;
    }

}

/* =========================================
   BOTTOM CTA
========================================= */

.contact-bottom-cta {
    padding: 0 0 70px;
    background: #f8fafc;
}

.contact-cta-box {
    min-height: 105px;
    background: linear-gradient(
        100deg,
        #073b89,
        #064aa5
    );

    border-radius: 9px;
    padding: 18px 25px;

    display: flex;
    align-items: center;
    gap: 25px;

    overflow: hidden;
}

.contact-cta-image {
    width: 160px;
    height: 80px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
}

.contact-cta-content {
    flex: 1;
}

.contact-cta-content h2 {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 7px;
}

.contact-cta-content p {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 420px;
}

.contact-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.contact-quote-btn,
.contact-catalogue-btn {
    min-width: 145px;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-quote-btn {
    background: var(--color-white);
    color: #083d91;
}

.contact-catalogue-btn {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.contact-quote-btn:hover {
    background: #edf4ff;
    color: #062f70;
}

.contact-catalogue-btn:hover {
    background: #fff;
    color: #073d91;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .contact-hero-content h1 {
        font-size: 42px;
    }

    .contact-benefit {
        padding: 0 10px;
    }

    .contact-stat-item {
        gap: 7px;
    }

    .contact-stat-icon {
        font-size: 20px;
    }

}


@media (max-width: 991px) {

    .contact-hero-section {
        padding: 45px 0 70px;
    }

    .contact-hero-content {
        padding-right: 0;
    }

    .contact-form-box {
        margin-top: 15px;
    }

    .contact-stats-box {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 0;
    }

    .contact-stat-item:nth-child(3) {
        border-right: 0;
    }

    .contact-stat-item:nth-child(n+4) {
        border-top: 1px solid #e5e7eb;
        padding-top: 15px;
    }

    .contact-cta-box {
        flex-wrap: wrap;
    }

    .contact-cta-content {
        min-width: 300px;
    }

}


@media (max-width: 767px) {

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-benefits {
        gap: 20px 0;
    }

    .contact-benefit {
        width: 50%;
        border-right: 0;
    }

    .contact-benefit:first-child {
        padding-left: 0;
    }

    .contact-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-stat-item {
        border-right: 1px solid #e5e7eb !important;
    }

    .contact-stat-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .contact-stat-item:nth-child(n+3) {
        border-top: 1px solid #e5e7eb;
        padding-top: 15px;
    }

    .contact-information-section,
    .contact-help-section {
        padding: 55px 0;
    }

    .contact-section-heading h2 {
        font-size: 26px;
    }

    .contact-map-box,
    .contact-map-box iframe {
        min-height: 350px;
    }

    .contact-cta-box {
        text-align: center;
        justify-content: center;
        padding: 25px 20px;
    }

    .contact-cta-image {
        width: 130px;
        height: 70px;
    }

    .contact-cta-content {
        min-width: 100%;
    }

    .contact-cta-content p {
        margin: auto;
    }

    .contact-cta-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

}


@media (max-width: 575px) {

    .contact-hero-section {
        padding: 35px 0 55px;
    }

    .contact-hero-content h1 {
        font-size: 31px;
    }

    .contact-benefit {
        width: 50%;
        padding: 0 8px;
    }

    .contact-benefit h5 {
        font-size: 12px;
    }

    .contact-benefit p {
        font-size: 10px;
    }

    .contact-form-box {
        padding: 20px 15px 15px;
    }

    .contact-stats-section {
        margin-top: -25px;
    }

    .contact-stats-box {
        padding: 10px;
    }

    .contact-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 3px;
    }

    .contact-stat-item h3 {
        font-size: 16px;
    }

    .contact-stat-item span {
        font-size: 9px;
    }

    .contact-detail-item {
        align-items: flex-start;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .contact-quote-btn,
    .contact-catalogue-btn {
        width: 100%;
    }

}
/*  */
/* about page start */

/* =========================================
       ABOUT HERO
    ========================================= */
/* =========================================
   ABOUT HERO SECTION
========================================= */

.about-hero-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.about-hero-container {
    width: 100%;
    min-height: 390px;
    display: flex;
    position: relative;
    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-hero-content {
    width: 47%;
    padding: 55px 40px 45px 50px;
    background: #f8fafc;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Diagonal Shape */

.about-hero-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -95px;
    width: 150px;
    height: 100%;
    background: #f8fafc;
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}


/* =========================================
   TAG
========================================= */

.about-hero-tag {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0b347d;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

.about-hero-content h1 {
    margin: 0 0 18px;
    font-size: 39px;
    line-height: 1.08;
    font-weight: 700;
    color: #101010;
    letter-spacing: -0.8px;
}

.about-hero-content h1 strong {
    color: #0d3783;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.about-hero-content p {
    max-width: 530px;
    margin: 0 0 22px;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}


/* =========================================
   BUTTON
========================================= */

.about-profile-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #073781;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-profile-btn i {
    font-size: 12px;
}

.about-profile-btn:hover {
    background: #06275c;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.about-hero-image {
    width: 60%;
    height: 390px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;

    clip-path: polygon(
        18% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-hero-container {
        min-height: 350px;
    }

    .about-hero-content {
        width: 52%;
        padding: 40px 30px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 14px;
    }

    .about-hero-image {
        width: 58%;
        height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-hero-container {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .about-hero-content {
        width: 100%;
        padding: 40px 20px 35px;
    }

    .about-hero-content::after {
        display: none;
    }

    .about-hero-content h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .about-hero-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .about-hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
        right: auto;
        top: auto;
    }

    .about-hero-image img {
        object-position: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .about-hero-content {
        padding: 30px 16px;
    }

    .about-hero-tag {
        font-size: 12px;
    }

    .about-hero-content h1 {
        font-size: 27px;
    }

    .about-hero-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-profile-btn {
        font-size: 11px;
        padding: 11px 15px;
    }

    .about-hero-image {
        height: 240px;
    }

}


    /* =========================================
       STATS
    ========================================= */

    .about-stats-section {
        padding: 0 0 45px;
        background: #f8fbff;
    }

    .about-stats-box {
        background: #0b3d88;
        border-radius: 15px;
        padding: 20px 15px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        box-shadow: 0 8px 25px rgba(0, 38, 100, .12);
    }

    .about-stat-item {
        text-align: center;
        color: #fff;
        padding: 12px 15px;
        border-right: 1px solid rgba(255,255,255,.3);
    }

    .about-stat-item:last-child {
        border-right: 0;
    }

    .about-stat-icon {
        font-size: 30px;
        margin-bottom: 8px;
        color: #fff;
    }

    .about-stat-item h3 {
        font-size: 25px;
        margin: 0 0 3px;
        font-weight: 800;
        color: #fff;
    }

    .about-stat-item p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
        color: #fff;
    }


    /* =========================================
       COMMON HEADING
    ========================================= */

    .about-small-title {
        display: block;
        color: #123e82;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .about-section-title {
        font-size: 29px;
        line-height: 1.25;
        font-weight: 800;
        color: #111;
        margin-bottom: 15px;
    }

    .about-section-title strong {
        color: #123e82;
    }

    .about-section-text {
        color: #444;
        font-size: 14px;
        line-height: 1.75;
    }


    /* =========================================
       JOURNEY
    ========================================= */

    .about-journey-section {
        padding: 15px 0 35px;
        background: #fff;
    }

    .journey-intro {
        padding-right: 30px;
        border-right: 1px solid #ddd;
        height: 100%;
    }

    .journey-intro p {
        font-size: 14px;
        color: var(--body-text-color);
        line-height: 1.75;
        margin: 0;
        font-weight: 500;
    }

    .journey-timeline {
        padding-left: 30px;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .journey-timeline::before {
        content: "";
        position: absolute;
        left: 8%;
        right: 8%;
        top: 29px;
        height: 2px;
        background: #9caecc;
        z-index: 0;
    }

    .journey-item {
        width: 16%;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .journey-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 12px;
        border-radius: 50%;
        background: #0c3d87;
        border: 5px solid #e8eef7;
        outline: 1px solid #b6c6df;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
    }

    .journey-item h4 {
        color: var(--theme-color2);
        font-size: 19px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .journey-item p {
        font-size: 13px;
        color: var(--body-text-color);
        line-height: 1.5;
        margin: 0;
        font-weight: 500;
    }


    /* =========================================
       VALUES
    ========================================= */

    .about-values-section {
        padding: 15px 0 35px;
    }

    .center-heading {
        text-align: center;
        margin-bottom: 20px;
    }

    .center-heading .about-small-title {
        margin-bottom: 4px;
        font-size: 19px;
    }

    .heading-line {
        width: 45px;
        height: 3px;
        background: #169bd5;
        margin: 8px auto 0;
    }

    .values-box {
        border: 1px solid #e2e6ec;
        border-radius: 12px;
        padding: 20px 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,.05);
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    .value-card {
        text-align: center;
        padding: 8px 15px;
        border-right: 1px solid #e1e4e9;
    }

    .value-card:last-child {
        border-right: 0;
    }

    .value-icon {
        color: #0d3e86;
        font-size: 31px;
        margin-bottom: 10px;
    }

    .value-card h4 {
        font-size: 19px;
        color: var(--theme-color2);
        font-weight: 800;
        margin-bottom: 8px;
    }

    .value-card p {
        color: var(--body-text-color);
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
        font-weight: 500;
    }


    /* =========================================
       MANUFACTURING
    ========================================= */

    .manufacturing-section {
        padding: 50px 0 35px;
        background-color: var(--theme-color4);
    }

    .manufacturing-content {
        padding-right: 25px;
    }

    .manufacturing-content p {
        font-size: 14px;
        line-height: 1.7;
        color: var(--body-text-color);
        font-weight: 500;
    }

    .manufacturing-list {
        list-style: none;
        padding: 0;
        margin: 18px 0;
    }

    .manufacturing-list li {
        font-size: 14px;
        color: var(--theme-color2);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .manufacturing-list li i {
        color: var(--theme-color2);
        margin-right: 7px;
    }

    .manufacturing-section .factory-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #0c3d87;
        color: #fff;
        padding: 11px 17px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        border-radius: 4px;
    }

    .factory-btn:hover {
        color: #fff;
        background: #092f69;
    }

    .factory-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .factory-image {
        height: 105px;
        position: relative;
        overflow: hidden;
        border-radius: 7px;
    }

    .factory-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s ease;
    }

    .factory-image:hover img {
        transform: scale(1.06);
    }

    .factory-image span {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 8px;
       background: linear-gradient(#0000007a, rgb(0 0 0));
        color: var(--color-white);
        text-align: center;
        font-size: 11px;
        font-weight: 700;
    }


    /* =========================================
       CERTIFICATIONS
    ========================================= */

    .about-certification-section {
        padding: 40px 0 35px;
    }

    .certification-title {
        text-align: center;
        margin-bottom: 18px;
    }

    .certification-title h2 {
        font-size: 30px;
        color: var(--theme-color2);
        font-weight: 800;
        margin: 0;
        text-transform: capitalize;
    }

    .certification-title .line {
        width: 45px;
        height: 3px;
        background: #159bd6;
        margin: 8px auto;
    }

    .certificate-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 14px;
    }

    .certificate-item {
        height: 105px;
        background: var(--color-white);
        border: 1px solid #e1e4e8;
        border-radius: 9px;
        box-shadow: 0 3px 12px rgba(0,0,0,.05);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .certificate-item img {
        max-width: 100%;
        max-height: 85px;
        object-fit: contain;
    }

    .certificate-description {
        text-align: center;
        font-size: 14px;
        color: var(--body-text-color);
        margin: 15px 0 0;
        font-weight: 500;
    }


    /* =========================================
       BOTTOM INFO CARDS
    ========================================= */

    .about-bottom-section {
        padding: 0 0 50px;
    }

    .bottom-info-card {
        height: 100%;
        background: #f0f5fc;
        border-radius: 10px;
        padding: 22px 20px;
    }

    .bottom-info-card h3 {
        font-size: 24px;
        color: var(--theme-color2);
        font-weight: 800;
        margin-bottom: 12px;
    }

    .bottom-info-card p {
        font-size: 13px;
        line-height: 1.65;
        color: var(--theme-color);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .bottom-info-card ul {
        padding-left: 16px;
        margin: 0 0 15px;
    }

    .bottom-info-card li {
        font-size: 13px;
        margin-bottom: 6px;
        color: var(--theme-color);
        font-weight: 500;
    }

    .bottom-info-btn {
        display: inline-block;
        background: #0b3d87;
        color: var(--color-white);
        padding: 9px 14px;
        font-size: 13px;
        font-weight: 700;
        border-radius: 4px;
        text-decoration: none;
    }

    .bottom-info-btn:hover {
        color: var(--color-white);
        background: #092f69;
    }

    .future-card {
        background: #0b3d87;
        color: var(--color-white);
    }

    .future-card h3,
    .future-card p,
    .future-card li {
        color: #fff;
    }

    .future-contact {
        margin: 12px 0;
    }
      .future-contact a {
    color: inherit;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 13px;
}

  .future-contact a:hover {
    color: #c3cddb;
}

    .future-contact div {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .future-contact i {
        width: 20px;
    }

    .future-card .bottom-info-btn {
        background: #fff;
        color: var(--theme-color2);

    }


    /* =========================================
       RESPONSIVE
    ========================================= */

    @media (max-width: 991px) {

        .about-hero-content {
            padding-right: 0;
            margin-bottom: 25px;
        }

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

        .about-hero-image {
            height: 350px;
            border-radius: 20px;
        }

        .about-stats-box {
            grid-template-columns: repeat(3, 1fr);
        }

        .about-stat-item:nth-child(3) {
            border-right: 0;
        }

        .journey-intro {
            border-right: 0;
            border-bottom: 1px solid #ddd;
            padding: 0 0 25px;
            margin-bottom: 25px;
        }

        .journey-timeline {
            padding-left: 0;
        }

        .values-box {
            grid-template-columns: repeat(3, 1fr);
        }

        .value-card:nth-child(3) {
            border-right: 0;
        }

        .certificate-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .manufacturing-content {
            padding-right: 0;
            margin-bottom: 25px;
        }
    }


    @media (max-width: 767px) {

        .about-hero-section {
            padding-top: 30px;
        }

        .about-hero-content h1 {
            font-size: 32px;
        }

        .about-hero-content p {
            font-size: 14px;
        }

        .about-hero-image {
            height: 280px;
        }

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

        .about-stat-item {
            border-bottom: 1px solid rgba(255,255,255,.25);
        }

        .about-stat-item:nth-child(2),
        .about-stat-item:nth-child(4),
        .about-stat-item:nth-child(6) {
            border-right: 0;
        }

        .journey-timeline {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .journey-timeline::before {
            display: none;
        }

        .journey-item {
            width: 100%;
        }

        .values-box {
            grid-template-columns: repeat(2, 1fr);
        }

        .value-card {
            border-bottom: 1px solid #e1e4e9;
        }

        .value-card:nth-child(even) {
            border-right: 0;
        }

        .factory-gallery {
            grid-template-columns: repeat(2, 1fr);
        }

        .certificate-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .bottom-info-card {
            margin-bottom: 5px;
        }
    }


    @media (max-width: 480px) {

        .about-hero-content h1 {
            font-size: 28px;
        }

        .about-stats-box {
            grid-template-columns: 1fr 1fr;
            padding: 10px;
        }

        .about-stat-item h3 {
            font-size: 21px;
        }

        .about-stat-item p {
            font-size: 11px;
        }

        .values-box {
            grid-template-columns: 1fr;
        }

        .value-card,
        .value-card:nth-child(even) {
            border-right: 0;
        }

        .factory-gallery {
            grid-template-columns: 1fr;
        }

        .certificate-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* end */


    /* product page start */

    /* =========================================================
   PRODUCT CATEGORIES
========================================================= */

.product-categories-section {
    padding: 50px 0 25px;
    background: #ffffff;
}

.product-categories-heading {
    text-align: center;
    margin-bottom: 18px;
}

.product-categories-heading span {
    display: block;
    margin-bottom: 5px;

    color: var(--theme-color2);
    font-size: 11px;
    font-weight: 700;
}

.product-categories-heading h2 {
    margin: 0;
    color: var(--theme-color7);
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}

.product-heading-line {
    width: 46px;
    height: 3px;

    margin: 8px auto 0;

    background: #18aee5;
    border-radius: 10px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.product-category-card {
    height: 100%;
    min-height: 335px;

    padding: 12px 15px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #edf0f5;
    border-radius: 10px;

    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-4px);

    border-color: #dce8f7;

    box-shadow: 0 9px 25px rgba(7, 55, 129, 0.10);
}


/* Icon */

.product-category-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f5fc;

    color: #073781;

    font-size: 24px;

    transition: all 0.3s ease;
}

.product-category-card:hover .product-category-icon {
    background: #073781;
    color: #ffffff;
}


/* Title */

.product-category-card h3 {
    margin: 0 0 7px;
    color: var(--theme-color2);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


/* Description */

.product-category-card p {
    min-height: 55px;
    margin: 0 auto 4px;
    max-width: 220px;
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}


/* Product Image */

.product-category-image {
    width: 100%;
    height: 125px;

    margin-top: auto;
    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.4s ease;
}

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


/* Link */

.product-category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color2);
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.product-category-link i {
    font-size: 10px;
}

.product-category-link:hover {
    color: #0b72d9;
    gap: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .product-category-card {
        min-height: 330px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-categories-section {
        padding: 15px 0 25px;
    }

    .product-categories-heading h2 {
        font-size: 23px;
    }

    .product-category-card {
        min-height: 320px;
    }

}
 /* =========================================
   COMMON
========================================= */

.histopath-brochure-section,
.histopath-features-section,
.histopath-help-section {
    width: 100%;
}

.histopath-brochure-section .container,
.histopath-features-section .container,
.histopath-help-section .container {
    max-width: 1200px;
}


/* =========================================
   BROCHURE BANNER
========================================= */

.histopath-brochure-section {
    padding: 8px 0 10px;
}

.histopath-brochure-box {
    min-height: 88px;
    padding: 12px 30px;
    background: linear-gradient(100deg, #063b88, #00245f);
    border-radius: 7px;

    display: flex;
    align-items: center;
    gap: 22px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}


/* Download Circle */

.brochure-download-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;

    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 24px;
}


/* Brochure Content */

.brochure-content {
    flex: 1;
}

.brochure-content h3 {
    margin: 0 0 5px;

    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.brochure-content p {
    margin: 0;

    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}


/* Brochure Button */

.brochure-btn {
    height: 40px;
    padding: 0 22px;

    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.brochure-btn i {
    font-size: 13px;
}

.brochure-btn:hover {
    background: #ffffff;
    color: #063b88;
}


/* =========================================
   FEATURES
========================================= */

.histopath-features-section {
    padding: 10px 0 15px;
}

.histopath-features-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    background: #f8faff;
    border-radius: 7px;

    overflow: hidden;
}


/* Feature */

.histopath-feature {
    min-height: 125px;
    padding: 17px 12px;

    text-align: center;

    border-right: 1px solid #e2e7ef;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.histopath-feature:last-child {
    border-right: none;
}


/* Feature Icon */

.feature-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #5f82bb;

    font-size: 23px;
}


/* Feature Heading */

.histopath-feature h4 {
    margin: 0 0 6px;
    color: var(--theme-color2);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}


/* Feature Paragraph */

.histopath-feature p {
    max-width: 145px;

    margin: 0;

    color: #6f7784;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}


/* =========================================
   HELP SECTION
========================================= */

.histopath-help-section {
    padding: 5px 0 20px;
}

.histopath-help-box {
    min-height: 160px;

    background: #f8faff;
    border-radius: 7px;

    display: grid;
    grid-template-columns: 1.35fr 1fr 0.75fr;

    overflow: hidden;
}


/* =========================================
   HELP CONTENT
========================================= */

.help-content {
    padding: 25px 28px;
}

.help-content h2 {
    margin: 0 0 10px;
    color: var(--theme-color2);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.help-content p {
    max-width: 340px;
    margin: 0 0 12px;
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}


/* Help List */

.help-list {
    padding: 0;
    margin: 0;

    list-style: none;
}

.help-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 500;
}

.help-list li:last-child {
    margin-bottom: 0;
}

.help-list i {
    color: #174b91;
    font-size: 12px;
}


/* =========================================
   CTA
========================================= */

.help-cta {
    padding: 25px 20px;

    border-left: 1px solid #e0e6ef;
    border-right: 1px solid #e0e6ef;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Request Quote */

.request-quote-btn {
    min-width: 138px;
    height: 38px;
    padding: 0 20px;

    border-radius: 4px;

    background: #0750ad;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.request-quote-btn:hover {
    background: #043a82;
    color: #ffffff;
}


/* OR CALL */

.or-call {
    margin: 15px 0 7px;

    color: var(--body-text-color);

    font-size: 13px;
    font-weight: 600;
}


/* Phone */

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #153f78;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
}

.phone-number i {
    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #0b438e;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
}

.phone-number:hover {
    color: #0750ad;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.help-image {
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.help-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .histopath-features-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .histopath-feature:nth-child(3) {
        border-right: none;
    }

    .histopath-feature:nth-child(-n+3) {
        border-bottom: 1px solid #e2e7ef;
    }

    .histopath-help-box {
        grid-template-columns: 1fr 1fr;
    }

    .help-image {
        display: none;
    }

}


@media (max-width: 767px) {

    .histopath-brochure-box {
        padding: 18px;
        flex-wrap: wrap;
    }

    .brochure-download-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .brochure-content {
        width: calc(100% - 75px);
    }

    .brochure-content h3 {
        font-size: 15px;
    }

    .desktop-break {
        display: none;
    }

    .brochure-btn {
        width: 100%;
        margin-top: 5px;
    }


    .histopath-features-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .histopath-feature {
        border-right: 1px solid #e2e7ef !important;
        border-bottom: 1px solid #e2e7ef;
    }

    .histopath-feature:nth-child(2n) {
        border-right: none !important;
    }

    .histopath-feature:nth-last-child(-n+2) {
        border-bottom: none;
    }


    .histopath-help-box {
        grid-template-columns: 1fr;
    }

    .help-content {
        padding: 25px 20px;
    }

    .help-cta {
        border-left: none;
        border-right: none;
        border-top: 1px solid #e0e6ef;
        padding: 25px 20px;
    }

}


@media (max-width: 480px) {

    .histopath-brochure-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .histopath-features-section,
    .histopath-help-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .histopath-features-box {
        grid-template-columns: 1fr;
    }

    .histopath-feature {
        border-right: none !important;
        border-bottom: 1px solid #e2e7ef !important;
    }

    .histopath-feature:last-child {
        border-bottom: none !important;
    }

}
/* =========================================================
   FEATURED PRODUCTS SECTION
========================================================= */

.featured-products-section {
    padding: 45px 0 40px;
    background: #eef2ffba;
}


/* Heading */

.featured-products-heading {
    text-align: center;
    margin-bottom: 20px;
}

.featured-products-heading > span {
    display: block;

    margin-bottom: 5px;

    color: var(--theme-color2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.featured-products-heading h2 {
    margin: 0;
    color: var(--theme-color7);
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}

.featured-heading-line {
    width: 45px;
    height: 3px;

    margin: 8px auto 0;

    background: #18aee5;
    border-radius: 10px;
}


/* Featured Card */

.featured-product-card {
    width: 100%;
    min-height: 145px;

    padding: 12px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid #edf0f5;
    border-radius: 9px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}

.featured-product-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 8px 22px rgba(8, 48, 110, 0.12);

    border-color: #d8e5f7;
}


/* Image */

.featured-product-image {
    width: 43%;
    height: 120px;

    flex: 0 0 43%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.4s ease;
}

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


/* Content */

.featured-product-content {
    width: 57%;
    padding-left: 8px;
}

.featured-product-content h3 {
    margin: 0 0 8px;
    color: var(--theme-color2);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.featured-product-content p {
    margin: 0 0 10px;

    color: var(--body-text-color);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.45;
}


/* Button */

.featured-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    background: var(--theme-color2);
    color: var(--color-white);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-product-btn:hover {
    background: #0b5fd4;
    color: var(--color-white);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.product-bottom-cta-section {
    padding: 0 0 50px;
    background: #eef2ffba;
}

.product-bottom-cta {
    min-height: 105px;

    padding: 20px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #073781;

    border-radius: 9px;
    overflow: hidden;

    position: relative;
}


/* Subtle Background Effect */

.product-bottom-cta::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
}


/* CTA Content */

.product-cta-content {
    position: relative;
    z-index: 2;
}

.product-cta-content h2 {
    margin: 0 0 6px;
    color: var(--color-white);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.product-cta-content p {
    margin: 0;
    color: var(--color-white);
     font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}


/* Buttons */

.product-cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;

    flex-shrink: 0;

    position: relative;
    z-index: 2;
}

.product-cta-quote,
.product-cta-contact {
    min-width: 175px;
    height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-cta-quote {
    background: var(--theme-color);
    color: var(--color-white);
    border: 1px solid var(--theme-color);
}

.product-cta-quote:hover {
    background: var(--color-white);
    color: #073781;
    border-color: var(--color-white);
}

.product-cta-contact {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.product-cta-contact:hover {
    background: #ffffff;
    color: #073781;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .product-benefits-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-benefit-item {
        border-right: none;
        border-bottom: 1px solid #d9e0eb;
        padding: 10px 15px;
    }

    .product-benefit-item:nth-child(3),
    .product-benefit-item:nth-child(4) {
        border-bottom: none;
    }

    .product-bottom-cta {
        padding: 25px;
    }

    .product-cta-content h2 {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .product-benefits-section {
        padding: 15px 0 25px;
    }

    .product-benefits-box {
        grid-template-columns: 1fr;
        padding: 10px 15px;
    }

    .product-benefit-item {
        min-height: 65px;
        border-bottom: 1px solid #d9e0eb !important;
    }

    .product-benefit-item:last-child {
        border-bottom: none !important;
    }


    .featured-products-section {
        padding-bottom: 25px;
    }

    .featured-products-heading h2 {
        font-size: 23px;
    }

    .featured-product-card {
        min-height: 150px;
    }


    .product-bottom-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 25px 20px;

        gap: 20px;
    }

    .product-cta-content h2 {
        font-size: 20px;
    }

    .product-cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .product-cta-quote,
    .product-cta-contact {
        width: 100%;
    }

}

/* products page end */
