* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none
}

:root {
    --main-color: #000000;
    --bg-color: #BCBCBC;
}

header.sticky-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1020
}

.sec-1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ddf0ff
}

header.scrolled {
    backdrop-filter: blur(10px);
    background-color: #131313bb !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

header {
    background-color: #000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 4px 30px rgb(0 0 0 / .1);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between
}

.logo {
    flex: 2;
    display: flex;
    align-items: center
}

.logo a {
    text-decoration: none;
    font-size: 26px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    width: 170px;

}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li a::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: 15px;
    width: 0%;
    height: 2px;
    background-color: #F6BA04;
    transition: width 0.3s ease
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #906F04;
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #F6BA04;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: var(--main-color);
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;

    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    right: 100%;
    top: 0
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #906F04;
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1024px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 430px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #000;
        left: 0;
        top: 40px;
        height: 100vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important;
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: var(--main-color);
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .logo img {
        width: 63%
    }

    .NavMenu {
        top: 83px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }
}

@media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
}

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 75% !important
    }

    .NavMenu {
        top: 81px
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: auto
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}

.head h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #202020;
    font-size: 32px;
    font-weight: 600;
    line-height: normal
}

.head h4 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #202020;
    font-size: 30px;
    font-weight: 600;
    line-height: normal
}

.head h5 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: normal
}

.main-para p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400;
}

.main-para a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 700;
    color: #A80002;
    letter-spacing: 0;
    text-decoration: none;

}


.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F6BA04;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #141414;
    line-height: 1.6;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.image-card {
    flex: 0 0 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0.3;
}

/* CSS */
.button-74 {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 30px;
    box-shadow: #000000 4px 4px 0 0;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding: 0 18px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-74:hover {
    background-color: #fff;
}

.button-74:active {
    box-shadow: #000000 2px 2px 0 0;
    transform: translate(2px, 2px);
}

@media (min-width: 768px) {
    .button-74 {
        min-width: 120px;
        padding: 0 25px;
    }
}

.sec-img img {
    width: 100%
}

