@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "Poppins", sans-serif;
}




ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

h1,
h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}

.underline {
    background-color: var(--blue);
    width: 5%;
    height: 4px;

    margin: 0 auto;
    margin-bottom: 1rem;
}

:root {
    --white: #fff;
    --black: #000;
    --blue: #4190c8;
    /* --darkBlue: #22496a; */
    --darkBlue: #163259;
}

.primaryBtn {
    font-size: 16px;
    color: var(--white);
    background-color: var(--blue);
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}



.primaryBtn:hover {
    background-color: var(--darkBlue);
}

.secBtn {
    font-size: 15px;
    color: var(--white);
    background-color: var(--blue);
    padding: 10px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    grid-row: 500;
}

.secBtn:hover {
    background-color: var(--darkBlue);
    border-color: #fff;
}


.navbar-toggler,
.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
}


/* Header Start */

header {
    padding-block: 0.3rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
}

header .navbar-brand {
    width: 15%;
}

header .navbar-collapse {
    width: 85%;
}

header .navbar-brand img {
    width: 125px;
}

header .nav-link {
    /* color: var(--blue) !important; */
    margin-left: 1.5rem;
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

header .nav-link::before {
    content: '';
    width: 0%;
    height: 3px;
    position: absolute;
    background-color: var(--blue);
    bottom: -3px;
    left: 0;
    transition: all 0.3s ease;
}

header .nav-link:hover:before {
    width: 100%;
}



header .nav-link:hover {
    color: var(--blue);
    transition: all 0.3s ease;
}

header .active,
header .nav-link:focus {
    color: var(--blue) !important;
    border-bottom: 3.5px solid var(--blue);
}

header .dropdown-menu {
    background-color: var(--darkBlue);
    border-radius: unset;
    padding-block: unset;
    width: 250px;
}

header .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 15px;
    color: var(--white) !important;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--blue);
}

header .dropdown-menu .dropdown-item:hover {
    background-color: var(--blue) !important;
    padding-left: 22px;
}

.cta_btn {
    background-color: var(--darkBlue);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.cta_btn:hover {
    color: #fff !important;
    background-color: var(--blue);
}

.cta_btn:hover::before {
    width: 0 !important;
}

.cta_btn i {
    margin-right: 5px;
}

/* Popup */



.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;

}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 25px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 1rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    background-color: var(--darkBlue);
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;

}

.close-btn:hover {
    background-color: var(--blue);
}

.phone-container {
    display: flex;

}

.phone-container select,
.phone-container input {
    margin-right: 10px;
}

.phone-container select {
    font-size: 14px;
}


#contactForm h5 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--blue);
}

#contactForm button {
    background-color: var(--blue);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    border: unset;
    margin-top: 1rem;
    transition: all 0.3s ease;
}


#contactForm button:hover {
    background-color: var(--darkBlue);
}

.phone-container select,
.phone-container select:focus,
.phone-container select:active,
.phone-container input,
.phone-container input:focus,
.phone-container input:active {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px 8px;
}

.phone-container select {
    width: 150px;
}

.phone-container input {
    width: 100%;
}

#contactForm p {
    text-align: center;
    margin-top: 1rem;
    font-size: 13px;
}


/* Header End */


/* Carousel Start */

.carousel-item {
    position: relative;
}

.carousel_caption {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel_caption h3 {
    width: max-content;
    margin: 0 auto;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 700;
    /* background: rgba(65, 144, 200, 0.7); */
    /* background: rgba(0, 0, 0, 0.7); */
    /* background: rgba(22, 50, 89, 0.7); */
    padding: 0.5rem 2rem;
    border-radius: 8px;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.carousel-inner img {
    height: 600px;
    object-fit: cover;
}


/* Carousel End */

/* Welcome Start */
.welcome_section {
    margin-top: 3rem;
}

.welcome_section h3 {
    font-size: 20px;
    font-weight: 600;
}

.welcome_section h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue);
}

.welcome_section p {
    margin-bottom: 1.5rem;
}

.welcome_section img {
    border: 1px solid #fff;
}

