@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Roboto", sans-serif; */
    font-family: "montserrat", sans-serif;
}

:root {
    --blue: #001B42;
    --white: #fff;
    --orange: #F26A16;
    --light-blue: #243CFF;
    --black: #000;
    --swiper-navigation-size: 24px !important;
}


a {
    text-decoration: none !important;
}

p {
    margin-bottom: 0;
}

ul {
    padding-left: 0px !important;
}

ul li {
    list-style: none;
}

section {
    padding: 50px 0px;

}


/* universal btn start */
.universal-btn {
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    transition: 0.2s ease-in-out;
    border-radius: 50px;
}

.universal-btn:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
}

/* universal btn end */





/* universal heading style start */
.heading-div {
    margin-bottom: 30px;
}

.heading-div .heading {
    position: relative;
    font-size: 25px;
    font-weight: 400;
    display: inline-block;
}

.heading-div .heading span {
    color: var(--blue);
    font-weight: 500;
}

.heading-div .heading::after {
    content: "";
    position: absolute;
    left: 45%;
    bottom: -7px;
    height: 3px;
    width: 10%;
    background-color: var(--orange);
}

@media(max-width:768px) {
    section {
        padding: 30px 0px;
    }

    .heading-div {
        margin-bottom: 15px;
    }

    .heading-div .heading {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        display: inline-block;
    }
}

/* universal heading style end */


/* fixed icons css start */
.fix-icons .whatsapp-icon {
    position: fixed;
    top: 80%;
    right: 2%;
    z-index: 999999;
}

.fix-icons .phone-icon {
    position: fixed;
    top: 80%;
    left: 2%;
    z-index: 999999;
}

.fix-icons .whatsapp-icon a {
    color: #fff;
    font-size: 24px;
    background: var(--blue);
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.911) 0px 5px 15px;
}

.fix-icons .phone-icon a {
    color: #fff;
    font-size: 24px;
    background: var(--blue);
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.904) 0px 5px 15px;
}

@media screen and (max-width: 767px) {
    .fix-icons .whatsapp-icon a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .fix-icons .phone-icon a {
        font-size: 16px;
        padding: 7px 10px;
    }
}

/* end of fixed icons css */


/* popup modal start============================================================================================= */
.modal-content {
    background: #ffffff8a !important;
    margin-top: 90px;
    backdrop-filter: blur(5px);

}

.modal-content .modal-body h2 {
    font-size: 28px;
    color: var(--blue) !important;
}

.modal-content .modal-body form input {
    background: transparent !important;
}

.modal-content .modal-body form textarea {
    background: transparent !important;
}

.modal-content .modal-body form .captcha-codes-sec {
    border: 1px solid #fff !important;
}

.modal-content .modal-body form .captcha-codes-sec p {
    font-size: 23px !important;

}

#codeToenter1 {
    border: 1px solid #fff !important;
}

.modal-content .modal-body form .captchasep1 .captcha-codes-sec button {
    background-color: var(--blue) !important;
}

/* popup modal end============================================================================================= */





/* navabar and banner section start============================================================================== */




.navbar {
    width: 100%;
    background-color: #001c42fa;
    backdrop-filter: blur(12px);
    box-shadow: rgba(0, 0, 0, 0.281) 0px 3px 8px;
    padding: 0 !important;
    z-index: 11;
    transition: 0.3s ease-in-out;
}

.navbar .navbar-brand .img {
    width: 230px;
    filter: drop-shadow(rgba(0, 0, 0, 0.993) 0px 3px 8px);
}

.navbar .navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 15px;

}

.navbar .navbar-nav .nav-item {
    margin: 0 10px;
    position: relative;


}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--orange) !important;
}



.navbar .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    top: 0;
    height: 2px;
    width: 0%;
    left: 0;
    background-color: var(--orange);
    z-index: 999;
    transition: 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
    width: 100%;
}

.header .banner-video {
    position: relative;
    overflow: hidden;
}

.header .banner-video video {
    position: relative;
    display: block;

}

