@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');






* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

:root {
    --main-color: #ff8921;
    --bg-color: #005C8A;
}

.dwn-cat {
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat", serif;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.dwn-cat:hover {
    color: #fff;
}

.navbar .nav-item .nav-link {
    color: #1f1f1f;
    font-family: "Montserrat", serif;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 500;
}

.nav-link {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.4s;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--main-color);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--main-color);
    /* Change this to the text color you want on hover */
}

.navbar-brand img {
    width: 100%; height:auto;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:focus {
    color: #666666;
}

.navbar .nav-item .nav-link:hover {
    color: var(--main-color);
}

span.navbar-toggler-icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

button.navbar-toggler {
    border: 2px solid #666 !important;
}

.navbar {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}



a.dropdown-item {
    font-size: 16px;
    font-family: "Montserrat", serif;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
}

a.dropdown-item:hover {
    background-color: var(--dark-color);
    color: #fff;
    transition: color .3s ease;
    background-color: var(--bg-color);
}

.dropdown-toggle::after {
    display: none;
}

.main-head h1 {
    font-family: "Roboto Slab", serif;
    font-size: 40px;
    color: #1f1f1f;
    font-weight: 400;
}

.main-head h2 {
    font-family: "Roboto Slab", serif;
    font-size: 30px;
    color: var(--bg-color);
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
    padding: 10px;
    margin: 10px 0;
}

.main-head h3 {
    font-family: "Roboto Slab", serif;
    font-size: 30px;
    color: var(--bg-color);
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.1));
    padding: 10px;
    margin: 10px 0;
}

h5 {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
}

.white-main-head h3 {
    font-family: "Roboto Slab", serif;
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid #fff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;

    padding: 10px;
    margin: 10px 0;

    transition: all 0.3s ease;

    width: max-content;
}


.main-para p {
    font-size: 18px;
    color: #303030;
    line-height: 28px;
    text-align: justify;
    font-family: "Montserrat", serif;
    letter-spacing: .5px;
}

.main-para p a {
    font-size: 18px;
    color: var(--bg-color);
    line-height: 28px;
    text-align: justify;
    font-family: "Montserrat", serif;
    text-decoration: none;
}


.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    background: #000;
    width: 175px;
    height: 60px;
    line-height: 60px;
    color: #FFF;
    padding: 0 10px;
    text-align: center;
    font-size: 18px;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
    transition: all 0.3s ease;
    /* Added transition for smooth hover effect */
    font-family: "Montserrat", serif;
    font-weight: 500;
}

.box:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background: var(--bg-color);
    z-index: -1;
    transition: all 1s ease;
    /* Added transition for smooth animation of pseudo-element */
    border-style: solid;
    border-color: var(--bg-color);
    border-width: 80px 100px;
    transform: rotate(360deg);
    transform-origin: top left;
}

.box:hover {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Transition for smooth color change */
}

.box:hover:before {
    border-color: var(--main-color);
    transform: rotate(40deg);
    width: 100%;
    /* Expand the pseudo-element on hover */
    height: 100%;
    /* Expand the pseudo-element on hover */
}

.market-area {
    position: relative;
}

.area-btn {
    padding: 30px;
    position: relative;
    /* Ensure relative positioning for .box to work */
}

.sec-img img {
    width: 100%; height: auto;
}