.welcome_big {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
}

.welcome_section .welcome_small {
    width: 50%;
    height: 50%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
}

.welcome_small2 {
    width: 50%;
    height: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Welcome End */

/* Expitise Start */

.expitise_sec {
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) center no-repeat;
    background-size: cover;
    padding-block: 3rem;
    margin-block: 2rem;
    margin-top: 3rem;
}

.expitise_sec .col-12 div {
    width: 95%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-self: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

.expitise_sec .col-12 div h5 {
    margin: 0;
}

.expi_hover {
    transition: all 0.5s ease;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.expitise_sec .col-12:hover .expi_hover {
    transform: scale(1.1);
}

/* Expitise End */

/* Service Start */

.service_section {
    margin-block: 2rem;
}

.service_section h2 {
    text-align: center;
}

.service_section p {
    text-align: center;
}


.swiper-slide>div {
    text-align: center;
    width: 95%;
    min-height: 200px;
    box-shadow: #ccc 4px 4px 24px;
    margin: 10px 10px 28px;
    border-radius: 1rem;
    overflow: hidden;
    transition: all linear 0.3s;
    padding: 20px;
    cursor: pointer;

}

.swiper-slide>div:hover {
    background-color: var(--darkBlue);
    color: #fff;
}

.serviceimg {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.serviceimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servSecImg {
    transition: all linear 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.swiper-slide>div:hover .servSecImg {
    opacity: 1;
    transform: scale(1.2);
}

.swiper-slide .servicesContent {
    position: relative;
    height: 200px;
}

.swiper-slide>div h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--blue)
}

.swiper-slide>div:hover .hoverWhite {
    color: var(--white);
}

.swiper-slide .servicesContent a {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}


/* Service End */

/* Technology Start */

.technology {
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) center no-repeat;
    background-size: cover;
    padding-block: 3rem;
}

.technology h3 {
    color: #fff;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
}


.technology p {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}



.technology img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 01s ease;

}

.technoName {
    width: 95%;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.technoName:hover .hoverimg {
    transform: scale(1.15);
}

.technoWrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 10px;
}



/* Technology End */

/* Why Choose Start */


.whyChooseUs {
    padding-block: 2rem;

}


.whyChooseUs h2 {
    color: var(--blue);
    text-align: center;
}



.whyChooseUs h6 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}


.chooseSmallImg>div {
    padding: 1rem;
    background-color: var(--blue);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.chooseSmallImg>div:first-child {
    margin-top: unset;
}

.chooseSmallImg>div h6,
.chooseSmallImg>div p,
.chooseSmallImg>div img {
    position: relative;
    z-index: 99;
}

.chooseSmallImg>div::before {
    content: '';
    background-color: var(--darkBlue);
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 1rem;
    z-index: 1;
    transition: all 0.5s ease;
}

.chooseSmallImg>div:hover:before {
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    ;
}

.chooseSmallImg img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    object-fit: contain;
    background-color: var(--darkBlue);
    border-radius: 50%;
    padding: 0.5rem;
    text-align: center;
}

.chooseSmallImg>div:hover .ChangeDark {
    background-color: var(--blue);

}

.chooseMainImg {
    width: 100%;
    height: 580px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    object-fit: cover;
}

.whyChooseUs .col-12 {
    padding: 0.5rem;
}

/* .whyChooseUs .col-12>div:hover {
    transform: translateY(-20px);
} */

.whyChooseUs .col-12>div p {
    color: #fff !important;
}

/* Why Choose End */

/* Tagline Start */

.tagline_sec {
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../banner/banner1.jpg) fixed no-repeat;
    background-size: cover;
    padding-block: 3rem;
    margin-bottom: 2rem;
}

.about_tagline {
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../imgs/background.jpg) fixed no-repeat;
    background-size: cover;
    padding-block: 3rem;
    margin-bottom: 0;
}

.tagline_sec h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.tagline_sec a {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: #fff;
    color: #000;

}

.tagline_sec a:hover {
    color: #fff;
}