.overlay {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(to right, #011127f5, #00000005);

    align-items: start;
    width: 100%;
    height: 100%;
    padding: 0px 0px 0px 60px;
}

.overlay span {
    font-size: 45px;
    color: var(--white);
    font-weight: 700;
}

.overlay p {
    color: var(--orange);
    font-weight: 500;
}



.search-bar {
    position: relative;

}

.search-form {
    position: relative;

}

.search-form input {
    position: relative;
    outline: none;
    border: 1px solid var(--white);
    padding: 8px;
    font-size: 15px;
    border-radius: 50px;
    color: var(--white);
    background: none;
    width: 100%;
}

.search-form input::placeholder {
    color: var(--white);
}

.search-form .search-submit {
    position: absolute;
    right: 0;
    outline: none;
    border: 1px solid var(--white);
    height: 100%;
    padding: 9px 12px;
    border-radius: 50%;
    background-color: var(--blue);
    color: var(--orange);
}


@media(max-width:768px) {
    .header {
        position: static;
    }

    .search-form {
        position: relative;
        margin-bottom: 10px;

    }

}

@media(max-width:650px) {
    .banner-video .overlay {
        padding: 0 0 0 20px;
    }

    .overlay span {
        font-size: 22px;
    }

    .overlay p {
        font-size: 10px;
    }

    .navbar .navbar-brand .img {
        width: 180px;
    }
}


@media(max-width:340px) {
    .overlay p {
        display: none;
    }
}

/* navbar and banner end==============================================================================-=================== */





/*=============================about us style start=================================================== */

.patron-image {
    margin: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.158) 0px 5px 15px;
}

.about-us {
    background: linear-gradient(#fff, #ffff), url(../adatech/assets/images/about-us-image/about-bg.jpg);
}

.about-us .about-us-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.about-us .about-us-content p {
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
}

.about-us .about-us-content p strong {
    color: var(--blue);
}

.about-content-2 h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue);
}

.about-content-2 p {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
}

.about-content-2 {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100%;
    flex-direction: column;
}

.about-image img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;

}

@media(max-width:768px) {
    .about-us .about-us-content {
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .about-us .about-us-content p {
        text-align: justify;
        font-weight: 500;
        font-size: 14px;
    }

    .about-content-2 p {
        text-align: justify;
        font-size: 14px;
        font-weight: 500;
    }

}

.client img {
    /* padding: 5px; */
    margin: 10px 0px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*=============================about us style end=================================================== */






/* ================================why-us-start==================================================== */
.why-choose-us {
    background-color: var(--blue);
}

.why-us-content {
    margin: 30px;
}

.why-us-content p {
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.choose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #022049;
    margin-bottom: 20px;

}

.choose-card h3 {
    font-size: 18px;
    color: var(--white);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(224, 225, 226, 0.911);
}

.choose-card .icon i {
    transition: color 0.3s;

    padding: 14px 12px;
    border-radius: 50%;
    color: var(--orange);
}

@media(max-width:768px) {
    .why-us-content p {
        text-align: justify;
        font-size: 12px;
    }
}

/* ================================why-us-end==================================================== */







/* =============================products start====================================================== */
.our-products {
    background: #f1ecec;
    position: relative;
}


.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: rgba(2, 61, 138, 0.966) 0px 5px 15px;
}

.product-cad-link {
    text-decoration: none;
    color: #fff !important;
}

.product-card img {
    transition: 0.5s ease-in-out;
}

.product-card .overlay-pro-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 20px 0px 0px 0px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: end;
    background: linear-gradient(#0000001a, #0000004d, #000000e1);
}




.product-card .overlay-pro-content h3 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 100px;

    text-transform: uppercase;
}




.product-card .overlay-pro-content h3::after {
    content: "";
    position: absolute;
    left: 42%;
    bottom: -10px;
    height: 3px;
    width: 16%;
    background-color: #fff;
    transition: 0.5s ease-in-out;
}


