@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    /* --primary_clr: #0f34c3; */
    --primary_clr: #173b70;
    /* --secondary_clr: #a60b08; */
    /* --secondary_clr: #ca252b; */
    --secondary_clr: #c23235;
    --primary_Light_clr: #8095e9;
    --secondary_Light_clr: #ef8684;
    --white_clr: #fff;
    --black_clr: #000;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    background: #fff;
    width: .6rem;
    height: .3rem;
}

/* Custom scrollbar thumb (draggable part) */
::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to bottom, var(--primary_clr), var(--secondary_clr));
    border-radius: 10px;
    /* Smoother edges */
}

*,
* body {
    margin: 0;
    padding: 0;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Roboto";
    scroll-behavior: smooth;
}

.AcBtns#scrollToTop.show {
    opacity: 1;
    pointer-events: all;
}

.AcBtns#scrollToTop {
    bottom: 4rem;
    opacity: 0;
    pointer-events: none;
}

.AcBtns#callToAction i {
    transition: transform .6s ease-in-out;
}

.AcBtns#callToAction:hover i {
    transform: rotate(360deg);
}

.AcBtns {
    border-radius: 50%;
    padding: 6px 10px;
    background: var(--secondary_clr);
    transition: all .5s ease-in-out;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    cursor: pointer;
    color: var(--white_clr);
    z-index: 1;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.75);
}

.AcBtns:hover {
    background: var(--primary_clr);
    transition: all .5s ease-in-out;
}

.siteHeader {
    background: var(--white_clr);
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 10;
}

.siteHeader .siteHeaderInner {
    padding: 5px;
    display: flex;
    align-items: center;
    width: 100%;
}

.siteHeader .siteHeaderInner ul {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-inline: 2rem;
    list-style: none;
}

.siteHeader .siteHeaderInner ul li {
    width: 100%;
    padding: 6px 10px;
    text-align: center;
}

.siteHeader .siteHeaderInner ul li a {
    color: var(--primary_clr);
    text-decoration: none;
    transition: all .6s ease-in-out;
    font-weight: 600;
    text-wrap: nowrap;
}

.siteHeader .siteHeaderInner ul li:not(.li_dropdown) a:hover {
    color: var(--secondary_clr);
    transition: all .4s ease-in-out;
}

.siteHeader .headContBtn {
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-inline: 1rem;
    background: var(--secondary_clr);
    color: var(--white_clr);
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.siteHeader .headContBtn:hover {
    background: var(--secondary_Light_clr);
    transition: all .4s ease-in-out;
}

.siteHeader img {
    height: 60px;
    max-width: 100%;
}

/* Card 1 .animated_carousel_card*/
.ani_carousel_card .ani_img {
    opacity: 0;
    animation: op_1to0 2s ease;
}

.ani_carousel_card .ani_img:after {
    z-index: 1;
    background: #00000060;
    position: absolute;
}

.ani_carousel_card.active .ani_img {
    opacity: 1;
    animation: op_0to1 4s ease;
}

.ani_carousel_card .ani_txt1 {
    width: 0;
    overflow: hidden;
    text-wrap: nowrap;
    animation: wid_500to0 1s ease;
}

.ani_carousel_card.active .ani_txt1 {
    width: 700px;
    animation: wid_0to500 1s ease;
}

/* Card2 */

.ani_carousel_card .ani_txt2,
.ani_carousel_card .ani_txt3,
.ani_carousel_card .ani_txt4 {
    margin-left: 2%;
    transform: translateX(-100%);
    overflow: hidden;
    text-wrap: nowrap;
    animation: trans_m100 1s ease;
}

.ani_carousel_card.active .ani_txt2,
.ani_carousel_card.active .ani_txt3,
.ani_carousel_card.active .ani_txt4 {
    transform: translateX(0%);
    animation: trans_0 1s ease;
}

/* Animations Ends */

.ani_carousel {
    width: 100%;
    height: calc(100vh - 138px);
    max-height: 30rem;
}

.ani_carousel_inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: lightgray;
}

.ani_carousel_card {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    display: none;
    padding-inline: 9%;
}

.ani_carousel_card .shade {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000090;
    z-index: 1;
    left: 0;
    top: 0;
}

.ani_carousel_card.active {
    display: flex;
}