.tagline_sec .container,
.about_tagline .container {
    background: linear-gradient(rgba(65, 144, 200, 0.8), rgba(65, 144, 200, 0.8)), url(../banner/banner2.jpg) fixed no-repeat center;
    background-size: cover;
    padding: 2rem;
}

.tagline_sec .container div {
    padding: 1.5rem;
    border: 2px solid #fff;
}

/* Tagline End */


/* Testimonials Start */

#testimonial_area {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../imgs/background.jpg) no-repeat center;
    background-size: cover;
    padding-inline: 4%;
    padding-bottom: 2rem;
}

.box-area {
    width: 90%;

    position: relative;
    display: block;
    margin: 20px auto;
    /* border: 1px solid #ccc; */
    padding: 20px 30px;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 15px #ccc;
}

.box-area h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin-top: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.box-area i {
    font-size: 50px;
    text-align: left !important;
    margin-bottom: 1rem;
    color: var(--blue);
}

.box-area .content {
    line-height: 2.3;
    font-size: 16px;
    height: 150px;
    overflow: hidden;
}


#testimonial_area .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

#testimonial_area .owl-prev,
#testimonial_area .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: white;
    border-radius: 50%;
    text-align: center;
    background: var(--blue);
    position: absolute;
}

#testimonial_area .owl-prev {
    left: -60px;
    top: -30px;
}

#testimonial_area .owl-next {
    right: -60px;
    top: -30px;
}

@media only screen and (max-width: 991px) {
    .owl-nav {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .box-area {
        text-align: center;
    }

    .owl-nav {
        display: none;
    }
}

/* Testimonials End */

/* Client Start */


.partnerSection {
    padding-block: 2rem;
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) center no-repeat;
    background-size: cover;
}

/* .partnerSection h2 {
    color: #fff;
}

.partnerSection .underline {
    background-color: #fff;
} */


.partnerSection h2 {
    text-align: center;
    color: #fff;
}

.partnerSection .underline {
    background-color: #fff;
}

.partnerSection .primaryBtn {
    background-color: var(--darkBlue);
}

/* Extra Slider */

.slider {
    margin: auto;
    margin-top: -3rem;
    margin-bottom: -1.5rem;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.E-btn {
    position: absolute;
    bottom: 30px;
}


.slide-track {
    display: flex;
    width: calc(250px * 39);
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 3));
    }
}

.E-slide {
    height: 200px;
    width: 190px !important;
    margin-left: 0.6rem;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
    margin-left: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.E-slide img {
    height: 100px;
    width: 190px;
    object-fit: contain;
    transition: all 1s;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #fff;
    padding: 1rem;
}

.E-slide img:hover {
    transform: scale(1.17);
    box-shadow: 0 0 15px #fff;
}

.partnerSection a {
    display: block;
    width: max-content;
    margin: 0 auto;
    background-color: var(--white) !important;
    color: #000;
    border: 2px solid transparent;
    margin-top: 1.5rem;
}

.partnerSection a:hover {
    background-color: transparent !important;
    color: var(--white);
    border-color: #fff;
}


/* Client End */

/* Portfolio Start */


.portfolio {
    padding-block: 2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../imgs/background.jpg) no-repeat center;
    background-size: cover;
}

.portfolio .underline {
    width: 3%;
    margin-bottom: 0;
}

.portfolio_page {
    background-attachment: unset;
    margin: 0;
    padding-block: 2rem;
}

.portfolioBoxes {
    width: 97%;
    margin-top: 2rem;
    box-shadow: 0 0 15px #ccc;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 1rem;
    background-color: #fff;
     overflow: hidden ;

}

/* .portfolioBoxes::before {
    content: '';
    height: 0%;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--darkBlue);
    transition: all 0.7s ease;
} */

.portfolioBoxes:hover {
    background-color: var(--darkBlue);

}