.product-card .btn-div {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.product-card .btn-div button {
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    background-color: var(--blue);
    color: var(--white) !important;
    font-size: 16px;
    transform: translateY(200%);
    transition: 0.5s ease-in-out;
}



@media(max-width:768px) {


    .product-card .overlay-pro-content h3 {
        font-size: 18px;
    }

}

.product-cad-link:hover .product-card .overlay-pro-content h3::after {
    background-color: var(--orange);
}

.product-cad-link:hover .product-card .overlay-pro-content {
    background-color: #0000007a;
    backdrop-filter: blur(10px);
}

.product-cad-link:hover .product-card img {
    transform: scale(1.06);
}

.product-cad-link:hover .product-card .btn-div button {
    transform: translateY(0%);
}

.products .swiper-button-next::after,
.products .swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    padding: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    padding: 25px !important;
    background-color: var(--blue);
    height: 50px;
    width: 30px;
    border-radius: 50%;
    color: var(--white) !important;
}

.mySwiper2 .swiper-button-next {
    position: absolute;
    top: 50%;
}

.mySwiper2 .swiper-button-prev {
    position: absolute;
    top: 50%;
    left: 20px !important;
}

.mobile-our-products {
    display: none;
}

@media(max-width:768px) {
    .mobile-our-products {
        display: block;
    }

    .our-products {
        display: none;
    }
}

/* =============================products end======================================================== */




/* =============================blogs start=================================================== */
/*** Blog Start ***/
.blog {
    overflow: hidden;
    background-color: var(--blue);
    margin-bottom: 10px;
}

.blog .blog-item {
    margin: 10px 0px;
    position: relative;
    box-shadow: rgba(255, 255, 255, 0.281) 0px 3px 8px;
    transition: 0.5s;
}

.blog .blog-item .blog-content {
    background: var(--white) !important;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog-name {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--blue) !important;
    font-weight: 600;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog .blog-item .blog-img::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog-content .blog-comment {
    background: #6C7293 !important;
}



.blog-content p {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--black);

}

.blog-carousel {
    z-index: 1;
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;

}

/* =============================blogs end===================================================== */

/* ============================contact us start=============================================== */
.add-details {
    height: 100%;
}

.contact span {
    font-size: 18px;
    color: var(--orange);
    font-weight: 500;
}

.contact h2 {
    color: var(--blue);
    font-weight: 600;
}

.contact .address h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
}

.contact .address {
    margin-bottom: 20px;

}

.contact .address p {
    font-size: 16px;
    font-weight: 500;
}

.contact .address p i {
    font-size: 20px;
    color: var(--light-blue);

}

.email-phone {
    display: flex;

    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 35px 20px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.email-phone p {
    font-size: 16px;
}

.email-phone p i {
    color: var(--orange);
    margin-right: 3px;
}

.sub-style h2 {
    color: var(--blue);

}

.sub-style span {
    color: var(--orange);
}

/*** Contact Start ***/
.contact .text-primary {
    color: var(--bs-primary) !important;
}

.contact .form-floating .form-control {
    border-radius: 0px solid var(--text-dark) !important;
    border-color: #000;
}

form #err1,
#err2,
#err3,
#err4 {
    font-size: 14px !important;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 1.25;
}