.ani_carousel_card .ani_txt2 {
    margin-left: 2%;
}

.ani_carousel_card h1,
.ani_carousel_card h3 {
    color: #fff;
    margin: 0;
    text-shadow: 3px 2px rgb(0, 0, 0, 0.3);
    line-height: 54px;
    font-weight: 600;
    text-shadow: 1px 1px 10px #000;
}

.ani_carousel_card h1 {
    font-size: 3rem;
}

.ani_carousel_card h5 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
    text-shadow: 1px 1px 10px #000;
}

.ani_carousel_card .ani_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    text-align: center;
    background: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.ani_carousel_card .ani_img img {
    width: 100%;
    height: 100%;
    opacity: .9;
    transition: opacity 4s ease-in-out;
}

.ani_carousel_card.active .ani_img img {
    animation: pulse 52s ease-in-out infinite;
}

.ani_carousel_card .ani_txt {
    z-index: 1;
    position: relative;
}

.ani_carousel_card .ani_txt1 {
    text-align: left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Animated Carousel*/

@keyframes op_0to1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes op_1to0 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes wid_500to0 {
    0% {
        width: 700px;
    }

    100% {
        width: 0;
    }
}

@keyframes wid_0to500 {
    0% {
        width: 0;
    }

    100% {
        width: 700px;
    }
}

@keyframes trans_m100 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes trans_0 {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Card 1 .animated_carousel_card End*/
.secDivider {
    width: 100%;
    height: 7px;
    background: var(--secondary_clr);
}

.btn_secondary {
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    background: var(--secondary_clr);
    border: 0;
    color: var(--white_clr);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: button;
}

.btn_secondary:hover {
    background: var(--secondary_Light_clr);
}

.btn_primary {
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    background: var(--primary_clr);
    border: 0;
    color: var(--white_clr);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: button;
}

.btn_primary:hover {
    background: var(--secondary_Light_clr);
}

/* .sec2 {
    padding: 1rem 5rem;
} */

.commonDiv {
    padding: 2rem 5rem;
}

.grid1_1 {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.aboutUs .abtImg img {
    max-width: 100%;
    width: 80%;
    border-radius: 20px;
}

h4.siteHead {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary_clr);
}

h4.siteHead span {
    color: var(--secondary_clr);
}

.whiteHead {
    color: var(--white_clr) !important;
}

.commonDiv p {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.grid1_2 {
    display: grid;
    grid-template-columns: 33% 65%;
    gap: 2%;
}

.grid1_1_1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.IndustriesWeServe .industryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}

.IndustriesWeServe .industryGrid .indisSec {
    padding: 1rem 0.5rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
    background: var(--white_clr);
    transition: all .4s ease-in-out;
    border-radius: 15px;
    cursor: pointer;
    height: 6rem;
}

.IndustriesWeServe .industryGrid .indisSec:hover {
    /* background: var(--secondary_clr); */
    background: #ca252bcf;
    height: 18rem;
    transition: all .4s ease-in-out;
}

.IndustriesWeServe .industryGrid .indisSec:hover i,
.IndustriesWeServe .industryGrid .indisSec:hover h5 {
    color: var(--white_clr);
}

.IndustriesWeServe .industryGrid .indisSec i {
    color: var(--secondary_clr);
    font-size: 1rem;
}

.IndustriesWeServe .industryGrid .indisSec h5 {
    color: var(--primary_clr);
    font-size: 1rem;
    margin-top: .6rem;
}

.IndustriesWeServe .industryGrid .indisSec p {
    color: var(--black_clr);
    font-size: .8rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
}

.IndustriesWeServe .industryGrid .indisSec:hover p {
    color: var(--white_clr);
    opacity: 1;
    transition: all .4s ease-in-out;
}

.servicesSecOuter {
    position: relative;
    z-index: 1;
    margin-top: -6rem;
}

.servicesSec {
    background: var(--white_clr);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    color: var(--primary_clr);
}

.servicesSec .service:not(:last-child) {
    border-right: 2px solid var(--primary_clr);
}

.servicesSec .service h5 {
    color: var(--secondary_clr);
}

.prodOuter {
    /* Ensure background layers display correctly */
    background-image: linear-gradient(to right, #0a31ca90, #0a31ca90), url(../img/image/prodBg.jpeg);
    background-size: cover;
    /* Makes the image cover the container */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    padding: 2rem 5rem;
}

.ourProducts {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* padding: 6px; */
}

.ourProducts .prodIcon {
    color: var(--white_clr);
    font-size: 18px;
    cursor: pointer;
}

.ourProducts .productsGrid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow: auto;
    gap: 1rem;
    padding: 6px;
}

.ourProducts .productsGrid .ourProduct {
    width: 20%;
    /* min-width: 18.8%; */
    min-width: 212.5px;
    background: var(--white_clr);
    border-radius: 15px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 6px;
    min-height: 21rem;
}

.ourProducts .productsGrid .ourProduct img {
    width: 120px;
    border-radius: 50%;
    aspect-ratio: 1;
    max-width: 100%;
    border: 5px solid var(--primary_Light_clr);
}

.ourProducts .productsGrid .ourProduct h4 {
    color: var(--primary_clr);
    font-size: 20px;
    text-align: center;
}

.FactsndFigures .factsLeft {
    background-image: linear-gradient(to right, #00000090, #00000090), url(../img/image/pic3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.FactsndFigures .factsLeft h4.siteHead,
.FactsndFigures .factsLeft h4.siteHead span {
    color: var(--white_clr);
    line-height: 56px;
}

.FactsndFigures .factsRight .factsRightIn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.FactsndFigures .factsRight .factsRightIn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.FactsndFigures .factsRight .factsRightIn .factsCard {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 1rem;
    border: 1px solid var(--primary_clr);
    transition: all .3s ease-in-out;
}

.FactsndFigures .factsRight .factsRightIn .factsCard h4.siteHead,
.FactsndFigures .factsRight .factsRightIn .factsCard h4.siteHead span {
    color: var(--white_clr);
    transition: all .3s ease-in-out;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:hover {
    background: var(--primary_clr);
    transition: all .3s ease-in-out;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:hover h1,
.FactsndFigures .factsRight .factsRightIn .factsCard:hover h4 {
    color: var(--white_clr);
    transition: all .3s ease-in-out;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(1),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(2),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(3) {
    border-top: 0;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(4),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(5),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(6) {
    border-bottom: 0;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(1),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(4) {
    border-left: 0;
}

.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(3),
.FactsndFigures .factsRight .factsRightIn .factsCard:nth-child(6) {
    border-right: 0;
}

.FactsndFigures .factsRight .factsRightIn .factsCard h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary_clr);
}

.FactsndFigures .factsRight .factsRightIn .factsCard h4 {
    font-size: 1.2rem;
    color: var(--primary_clr);
    text-align: center;
}

/* Testimonials Section */
.successStoriesSec.illOptions {
    background: lightgray !important;
}

.successStoriesSec {
    background: linear-gradient(to right, #080707e6, #080707e6),
        url(../img/image/pic2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 15rem;
    transition: all .6s ease-in-out;
    display: flex;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    padding-left: .5rem;
    padding-right: .5rem;
}

.section-title h2 {
    color: var(--primary_clr);
}

.successStories img {
    width: 100px;
    border-radius: 50%;
    aspect-ratio: 1;
}

.successStories p,
.successStories h4,
.successStories h6 {
    color: #fff !important;
}

.successStoriesSec .successIcon i {
    color: #fff;
    font-size: 2rem;
    z-index: 1;
    cursor: pointer;
    position: relative;
}

.successStories {
    display: flex;
    z-index: 0;
    padding: 1rem;
}

.successStoriesSec .successStory {
    min-width: 0%;
    opacity: 0;
    height: 0;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out;
}

.successStoriesSec .successStory.activeRight {
    animation: activeStoryRight 0.4s ease-in-out forwards;
    opacity: 1;
    transform: translateX(0%);
    min-width: 100%;
    height: auto;
}

.successStoriesSec .successStory.activeLeft {
    animation: activeStoryLeft 0.4s ease-in-out forwards;
    opacity: 1;
    transform: translateX(0%);
    min-width: 100%;
    height: auto;
}

@keyframes activeStoryRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes activeStoryLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

/* Testimonials Section */
.partnersGrid {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.75);
    position: relative;
    padding: 0rem 2rem;
    border-radius: 10px;
}

.partnersGrid img {
    border-radius: 10px;
    margin-left: 1rem;
    transition: all .6s ease-in-out;
    max-height: 90px;
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    padding: 5px;
}

.webPatti {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary_clr);
    padding: 0rem 5rem;
}

.webPatti .webPattiLft {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.webPatti img.img2 {
    width: 130px;
    height: 60px;
}

.webPatti img {
    height: 70px;
    background: #fff;
}

.webPatti img.img1 {
    padding: 0 1rem;
}

.webPatti h5 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white_clr);
}

/* Contact Page Css */
.cont_grid_outer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cont_grid_outer .cont_grid {
    background: var(--white_clr);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.cont_grid_outer .cont_grid i {
    color: var(--secondary_clr);
    font-size: 2rem;
}

.cont_grid_outer .cont_grid h4 {
    color: var(--primary_clr);
}

.cont_grid_outer .cont_grid h3 {
    color: var(--secondary_clr);
    font-size: 1rem;
}

.industries_main_div .service_cards {
    align-items: start;
}

.cont_grid_outer2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.cont_grid_outer2 .cont_grid2 {
    background: var(--white_clr);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.cont_grid_outer2 .cont_grid2 h2 {
    text-align: center;
    color: var(--secondary_clr);
}

.abt_sec1 {
    padding: 3rem 10%;
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.abt_sec1 h3 {
    font-size: 3.5rem;
    color: var(--secondary_clr);
    font-weight: 700;
}

.abt_sec2 {
    padding: 2rem 5rem;
    color: var(--black_clr);
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 0rem;
    text-align: justify;
}

.d_flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Page Css */
/* About Page CSS */
.sec_outer {
    position: relative;
    padding-inline: 10%;
}

.abt_sec2 h1 {
    display: inline;
    color: var(--primary_clr);
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 1.3rem;
}

.missionSec .abthead_h2 {
    color: var(--white_clr);
    font-size: 1.5rem;
}

.abthead_h2 {
    font-size: 1.8rem;
}

.abtsec2 {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    padding: 1rem 5rem;
}

.abtsec2 .abtsec2_left img {
    width: 500px;
    border-radius: 10px;
    max-width: 100%;
    text-align: center;
}

.abtsec2 .abtsec2_right p {
    color: var(--black_clr);
    font-size: 15px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 0rem;
    text-align: justify;
}

.abtsec2.img_rght .abtsec2_left {
    text-align: right;
}

.missionSec.abtsec2 {
    gap: 2rem;
    align-items: unset;
}

.missionSec.abtsec2 .abtsec2_in {
    /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/image/abt1.jpg); */
    background-image: linear-gradient(to right, #3449a3e3, #3449a3e3), url(../img/image/abt1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem 2rem;
    border-radius: 20px;
}

.missionSec.abtsec2 .abtsec2_in.abtsec2_in2 {
    background-image: linear-gradient(to right, #3449a3e3, #3449a3e3), url(../img/image/header3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.missionSec.abtsec2 .abtsec2_in1 ul {
    padding-left: 1.3rem;
    color: #fff;
}

.missionSec.abtsec2 p {
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: justify;
}

.commonTable {
    width: 100%;
    overflow: auto;
    padding-bottom: 1rem;

}

.commonTable table {
    width: 100%;
}

.commonTable table thead th,
.commonTable table td {
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--primary_clr);
    border-collapse: collapse;
    border-spacing: 0;
    padding: 6px;
}

.commonTable table thead th {
    background: var(--primary_clr);
    color: var(--white_clr);
    font-weight: 600;
}

.commonTable table {
    width: 100%;
}

.commonTable table {
    width: 100%;
}

.commonTable table {
    width: 100%;
}

.ProcessInspection {
    display: grid;
    grid-template-columns: 55% 44%;
    gap: 1%;
}

.ProcessInspection p {
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 10px;
}

.innerProcess p {
    margin-bottom: 0;
}

.ProcessInspectionLft {
    border-radius: 15px;
}

.ProcessInspectionLft img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    opacity: 0.8;
}

.ProcessInspectionRght {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ProcessInspectionRght .proccard:not(:first-child) {
    margin-top: 1rem;
}

.ProcessInspectionRght .proccard {
    display: grid;
    grid-template-columns: 80% 20%;
    border-left: 4px solid var(--secondary_clr);
    border-radius: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}

.ProcessInspectionRght .proccard ul {
    padding-left: 1.3rem;
}

.ProcessInspectionRght .proccard .proccardL {
    padding: 0.4rem 1rem;
}

.ProcessInspectionRght .proccard .proccardR {
    background: var(--secondary_clr);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 20px 20px 0;
}

.ProcessInspectionRght .proccard .proccardR i {
    font-size: 2rem;
    color: #fff;
}

.ProcessInspectionRght .proccard h3 {
    font-size: 1.3rem;
    color: var(--primary_clr);
    margin-bottom: 0;
}

/* About Page CSS */
/* Gallery Page CSS */
.galleryHead {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.galleryHead .galleryBtn.active {
    background: var(--secondary_clr);
}

.galleryHead .galleryBtn {
    background: gray;
    color: var(--white_clr);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    transition: all .4s ease-in-out;
    padding: 4px 10px;
    cursor: pointer;
}

.galleryHead .galleryBtn:not(.active):hover {
    background: var(--secondary_Light_clr);
    transition: all .4s ease-in-out;
}

.galleryBody {
    padding: 0;
    text-align: center;
    overflow: hidden;
    height: 0;
    transition: all .4s ease-in-out;
    border-radius: 15px;
}

.galleryBody .galleryBodyIn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.galleryBody.active {
    padding: 1rem;
    height: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
    transition: all .4s ease-in-out;
}

.galleryBody img {
    height: 12rem;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    transition: all .6s ease-in-out;
}

.galleryBody.certificationBody img {
    height: auto;
    max-height: 32rem;
}

.galleryBody img:hover {
    transform: scale(1.05);
    transition: all .6s ease-in-out;
}

/* Gallery Page CSS */
/* Header dropdown Sec CSS*/
.li_dropdown .dropdownSec {
    background: #7893ff;
    position: absolute;
    top: 100%;
    left: 0;
    /* border-radius: 15px; */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    width: 302px;
    text-align: left;
    max-height: 30rem;
    overflow: auto;
    transform: translateY(-100%);
    opacity: 0;
    transition: all .6s ease-in-out;
    z-index: -1;
}

.li_dropdown .dropdownSec.dropdownSecLg {
    width: 680px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.li_dropdown:hover .dropdownSec {
    transform: translateY(0%);
    opacity: 1;
    transition: all .6s ease-in-out;
    z-index: 1;
}

.li_dropdown .dropdownSec a {
    display: block;
    padding: 6px 10px;
    color: var(--primary_clr);
    background: var(--white_clr);
    transition: all .6s ease-in-out;
    background: #7893ff;
    color: #fff !important;
}

/* .li_dropdown .dropdownSec:not(.dropdownSecLg) a:first-child {
    border-radius: 15px 15px 0 0;
}

.li_dropdown .dropdownSec:not(.dropdownSecLg) a:last-child {
    border-radius: 0 0 15px 15px;
} */

.li_dropdown .dropdownSec a:hover {
    background: var(--secondary_clr);
    color: var(--white_clr);
    transition: all .6s ease-in-out;
}

/* Header dropdown Sec CSS*/
/* Engineering Consulting CSS */
.innerProcess.ProcessInspectionRght .proccard {
    grid-template-columns: 66% 34%;
}

.innerProcess.ProcessInspectionRght .proccard:not(:first-child) {
    margin-top: 2rem;
}

.innerProcess.ProcessInspectionRght .proccard:nth-child(even) {
    grid-template-columns: 34% 66%;
    border-left: 0;
    border-right: 4px solid var(--secondary_clr);
}

.innerProcess.ProcessInspectionRght .proccard:nth-child(even) .proccardL {
    grid-column: 2;
    grid-row: 1;
}

.innerProcess.ProcessInspectionRght .proccard:nth-child(even) .proccardR {
    grid-column: 1;
    grid-row: 1;
    border-radius: 20px 0 0 20px;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard .proccardR i {
    display: none;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(1) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/Process.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(2) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/Mechanical.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(3) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/Civil.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(4) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/Electrical.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(5) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/Instrumentation.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(6) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/piping.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(7) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/DistillationColumn1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(8) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/rotarydryers1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(9) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/piping1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.innerProcess.ProcessInspectionRght.bgImg .proccard:nth-child(10) .proccardR {
    background: linear-gradient(to right, #00000090, #00000090), url(../img/image/processEquipment.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Engineering Consulting CSS */
/* Storage Tanks CSS */
.product_hvr_Grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product_hvr_Grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product_hvr_Grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product_hvr_Card {
    width: 100%;
    border-radius: 15px;
    height: 27rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.75);
}

.product_hvr_Card img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.product_hvr_Card .product_Hvr_Div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000090;
    top: 0;
    left: 0;
    padding: 1rem;
    border-radius: 15px;
    transform: translateY(82%);
    transition: all .5s ease-in-out;
    overflow: auto;
}

.product_hvr_Card:hover .product_Hvr_Div {
    transform: translateY(0%);
    transition: all .5s ease-in-out;
}

.product_hvr_Card:hover .product_Hvr_Div h4.iconh4 {
    height: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.product_hvr_Card .product_Hvr_Div h4 {
    color: var(--white_clr);
    font-weight: 700;
    text-align: center;
    font-size: 1.3rem;
}

.product_hvr_Card .product_Hvr_Div ul {
    color: var(--white_clr);
    padding-left: 1rem;
}

.product_hvr_Card .product_Hvr_Div ul li p,
.product_hvr_Card p {
    color: var(--white_clr);
    margin-bottom: 0;
    font-size: 15px;
}

.commonUl {
    color: var(--black_clr);
    padding-left: 1rem;
}

.commonUl li p {
    color: var(--black_clr);
    margin-bottom: 0;
    font-size: 15px;
}

.align_items_center {
    align-items: center;
}

/* Storage Tanks CSS */
#displayImg{
    width: 100%;
}
#certModal .modal-body{
    max-height: 27rem;
    overflow: auto;
}
.contact_main_div .webPattiLft a.btn_primary{
    display: none;
}
/* All Header Images */
.abt_sec1 {
    background: url(../img/image/prodBg.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contact_main_div .abt_sec1 {
    background: url(../img/image/header1.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service1_div .abt_sec1 {
    background: url(../img/image/services/Decanters.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service2_div .abt_sec1 {
    background: url(../img/image/services/ducting3.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service3_div .abt_sec1 {
    background: url(../img/image/services/img4.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.service4_div .abt_sec1 {
    background: url(../img/image/services/agro1.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.certifications_div .abt_sec1 {
    background: url(../img/image/certbg.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.gallery_div .abt_sec1 {
    background: url(../img/image/services/pic3.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product1_div .abt_sec1 {
    background: url(../img/image/products/ChemicalReactor.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product2_div .abt_sec1 {
    background: url(../img/image/products/GMPReactor.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product3_div .abt_sec1 {
    background: url(../img/image/products/JacketedReactionVessels.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product4_div .abt_sec1 {
    background: url(../img/image/products/centrifuges.jfif), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product5_div .abt_sec1 {
    background: url(../img/image/products/Storagetanks.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product6_div .abt_sec1 {
    background: url(../img/image/products/Mixingtank.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product7_div .abt_sec1 {
    background: url(../img/image/products/airreceivertank.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product8_div .abt_sec1 {
    background: url(../img/image/products/Condensors.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product9_div .abt_sec1 {
    background: url(../img/image/products/Distillationcolumn.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product10_div .abt_sec1 {
    background: url(../img/image/products/BoilerChimney.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product11_div .abt_sec1 {
    background: url(../img/image/products/Decanters.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product12_div .abt_sec1 {
    background: url(../img/image/products/ResinPlant.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product13_div .abt_sec1 {
    background: url(../img/image/products/Leadrecoveryplant.jpeg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.product14_div .abt_sec1 {
    background: url(../img/image/products/PressureVessels.jpg), linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* All Header Images */

.headToggleBtn {
    display: none;
}

.headCloseBtn {
    display: none;
}

@media only screen and (max-width:498.98px) {
    .IndustriesWeServe .industryGrid {
        grid-template-columns: 1fr !important;
    }
    .FactsndFigures .factsRight .factsRightIn .factsCard{
        padding: 5px 5px;
    }
    .ani_carousel_card .ani_txt1{
        text-wrap: wrap;
    }
    .chatbot_main_div {
        left: 0 !important;
    }
}

@media only screen and (max-width:767.98px) {
    .ani_carousel{
        max-height: 15rem;
    }
    .ani_carousel_card {
        padding-inline: 2%;
    }

    .ani_carousel_card h1 {
        font-size: 1.7rem;
    }

    .ani_carousel_card h5 {
        font-size: .8rem;
    }

    .commonDiv,
    .site_footer,
    .abt_sec2,
    .abtsec2,
    .missionSec.abtsec2 .abtsec2_in {
        padding: 1rem 1rem !important;
    }

    .grid1_1_1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .servicesSec .service:not(:last-child) {
        border-bottom: 2px solid var(--primary_clr);
        border-right: 0;
    }

    .servicesSec .service:not(:first-child) {
        padding-top: 1rem;
    }

    .grid1_1,
    .grid1_2 {
        grid-template-columns: 100%;
    }

    .aboutUs .abtImg img {
        width: 100%;
    }

    .abtTxt,
    .FactsndFigures .factsRight .factsRightIn {
        margin-top: 1rem;
    }

    .IndustriesWeServe .industryGrid {
        padding: 0rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .FactsndFigures .factsRight .factsRightIn .factsCard h1 {
        font-size: 1.1rem;
    }

    .FactsndFigures .factsRight .factsRightIn .factsCard h4 {
        font-size: .8rem;
    }    

    .IndustriesWeServe p.text-center {
        text-align: justify !important;
    }
    .IndustriesWeServe h4.text-center {
        text-align: left !important;
    }

    .li_dropdown .dropdownSec.dropdownSecLg {
        width: 300px;
        grid-template-columns: 1fr;
        max-height: 27rem;
    }

    .site_footer_innerr,
    .ProcessInspection {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .dwnldBrochureBtn {
        display: none;
    }

    .site_footer_innerr .futInfo {
        padding-right: 0rem !important;
    }

    .successStoriesSec {
        padding-left: 0;
        padding-right: 0;
    }

    .successStoriesSec .successStories {
        padding: 0;
        width: calc(100% - 70px);
    }

    .webPatti {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1rem;
    }

    .webPatti .webPattiLft {
        display: grid;
    }

    .webPatti img.img1 {
        margin: 0 auto;
    }

    .webPatti img.img2 {
        width: 225px;
        height: 80px;
    }

    .abtsec2 {
        grid-template-columns: 1fr !important;
    }

    .certificationBody.galleryBody .galleryBodyIn {
        grid-template-columns: 1fr;
    }

    .certificationBody.galleryBody .galleryBodyIn img {
        width: 100%;
    }

    .galleryBody .galleryBodyIn {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .galleryBody .galleryBodyIn img {
        width: 100%;
    }

    
}
@media only screen and (max-width:1098.98px) {
    .siteHeader .siteHeaderInner ul .mblOnly{
        display: block;
    }
    .siteHeader .siteHeaderInner ul {
        position: absolute;
        background: #fff;
        flex-direction: column;
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        left: 0;
        padding-inline: 0;
        opacity: 0;
        transform: translateX(-100%);
        transition: all .6s ease-in-out;
    }

    .siteHeader .siteHeaderInner ul.active {
        opacity: 1;
        transform: translateX(0%);
        transition: all .6s ease-in-out;
    }

    .siteHeader .siteHeaderInner ul li {
        padding: 10px 10px;
    }

    .headToggleBtn {
        display: block;
        padding: 5px 7px;
        border: 1px solid var(--primary_clr);
        color: var(--primary_clr);
        text-align: center;
        border-radius: 7px;
        font-size: 12px;
    }

    .headCloseBtn {
        display: block;
        color: var(--primary_clr);
        font-size: 16px;
        font-weight: 700;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .cont_grid_outer,
    .cont_grid_outer2 {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}
@media only screen and (min-width:767.98px) and (max-width:1098.98px) {
    .siteHeader .siteHeaderInner ul li a{
        font-size: 13px;
    }
    .siteHeader img{
        display: none;
    }
    .site_footer_innerr .futInfo {
        padding-right: 0rem !important;
    }
    .site_footer_innerr{
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
    }
    .commonDiv, .site_footer{
        padding: 1rem 1rem;
    }
    .IndustriesWeServe .industryGrid{
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media only screen and (min-width:1099px) {
    .siteHeader .siteHeaderInner ul .mblOnly{
        display: none;
    }
}