.port_Location {
    margin-bottom: 0.5rem;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.project_Name {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}

.project_Disc {
    position: relative;
    z-index: 9;
    height: 72px;
    overflow: hidden;
}

.portfolioBoxes:hover .project_Disc,
.portfolioBoxes:hover .project_Name,
.portfolioBoxes:hover .port_Location {
    color: #fff;
}

.portfolio_imgs {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}


.project_img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
    border-radius: 0.5rem;
}


.portfolio_imgs::before {
    content: '';
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 0.5s ease;
}

.portfolioBoxes:hover .portfolio_imgs:before {
    width: 100%;
}

.portfolio .primaryBtn {
    position: relative;
    left: 50%;
    transform: translateX(-50%) !important;
    display: inline-block;
    margin-top: 2rem;
}

.visitBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    z-index: 11;
    transition: all 0.5s ease;
    opacity: 0;
}

.portfolioBoxes:hover .visitBtn {
    opacity: 1;
}

.visitBtn:hover {
    text-decoration: underline;
}

/* Portfolio End */

/* Footer Start */

footer {
    background-color: var(--darkBlue);
    padding-block: 3rem;
    color: #fff;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    /* padding-left: 5px; */
}

.footUnderline {
    width: 20%;
    background-color: #fff;
    height: 3px;
}

.footHeading {
    margin-bottom: 1.5rem;
}

footer img {
    box-sizing: unset;
    width: 125px;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

footer li {
    margin-bottom: 0.5rem;
}

/* Footer End */

/* Back To Top */

.backToTop {
    width: auto;
    position: fixed;
    bottom: -1%;
    right: 5%;
    transition: all 0.3s ease;
}

.backToTop a {
    background-color: var(--blue);
    padding: 0.6rem;
    color: var(--white);
    font-size: 1.2rem;
    border-radius: 5px;
}

.backToTop:hover {
    bottom: 1%;
}


/* whatsap css */
#whatsapp {
    position: fixed;
    right: 40px;
    bottom: 10%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../imgs/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    height: 500px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: var(--darkBlue);
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

/* About Page Start */

.about_introduction {
    margin-block: 2rem;
}

.about_introduction img,
.mission_vision img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.vision {
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) center no-repeat;
    background-size: cover;
    padding-block: 3rem;
    margin-top: 3rem;
    color: #fff;
}

.vision h2 {
    color: #fff;
}

.mission {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../imgs/background.jpg) no-repeat center;
    background-size: cover;
    padding-block: 3rem;
}

.mission_vision img {
    width: 100%;
    height: 300px;
    background-color: #fff;
    object-fit: contain;
}

/* About Page End */

/* Career */


.career label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.career input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

.career input[type="submit"] {
    background-color: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: max-content;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: -10px;
}

.career input[type="submit"]:hover {
    background-color: var(--darkBlue);
}


/* Contact Page Start */


.contactUsPage {
    padding-block: 4rem;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../imgs/background.jpg) fixed no-repeat;
    background-size: cover;
}

.contactInformation {
    height: 100%;

}

.contactInformation {
    color: #000000;
    padding: 2rem;
}



.contactUsPage form {
    background-color: #f5f5f5;
    background-color: var(--darkBlue);
    padding: 2rem;
    padding-block: 3rem;
    padding-top: 1rem;
    box-shadow: 0 0 20px #ccc;
    border-radius: 1rem;
}

.contactUsPage form input,
.contactUsPage form textarea {
    border: none;
    margin-top: 1rem;
    background-color: transparent;
    width: 100%;
    border-bottom: 1px solid var(--white);
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
}

.contactUsPage form textarea {
    color: #fff;
}

.contactUsPage form input:focus,
.contactUsPage form textarea:focus {
    outline: none;
}

.contactUsPage form textarea {
    padding-bottom: 0;
}


.contactUsPage form input::placeholder,
.contactUsPage form textarea::placeholder {
    color: #424040;
    color: #fff;
}

.contactUsPage h3 {
    color: var(--blue);
    font-size: 30px;
    font-weight: 700;
}

.contactUsPage h5 {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--blue);
}