/* ro plant section */
.ro-plant {
    position: relative;
    background-image: url('../img/back-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ro-plant-img img {
    width: 100%;
    height: 300px;
    border: 3px solid #FFF;
    border-radius: 5px;
}

.points ul li {
    font-size: 18px;
    color: #1f1f1f;
    line-height: 34px;
    text-align: justify;
    font-family: "Montserrat", serif;
    text-decoration: none;
}

.points ul li i {
    color: var(--bg-color);
    font-size: 14px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.card-title {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-body {
    padding: 1.5rem;
}


.card-header  {
    background-color: var(--bg-color);
    font-size: 18px;
    font-family: "Roboto Slab", serif;
}
.card-header h3 {
    background-color: var(--bg-color);
    font-size: 20px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 0;
    padding: 7px 0;
}

.card li {
    font-family: "Montserrat", serif;
    font-size: 18px;
    padding: 7px 0;

}

.card-bg-section {
    background-color: var(--bg-color);
}

.card ul li i {
    margin-right: 5px;
    font-size: 22px;
}

.pharmaceutical-main {
    background-color: var(--bg-color);
    padding-bottom: 200px !important;
    /* position: relative; */
}

.pharma-img img {
    width: 100%;
    border: 3px solid #fff;
    border-radius: 5px;

}

.main-btn-white .box {
    border: 2px solid #fff;
}

.brackish {
    background-color: #fff;
    border-radius: 10px;
    /* position: absolute; */
    padding: 50px;
    margin-top: -160px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* width: 75%;
    top: 83%; */
}

.home-table td {
    font-family: "Montserrat", serif;
    font-size: 16px;
    padding: 7px 10px;
}

.choose-main {
    background-color: #ededed;
}

/* footer */
footer {
    background-color: var(--bg-color);
}

.ftr-abt .text p {
    font-family: "Montserrat", serif;
    text-align: justify;
    font-size: 16px;
    color: #ffffff;
    padding: 20px 0 15px 0;
}

.ftr-2-head {
    font-family: "Roboto Slab", serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.link-2 li a {
    color: #ececec;
    font-size: 16px;
    font-family: "Montserrat", serif;
}

.link-2 li {
    margin-bottom: 7px;
}

.link-3 li a {
    color: #ececec;
    font-size: 16px;
    font-family: "Montserrat", serif;
}

.link-3 li {
    margin-bottom: 7px;
}

.contact-footer a {
    font-size: 18px;
    font-family: "Montserrat", serif;
    color: #ececec;
    text-decoration: none;
}

.contact-footer {
    padding-top: 65px;
}

.contact-footer p {
    font-size: 18px;
    font-family: "Montserrat", serif;
    color: #ececec;
    text-decoration: none;
}

.ftr-btm {
    background-color: var(--bg-color);
    padding: 0px 0 12px 0;
}

.ftr-btm p {
    text-decoration: none;
    color: #e7e7e7;
    font-size: 18px;
    font-family: "Montserrat", serif;
    margin-bottom: 5px !important;
    font-weight: 400;
    text-transform: capitalize;
}

.ftr-btm a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-family: "Montserrat", serif;
    margin-bottom: 5px !important;
    font-weight: 600;
}

.ftr-logo img {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

/* about us */
.breadcrumb-main {
    position: relative;
     background-color:#000 !important;
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Adjust the opacity as needed */
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.breadcrumb-content .head h1 {
    font-family: "Roboto Slab", serif;
    font-size: 40px;
    /* margin-top: 35px; */
    text-transform: capitalize;
}

.bread-links a {
    /* padding: 20px 0; */
    color: #fff;
    font-family: "Outfit", serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}

.bread-links {
    margin-top: 15px
}

.service-box {
    border: 1px solid #eaeaea;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 7px;
    height: 237px;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

}

.service-box h4 {
    color: var(--bg-color);
    margin-bottom: 15px;
    font-family: "Roboto Slab", serif;
}

.service-box p {
    color: #333;
    font-size: 18px;
    font-family: "Montserrat", serif;
}

.service-box a {
    color: var(--bg-color);
    text-decoration: none;
    font-family: "Montserrat", serif;
}

.service-box a:hover {
    text-decoration: underline;
}

.water-trt {
    background-color: #ededed;
}

.sec-img-70 img {
    width: 70%;
}

.table-head {
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .5px;
}

thead {
    background-color: var(--bg-color);
}
td{
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", serif; 
    color: #1f1f1f;
}

.font-head{
    font-size: 20px;
}

.purple {
    margin-top: 10px;
    border-bottom: 1px solid #a0a0a0;
}
.purple strong {
    font-family: "Montserrat", serif;
}
.page_text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Montserrat", serif;
}
.ball-valve a {
    color: var(--bg-color);
    text-decoration: none;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
    line-height: 28px;
}


/* inquiry form  */

.right-ok {
    background-image: url(https://industrialwatertreatmentplant.com/assets/img/right-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px
}

.wrong-icon {
    background-image: url(https://industrialwatertreatmentplant.com/assets/img/wrong-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px
}

.example {
    margin: 15px;
    font-size: 14px;
    color: #656666;
    content: "Example";
    background-color: #fff;
    border-color: #929494;
    border-width: 1px;
    border-radius: 4px;
    padding: 10px 20px 10px;
    border-style: solid
}

.form-control-feedback {
    display: none
}

.has-feedback label~.form-control-feedback {
    top: 0 !important
}

.error {
    text-align: left !important;
    display: table !important
}

.thnak4 {
    margin-top: 50px
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-group {
    margin: 15px 0 !important
}

.form-group input {
    border-left: 5px solid var(--bg-color);
}

.form-group textarea {
    border-left: 5px solid var(--bg-color);
}

.form-group select {
    border-left: 5px solid var(--bg-color);
}

.Submit-box {
    background-color:var(--bg-color);
    /* border: 1px solid var(--bg-color); */
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important;

}

.Submit-box:hover {
    background-color: var(--main-color);
    /* border: 1px solid var(--main-color); */
    border: none !important;
}
.form-group input::placeholder {
    font-family: "Montserrat", serif;
    font-size: 14px;
}

#v_country,
.form-group input {
    font-family: "Montserrat", serif;
    font-size: 16px;
}
.inq-btn-home {
    position: fixed;
    top: 200px;
    left: 3px;
    width: 125px;
    height: 50px;
    z-index: 11;
}
/* contact */
.contact-main-2 .head h1 {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    color: #fff;
}

.contact-main-2 .loc-add .add-line p {
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 28px;
    color: #1f1f1f;
}

.contact-main-2 .contact-pno .add-line p {
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 28px;
    color: #1f1f1f;
}

.contact-main-2 .loc-add .add-line a {
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    color: #1f1f1f;
}

.contact-main-2 .loc-add .icon i {
    font-size: 18px;
    background-color: var(--bg-color);
    color: #fff;
    padding: 15px 17px;
    border-radius: 50%;
}

.contact-main-2 .contact-pno .add-line a {
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    color: #1f1f1f;
}

.contact-main-2 .contact-pno .icon i {
    font-size: 18px;
    background-color: var(--bg-color);
    color: #fff;
    padding: 15px 15px;
    border-radius: 50%;
}

.contact-main-2 .address {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 320px;
    border-radius: 10px;
    background-color: #fff;
}

.contact-map {
    margin-bottom: -10px;
}
i.fa-solid.fa-arrows-rotate.text-dark.fa-2x.pt-1 {
    margin-left: 20px;
}

.li-sub {
    font-size: 18px;
    font-family: "Montserrat", serif;
}



.w-100{height:auto;}

.modal-lg{width:750px}.modal-dialog{margin:7% auto}.inq-btn-home{position:fixed;top:300px;right:10px;width:45px;height:50px;z-index:11}.modal{z-index:999999!important}.modal-header{padding:10px 15px 0 15px;background-color:#373435}.modal-title{font-size:18px;color:#fff;text-align:left;padding-bottom:9px}.modal-body{padding:0 15px 10px 15px}.capside{float:left;margin-top:25px}.close{position:absolute;right:16px;top:15px;font-size:28px;color:#fff!important}.pop-img{margin-top:10%;margin-bottom:20px;width:300px;height:auto}button.close{-webkit-appearance:none;cursor:pointer;background:0 0;border:0;background-color:#b52414!important;padding:6px 15px;margin-top:-14px!important;position:absolute;opacity:1;color:#fff!important}@media only screen and (max-width:768px){.modal-lg{width:75%;margin:15px auto}.dmo{display:none}.modal-footer{padding:15px 21px;text-align:right;border-top:none;margin-top:-72px;position:relative;z-index:999;width:120px;float:right}.inq-btn-home img{width:30px; height:auto;}.moClose{display:none;}.modal-body{padding: 0 15px 45px 15px;}.modal-dialog{margin:15% auto}}


/* font-family: "Roboto Slab", serif; */
/*  font-family: "Outfit", serif;      */
/*  font-family: "Montserrat", serif;      */