* {
    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
}


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

header {
    background-color: #fff;
    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: #000000;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    width: 300px;
}

.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: #000000;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}


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

.NavMenu li a:hover {
    color: #1d1d1d;
}

.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 #2f294d;
    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 #2f294d;
    }

    .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: #1f1b4c;
        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: #fff;
        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: 80%
    }

    .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: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;
    margin-top: 15px
}

.head h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 32px;
    font-weight: 600;
    line-height: normal
}

.head h4 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 26px;
    font-weight: 600;
    line-height: normal
}

.head h5 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', 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: #AF1313;
    letter-spacing: 0;
    text-decoration: none;

}

.valve-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-top: 1px solid #e9ecef;
}

.valve-intro {
    border-left: 4px solid #211D50;
    padding-left: 1.5rem;
}

.valve-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.valve-image-container:hover {
    transform: translateY(-5px);
}

.valve-description {
    line-height: 1.8;
    color: #495057;
}

.valve-application {
    border-top: 3px solid #AF1313;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .valve-intro {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid #211D50;
        padding-bottom: 1rem;
    }
}

.heading-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #AF1313, #211D50);
}

.valve-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.valve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.valve-img-container {
    position: relative;
    overflow: hidden;
}

.valve-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

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

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

.valve-content {
    position: relative;
}


.valve-title {
    color: #333;
    font-weight: 600;
}

.valve-title a {
    color: inherit;
    text-decoration: none;
}

.valve-description {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .valve-img-container {
        height: auto;
    }
}

.advantages-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.advantage-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item {
    padding: 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F21E26, #1F1A4A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F21E26, #1F1A4A);
    border-radius: 2px;
}

.principle-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #482A7E;
}

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

.principle-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F21E26, #1F1A4A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.principle-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.principle-content {
    padding-left: 0;
}

.principle-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.valve-info-section {
    background-color: #ede9ff;
}

.button-56 {
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #111;
    border-radius: 8px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-56:after {
    background-color: #111;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
}

.button-56:hover:after {
    transform: translate(0, 0);
}

.button-56:active {
    background-color: #ffdeda;
    outline: 0;
}

.button-56:hover {
    outline: 0;
}

.sec-img img {
    width: 100%;
    height: auto !important;
}

.applications-section {
    background-repeat: no-repeat;
    background-size: cover;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(249, 163, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 163, 39, 0.3);
}

.icon-box img {
    width: 40px;
    height: 40px;
}

.application-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.application-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.accordion-button {
    font-weight: 600;
    background-color: white;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    color: #482A7E;
    background-color: rgba(72, 42, 126, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(72, 42, 126, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23482A7E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F9A327'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* footer */
footer {
    background-color: #17123e;
}

.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: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.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);
    }
}

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

.wrong-icon {
    background-image: url(../img/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: 300px;
    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-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;

}

.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);
    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;

    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: #aea9c7;
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.bread-links a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6em;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center
}

.bread-links p {
    color: #000;
}

.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;

}

.mv-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission {
    border-color: #00073c;
}

.vision {
    border-color: #482A7E;
}

.values {
    border-color: #AF1313;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.mv-icon i {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 80px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.3s;
}

.mission .icon-bg {
    background: linear-gradient(135deg, #00073c, #3a51ff);
}

.vision .icon-bg {
    background: linear-gradient(135deg, #482A7E, #6a4ba8);
}

.values .icon-bg {
    background: linear-gradient(135deg, #AF1313, #ff4444);
}

.mv-card:hover .icon-bg {
    transform: scale(1.1);
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.mv-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.mv-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.mv-wave svg {
    width: 100%;
    height: 100%;
}

.mission .mv-wave path {
    fill: rgba(249, 163, 39, 0.1);
}

.vision .mv-wave path {
    fill: rgba(72, 42, 126, 0.1);
}

.values .mv-wave path {
    fill: rgba(11, 108, 20, 0.1);
}

.quality-control-section {
    background-color: #f8f9fa;
}

.qc-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}


.qc-main-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.qc-process-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #482A7E;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.qc-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(72, 42, 126, 0.05);
    line-height: 1;
}

.qc-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-right: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.qc-step-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.qc-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(72, 42, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #482A7E;
    font-size: 20px;
}

.product-feature-section {
    background-color: #f8f9fa;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.product-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F9A327, #482A7E);
    margin-bottom: 20px;
}

.product-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-highlights {
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.highlight-item i {
    color: #0B6C14;
    margin-right: 10px;
    font-size: 18px;
}

.product-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

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

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.crane-card {
    background: #efefef;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0A1A3A;
}

.crane-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.icon-clr {
    color: #d30004;
    margin-right: 7px;
}

.main-para ul li {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.text-primary {
    color: #482A7E !important;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(72, 42, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #482A7E;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 20px;
}

.feature-text {
    color: #555;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.valve-products-section {
    background-color: #f8f9fa;
}

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

.highlight {
    color: #482A7E;
    position: relative;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F9A327, #482A7E);
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    /* height: 250px; */
}

.product-page .product-image-container {
    height: 250px;

}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 42, 126, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s;
}

.product-card:hover .product-link {
    transform: scale(1.2);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #211D50, #E81F25);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 163, 39, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }


}

@media (max-width: 768px) {
    .feature-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .product-card {
        padding: 20px;
    }

    .product-title {
        font-size: 1.5rem;
    }


}

@media (max-width: 768px) {
    .qc-main-title {
        font-size: 1.8rem;
    }

    .qc-process-card {
        padding: 25px;
    }

    .qc-step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mv-card {
        padding: 25px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .mv-icon i {
        font-size: 30px;
        line-height: 70px;
    }

    .mv-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

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

@media (min-width: 768px) {
    .button-56 {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .principle-title {
        font-size: 1.2rem;
    }

    .principle-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .principle-content {
        padding-left: 55px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .advantage-text {
        font-size: 1rem;
    }
}

@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: 34px
    }

    .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;
    }

    .product-card {
        padding: 10px;
    }

    .product-image {
        width: 85% !important;
    }
}

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

    .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
    }

    .product-content {
        padding: 15px;
        text-align: center;
    }

    .head h3 {
        font-size: 28px;
    }

    .tab-width {
        width: 100% !important;
    }
}


@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
    }

    .qc-step-title {
        font-size: 1.1rem;
    }
}

@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;
    }


}