.contactPageBtn {
    width: max-content !important;
    border: none;
    background: var(--blue) !important;
    display: inline-block;
    color: #fff;
    margin-top: 30px;
    margin-right: 0.5rem;
    cursor: pointer;

    font-size: 16px;
    color: var(--white);
    padding: 10px 20px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent !important;
}


.contactPageBtn:hover {
    background-color: transparent !important;
    color: #fff;
    border-color: #fff !important;
}

.contactresetBtn:hover {
    background-color: var(--blue) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.contactresetBtn {
    background-color: #ccc !important;
    color: #000 !important;
}

.contactaddSec .col-6 {
    margin-top: 1rem;
}

.add_dtl i {
    color: var(--blue);
    font-size: 1.3rem;
}

.add_dtl strong {
    color: var(--blue);
    font-size: 1.1rem;
}

.add_dtl a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* CONTACTS ENDS */

/* Contact Page End */

/* Service Page Start */

/* Web Design */
.servicepage {
    margin-top: 2rem;
}

.servicepage .container>p {
    padding: 1.5rem;
    box-shadow: 0 0 15px #ccc;
    margin-bottom: 2rem;
}

.servicepage img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.coloumHeight {
    height: 400px;
    margin-bottom: -5rem;

}

.servicepage h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
}

.service_page_sec1 {
    padding-block: 2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../imgs/background.jpg) fixed no-repeat;
    background-size: cover;
}



.service_page_sec2 h3 {
    color: var(--white);
}

.service_page_sec2 {
    color: #fff;
    padding-block: 2rem;
    background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) fixed no-repeat;
    background-size: cover;
    margin-bottom: 0;

}

.servicepage strong {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue);
}


/* Service Page End */


/* Partner Page Start */

.partnersPage {
    padding-block: 3rem;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../imgs/bg-3.jpg) fixed center no-repeat;
    background-size: cover;
}

.partnersPage .col-xl-3>div {
    width: 90%;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
    border: 2px solid #ccc;
    margin: 0 auto;
    margin-top: 1rem;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

.partnersPage img {
    width: 65%;
    height: 110px;
    object-fit: contain;
    cursor: pointer;
    transition: all 1s ease;
}

.partnersPage img:hover {
    transform: scale(1.2);
}

/* Partner Page end */

/* Products Page Start */

.product_page {
    margin-block: 2rem;
}



.product_page h2 {
    text-align: center;

}

.product_page h5 {
    text-align: center;
    color: var(--darkBlue);
}

.product_sec1 {
    margin-block: 5rem;

}

.product_sec1 h2,
.modules_sec1 h2 {
    text-align: unset;
    font-size: 28px;
    font-weight: 600;
}

.product_page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.modules {
    margin-top: 3rem;
}

.modules_sec1 {
    margin-block: 5rem;
}

/* Products Page End */

/* Query Form */


.queryForm {
    background-color: #f0eeee;
    padding-block: 3rem;
    padding-top: 2rem;
}

.queryForm h1 {
    text-align: center;
}

.queryForm form {
    margin-top: 2rem;
    width: 100%;
    padding: 3rem 2rem;
    border: 2px solid #eee;
    box-shadow: 0px 0px 15px #aaa9a9;
    background: #FFF;
    border-radius: 1rem;
}

.queryForm form input {
    width: 100%;
    border: 1px solid #d8d8d8;
    margin-top: 1rem;
    border-radius: 0.5rem;
    height: 50px;
}

.queryName {
    display: flex;
}

.queryName input:nth-child(1),
.queryName input:nth-child(2) {
    width: 50%;


}

.queryForm form input,
.commentInput {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 0.6rem 2rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
}


.queryEmail {
    margin-top: 0rem !important;
}



.queryForm .queryBtn {
    display: block;
    width: max-content;
    padding: 10px 24px;
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: all linear .3s;
    border-radius: 5px;
    text-transform: uppercase;
    background: var(--blue);
    transition: all 0.3s ease;
}

.queryForm .queryBtn:hover {
    background: var(--darkBlue);

}

.commentInput {
    height: 80px;
}

.queryName {
    display: flex;
    margin-top: -2rem;
}