/* 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: 70px 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-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%;
}

.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;
    }

}

/*  */



/*==============================
Project Amenities
==============================*/

.amenities-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #430007, #250003);
}

.amenities-section .amenities-title {
    text-align: center;
    margin-bottom: 50px;
}

.amenities-section .amenities-title h2 {
    font-size: 38px;
    color: var(--theme-color);
    margin-bottom: 7px;
    font-weight: 800;
}

.amenities-section .amenities-title p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    max-width: 755px;
    margin: 0 auto;
    text-align: center;
}


.amenities-section .amenities-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 5px 0px 10px 0px;
}

.amenities-section .amenities-divider span {
    width: 90px;
    height: 1px;
    background: #9f7724;
}

.amenities-section .amenities-divider i {
    color: #d4af37;
    font-size: 13px;
}

.amenities-section .amenities-card {
    border: 1px solid rgba(212, 175, 55, .5);
    border-radius: 8px;
    background: rgba(255, 255, 255, .02);
    text-align: center;
    padding: 35px 15px;
    transition: .4s;
    height: 100%;
}

.amenities-section .amenities-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    background: rgba(212, 175, 55, .08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.amenities-section .amenities-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 20px;
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.amenities-section .amenities-icon i {
    font-size: 40px;
    color: #d4af37;
}

.amenities-section .amenities-card:hover .amenities-icon {
    background: #d4af37;
}

.amenities-section .amenities-card:hover .amenities-icon i {
    color: var(--theme-color2);
}

.amenities-section .amenities-card h4 {
    color: var(--color-white);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    font-family: "Cinzel", serif;
    text-transform: capitalize;
}

.amenities-section .amenities-card h4 span {
    display: block;
}

/*  */

/*==============================
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 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:15px;
    line-height:1.8;
    text-decoration:none;
    word-break:break-word;
    font-weight: 600;
}



.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 */


/* 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 */