.right-ok {
    background-image: url(../webp/right-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.wrong-icon {
    background-image: url(../webp/wrong-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.modal-lg {
    width: 750px
}

.modal-dialog {
    margin: 7% auto
}

.inq-btn-home {
    position: fixed;
    top: 250px;
    left: 10px;
    width: 45px;
    height: 50px;
    z-index: 1111
}

.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: 100%;
    height: auto
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #b52414 !important;
    padding: 1px 10px 17px 10px !important;
    margin-top: -15px !important;
    position: absolute;
    opacity: 1;
    color: #fff !important
}

button.btn.moClose {
    background-color: #b52414 !important;
    color: #fff !important
}

@media only screen and (max-width:425px) {
    .footer-divider.border-top.py-3 {
        text-align: center !important
    }

    .contact-main-2.py-5 {
        padding-top: 0 !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
    }
}

.form-group {
    margin: 15px 0 !important
}

.form-group input {
    border-left: 5px solid var(--main-color)
}

.form-group label {
    color: var(--bg-color);
    line-height: 1.75em;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.75em;
    letter-spacing: 0;
    text-transform: initial;
    line-height: 1.6em;
    font-weight: 400;
    margin-top: 5px
}

.form-group textarea {
    border-left: 5px solid var(--main-color)
}

.form-group select {
    border-left: 5px solid var(--main-color)
}

/* footer */
footer {
    background-color: #000;
}

.footer-divider.border-top.py-3 {
    background-color: #00073c;
}

.footer-link {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #d9d9d9;
}

.Submit-box {
    background-color: var(--main-color);
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important;

}

p.h5.mb-4.position-relative {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.Submit-box:hover {
    background-color: var(--main-color);
    border: none !important
}

.form-group input::placeholder {

    font-size: 16px
}

/* Footer Styles */
.hover-text-white:hover {
    color: white !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.footer-link-hover:hover::before {
    content: '→';
    margin-right: 5px;
}

/* Social icon hover effect */
.bg-social-hover:hover {
    background-color: #cc3300 !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Download button hover effect */
.btn-outline-light:hover {
    background-color: #cc3300 !important;
    border-color: #cc3300 !important;
}

/* Animation for footer columns */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to columns with delays */
.col-md-6.col-lg-3:nth-child(1) {
    animation: fadeInUp 0.5s ease 0.1s both;
}

.col-md-6.col-lg-3:nth-child(2) {
    animation: fadeInUp 0.5s ease 0.2s both;
}

.col-md-6.col-lg-3:nth-child(3) {
    animation: fadeInUp 0.5s ease 0.3s both;
}

.col-md-6.col-lg-3:nth-child(4) {
    animation: fadeInUp 0.5s ease 0.4s both;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .row.g-4 [class^="col-"] {
        margin-bottom: 2rem;
    }

    .row.g-4 [class^="col-"]:last-child {
        margin-bottom: 0;
    }

    .border-top.border-secondary.pt-4>div {
        text-align: center !important;
        margin-bottom: 1rem;
    }

    .border-top.border-secondary.pt-4>div:last-child {
        margin-bottom: 0;
    }

    .d-flex.justify-content-md-end {
        justify-content: center !important;
    }
}

span.position-absolute.bottom-0.start-0.bg-danger {
    bottom: -8px !important;
    background-color: #F6BA04 !important;
}

.contact-section {
    background: #f2f2f2;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: left;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card span {
    font-size: 26px;
    color: var(--main-color);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-card p {
    color: #333;
    text-decoration: none;

    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.contact-card a {
    color: #333;
    text-decoration: none;

    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card b {
    color: #000;
}

/* .contact-map {
    margin-bottom: -10px
} */

.breadcrumb-main {
    position: relative;
    background-color: #DAA801;
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.bread-links a {
    font-size: 16px;
    line-height: 1.6em;
   
    color: #000;
    text-decoration: none;
}

.bread-links p {
    color: #000;
    display: inline-block;
     font-weight: 500;
}

.brd-txt {
    color: #000 !important
}

.bread-links {
    display: flex
}

.purple {
    margin-top: 10px;
    border-bottom: 1px solid #a0a0a0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 28px !important
}

.page_text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.page_content {
    line-height: 10px
}

.ball-valve a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 20px;
    line-height: 28px;

}


.social a {
    border-radius: 50% !important;
    padding: 2px;
    background-color: #fff !important;
    margin: 10px;
}

.product-list li {
    background-image: url(../webp/card-arrow.webp);
    background-repeat: no-repeat;
    vertical-align: middle;
    padding-left: 30px;
    background-position: 5px 4px;
    background-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.textile-machine-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}


.section-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
}

/* Feature Cards */
.feature-cards {
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    text-align: center;
}

.card-img-container img {
    width: 60%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .card-img-container img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.card-body {
    padding: 30px;
}

.card-title {
    color: #c83438;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.card-subtitle {
    color: #1b1b1a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-link {
    color: #c83438;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: #a32800;
    text-decoration: underline;
}

/* Sulzer Section */
.sulzer-section {
    margin-top: 60px;
}

.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.section-subtitle {
    color: #c83438;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.highlight-text {
    color: #1b1b1a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.image-card {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    /* display: block; */
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c83438;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-btn a {
    color: white;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #a32800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 52, 56, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.8rem;
    }

    .card-title,
    .section-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .textile-machine-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .card-body {
        padding: 20px;
    }
}

.sec-img-2 img {
    width: 75%;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 100%;
    height: 100%;

}

.contact-image {
    flex: 1 1 30%;
    text-align: center;
}

.contact-image img {
    max-width: 100%;
    border-radius: 10px;
}

.contact-card h3,
.contact-card h4 {
    margin-bottom: 10px;
    color: #2b3e50;
    border-left: 5px solid var(--main-color);
    padding-left: 10px;
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 20px;
}


.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card li {
    margin-bottom: 10px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #333;

}

.contact-card li i {
    color: #002d5e;
    margin-right: 8px;
    font-size: 22px;
}

.contact-card a {
    color: #1f1f1f;
    text-decoration: none;

}

.contact-card a:hover {
    text-decoration: underline;
}

.bg-color {
    background-color: #ddf0ff;
}

.location {
    background: url(../webp/location.webp) no-repeat;
    list-style: none;
    padding-left: 35px;
    background-position: -4px 4px;
    background-size: 30px;
    font-family: 'Trebuchet MS', sans-serif
}

.phone {
    background: url(../webp/phone.webp) no-repeat;
    list-style: none;
    padding-left: 35px;
    background-position: 5px 2px;
    background-size: 22px;
    font-family: 'Trebuchet MS', sans-serif
}

.mail {
    background: url(../webp/mail.webp) no-repeat;
    list-style: none;
    padding-left: 35px;
    background-position: 5px 2px;
    background-size: 22px;
    font-family: 'Trebuchet MS', sans-serif
}

.mail a:hover,
.location a:hover,
.phone a:hover {
    color: #ffffff;
}

.sitemap-sec a {
    font-weight: 400;
}

.contact-section {
    background: #f2f2f2;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
}


.contact-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card span {
    font-size: 26px;
    color: var(--main-color);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.contact-card p {
    color: #333;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    font-weight: 500;
}


.contact-card a:hover {
    text-decoration: underline;
}

.contact-card b {
    color: #000;
}

@media (max-width:1024px) {
    .NavMenu li a::after {
        background-color: transparent;
    }

    .ftr-quick ul {
        padding-left: 0
    }

    .ftr-logo img {
        width: 80%
    }

    .head h1 {
        font-size: 40px
    }

    .head h2 {
        font-size: 30px
    }

    .copy-sec p {
        text-align: center !important;
    }

    .sitemap-sec .d-flex.justify-content-md-center {
        display: block !important;
        text-align: center;
    }
    .d-flex.align-items-center.justify-content-between.main-para.border-top.border-secondary.pt-4{
        flex-direction: column;
    }
    .image-card img {
    width: 100% !important;
    }
}

@media (max-width:768px) {
    .head h1 {
        font-size: 40px
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto
    }

    .mission-main p {
        margin-top: 20px
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center
    }

    .bread-links a {
        letter-spacing: 2px
    }


}


@media (max-width:425px) {
    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }

    .head h1 {
        font-size: 24px;
    }

    .bread-links a {
        letter-spacing: 2px
    }

    .bread-links {
        align-items: center
    }

    .head h3 {
        font-size: 30px
    }

    .head h2 {
        font-size: 32px
    }

    .head h2 {
        font-size: 26px
    }

    .head h3 {
        font-size: 24px
    }

    .pump-manuf {
        padding: 10px
    }

    .breadcrumb-main {
        height: 250px
    }

    .bread-links a {
        letter-spacing: 1px
    }

    .NavMenu {
        width: 425px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .bread-links {
        display: inline-flex;
        flex-wrap: wrap;
        white-space: normal;
        line-height: 1.5
    }
}

@media (max-width:375px) {
    .NavMenu {
        width: 375px;
    }

}

@media (max-width:320px) {
    .bread-links a {
        letter-spacing: 1px
    }
/* 
    .NavMenu li ul li a {
        max-width: 250px !important;
    } */

    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 28px
    }

    .head h3 {
        font-size: 24px
    }

    .NavMenu {
        width: 100%
    }

    .mail a {
        word-wrap: break-word;
    }

    .NavMenu li a {
        padding: 8px 12px;
    }


}


.powered-by {text-align: center;}

#chatBtn {
position: fixed;
bottom: 10px;
right: 10px;
background-color: black;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 30px;
z-index: 9999;
}