.form-floating>label {
    position: absolute;
    top: -7px !important;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    /* font-size: 12px; */
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

/* captcha new design start */
.captchasep1 {
    display: flex;
}

.captchasep1 input::placeholder {
    color: #000 !important;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    font-size: 16px;
    border: 1px solid #000 !important;
    box-shadow: none;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    background: url(../img/capt-img.jpeg);
    font-size: 16px;
    border: 1px solid #000 !important;
    box-shadow: none;
    overflow: hidden;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 9px;
    font-style: italic;
    font-size: 17px !important;
    padding: 8px;
    height: 100%;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 18px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
}

.captchasep1 .captcha-codes-sec button i {
    background: var(--purple);
    color: #fff;
    padding: 10px;
}

@media screen and (max-width:600px) {
    .captchasep1 {
        display: flex;
        flex-direction: column !important;
    }

    .captchasep1 .captcha-codes-sec {
        border-left: 1px solid #CED4DA;
        border-right: 1px solid #CED4DA;
        border-bottom: 1px solid #CED4DA;
        margin-top: 3px;
    }
}

.bg-danger22 {
    background-color: var(--bs-primary) !important;
}

/* contact page start */
.maps {
    background-color: #fdf0f0;
}

.maps .accordion-body iframe {
    width: 100%;
    height: 350px;
}

/* contact page end */
@media (max-width:280px) {
    .contact .emailfont .eemmaaiill a {
        font-size: 10px !important;
    }
}


/* ============================contact us end================================================= */



/* ================================why choose us start======================================== */
/* faq-section style start */
.faq {
    background-color: #ffffff;
    padding: 50px 0px;
}

.faq-content {
    padding: 20px 100px;
}

.accordion-button::after {
    content: "";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    left: 0;
    background-image: url(../images/icons/plus.png) !important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button {
    outline: none !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    color: #000 !important;
}

.accordion-item p {
    margin-bottom: 0px;
    margin-left: 10px !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
}

@media(max-width:768px) {
    .faq-content {
        padding: 20px 10px;
    }

    .accordion-item p {
        font-size: 16px;
    }

    .accordion-body {
        font-size: 12px;
        text-align: justify;
    }
}

/* faq-section style end */
/* ================================why choose us end========================================== */











/* footer start================================================================================================== */
.footer {
    box-shadow: rgba(0, 0, 0, 0.884) 0px 2px 5px -1px, rgba(0, 0, 0, 0.877) 0px 1px 3px -1px;

    background-color: var(--blue);
}

.top-part {
    padding: 50px 0px;
}

.footer a {
    text-decoration: none !important;
}

.footer h4 {
    color: var(--white);
}

.footer span strong {
    color: var(--orange);
}

.footer span {
    color: var(--white);
}

.footer span a {
    color: var(--white);
}

.footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer .social a {
    padding: 8px 12px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: var(--white);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--orange);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.2rem;
    font-size: 15px;
    background: var(--white);
    color: var(--blue);
    font-weight: 500;
}

.footer .copyright a {
    color: var(--blue);
    font-weight: 500;
}

.footer .copyright a:hover {
    color: var(--orange);
}

/* footer end================================================================================================== */


/* subpage banner start======================================================================================= */
.sub-page-banner {
    height: 68vh;
    /* background: linear-gradient(to right, #001129, #011d44fd); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain !important;
    background: url(../images/banner/sub-page-banner.jpg);
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 30px 0px 0px 60px;
    flex-direction: column;
    position: relative;
}

/* .sub-banner-img {
    position: absolute;
    bottom: 0;
    right: 5%;
} */

.sub-banner-img img {
    filter: drop-shadow(rgba(0, 0, 0, 0.897) 0px 5px 15px);
}

.sub-page-banner span {
    font-size: 30px;
    color: var(--white);
}

.sub-page-banner p a {
    color: var(--orange);
}

.sub-page-banner p {
    color: var(--white);
}

@media(max-width:768px) {

    .sub-page-banner {

        height: 40vh;
    }
}

@media(max-width:638px) {


    .sub-page-banner {
        padding: 0px 0px 0px 20px;
        height: 35vh;
    }
}

@media(max-width:400px) {
    .sub-page-banner {
        height: 28vh;
    }

    .sub-page-banner span {
        font-size: 14px;
        color: var(--white);
    }

    .sub-page-banner p {
        font-size: 10px;
    }

}

/* subpage banner end========================================================================================= */

/* about-page-sec-start======================================================================================= */
/* .about-us-page-sec{
    border-bottom: 4px solid var(--blue);
} */
.about-us-page-sec .about-page-sec-image img {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-us-page-sec .about-page-sec-image {
    margin-bottom: 30px;
}

.about-us-page-sec .about-page-sec-content p {
    text-align: justify;
    font-size: 16px;
}

@media(max-width:768px) {
    .about-us-page-sec .about-page-sec-content p {
        text-align: justify;
        font-size: 14px;
    }
}


.about-pro-card {
    padding: 10px;
    /* border: 1px solid #000; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* box-shadow: #001c42b0 0px 20px 30px -8px inset, rgba(1, 23, 83, 0.993) 0px 18px 36px -18px inset; */
    border-radius: 25px;
}

.about-pro-card .abou-pro-img {
    /* border: 1px solid #000; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.about-pro-card .abou-pro-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}

.about-pro-card .abou-pro-desc h2 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-pro-card .abou-pro-desc p {
    font-size: 12px;
    text-align: justify;
}

@media(max-width:768px) {
    .ab-pro-para p {
        font-size: 10px;
        text-align: justify;
    }

    .about-pro-card .abou-pro-desc h2 {
        font-size: 12px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .about-pro-card .abou-pro-desc p {
        font-size: 10px;
        text-align: justify;
    }
}

/* about-page-sec-end========================================================================================= */



/* blog-details style start===================================================================================== */
/* blog-details-start */
.blog-details {
    padding: 50px 0px;
}

.blog-image {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 30px;
}

.blog-detail-content p {
    font-size: 16px;
    text-align: justify;
}

.related-blog-card {
    border: 1px dotted #000;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.related-blog-card a {
    text-decoration: none;
    color: #000 !important;
}

.related-blog-card img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.related-blog-card h3 {
    font-size: 16px;
}

.related-blog-card p {
    font-size: 12px;
    margin-bottom: 0;
}

.fixed-card {
    position: sticky;
    top: 100px;
}

/* ---------------------------------- end of blog detail page css -------------------------------*/
/* blog-details style end===================================================================================== */

/* ====================================subprduct pge style start ============================================ */

.service-item {
    position: relative;
    padding: 16px 16px 0px 16px;
    transition: .5s;
    background: var(--blue) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service-item .service-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.service-item .service-img h3 {

    text-align: center;
    font-size: 18px;
    background: var(--blue);
    color: var(--white);

}

.service-img img {
    transition: 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.03);
}

/* 
@media(max-width:768px){
    .service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
    font-size: 14px;
    background: var(--blue);
    color: var(--white);
}


}
@media(max-width:500px){
    .service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
    font-size: 10px;
    background: var(--blue);
    color: var(--white);
}
.service-item {
    position: relative;
    padding: 6px 7px;
    transition: .5s;
    background: var(--blue) !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} 
}*/

/* ====================================subprduct pge style end============================================ */


/* enquirypage============================================================================= */
/* enq-style start */
.enquiry {
    padding: 50px 0px;
    position: relative;
}

.enquiry .product-content h1 {
    font-size: 32px;
}

.enquiry .product-content h2 {
    font-size: 26px;
}

.enquiry .product-content h3 {
    font-size: 20px;
}

.enquiry .product-content p,
.enquiry .product-content ul li {
    text-align: justify;
    font-size: 16px;
}

.enq-right-image {
    position: sticky;
    top: 110px;
}

.inq-product {
    background-color: var(--blue);
    color: #fff;
}

.enquiry-form .universal-btn {
    color: #fff;
    background-color: var(--blue);
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media(max-width:768px) {
    .enquiry .product-content h1 {
        font-size: 22px;
    }

    .enquiry .product-content h2 {
        font-size: 18px;
    }

    .enquiry .product-content h3 {
        font-size: 16px;
    }

    .enquiry .product-content p,
    .enquiry .product-content ul li {
        text-align: justify;
        font-size: 14px;
    }
}

/* enq-style end */


/* enquiry form style start */
.enquiry-form .captchasep1 input {
    border: 1px solid #fff !important;
}

.enquiry-form {
    padding: 20px;
    color: white;
    font-weight: 600;
    background-color: var(--blue);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.enquiry-form .captchasep1 .captcha-codes-sec {
    border: 1px solid #fff !important;
}

.enquiry-form .captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.enquiry-form .captchasep1 #RefreshCaptcha {
    background-color: var(--blue) !important;
    border: 1px solid #fff;
}

.enquiry-form form input {
    background: none;
    color: #fff;
}

.enquiry-form form input::placeholder {
    color: #fff;
}

.enquiry-form form input:focus {
    background: none;
    color: #fff;
}

.enquiry-form form textarea {
    background: none;
    color: #fff;
}

.enquiry-form form textarea::placeholder {
    color: #fff;
}

.enquiry-form form textarea:focus {
    background: none;
}

.enquiry-form h4 {
    position: relative;
    display: inline-block;
    color: white;
    padding-bottom: 5px;
}

/* enquirypage============================================================================= */