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

html, body {
    overflow-x: hidden;
  }
  

/* Global typography */
h1, h2, h3, h4, h5, h6 { font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif }
p, .main-para p, .product-content p { font-family: Verdana, Geneva, Tahoma, sans-serif }

:root {
    --main-color: #175A8C;
    --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: #ffffffbb !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);
    padding: 8px 0; /* add minor top/bottom space */
}

/* Consistent header vertical padding on all devices (including sticky) */
header, header.sticky-top { padding: 8px 0 }
@media (max-width:1024px){ header, header.sticky-top { padding: 10px 0 } }
@media (max-width:768px){ header, header.sticky-top { padding: 12px 0 } }

@media(max-width:1024px) {
    header { padding: 8px 3% } /* keep small vertical padding on tablet */
}

@media(max-width:768px){
    header { padding: 10px 3% } /* slightly more on mobile for touch */
}

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: 100%;
    padding: 0px 0
}

.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: var(--main-color);
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    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: var(--main-color);
    transition: width 0.3s ease
}

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

/* .NavMenu li a:hover {
    color: var(--main-color)
} */

.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 var(--main-color);
    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-family: Verdana, Geneva, Tahoma, sans-serif;
    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 var(--main-color)
    }

    .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: var(--main-color);
        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 a {
        display: block;
        padding: 20px 14px;
        font-size: 16px;
        text-decoration: none;
        text-transform: capitalize;
        color: #ffffff;
        position: relative;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        letter-spacing: 1px;
        font-weight: 500;
        transition: color 0.3s ease
    } */

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

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

    .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: 90px
    }

    .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: 80px
    }
}

.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: var(--main-color);
    font-size: 46px;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
    text-align: center
}

.head h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--main-color);
    font-size: 32px;
    font-weight: 600;
    line-height: normal
}

.head h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--main-color);
    font-size: 28px;
    font-weight: 600;
    line-height: normal
}

.head h4 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: var(--main-color);
    font-size: 30px;
    font-weight: 600;
    line-height: normal
}

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

.main-para {
    text-align: justify;
}

.main-para a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 0;
    text-decoration: none
}

.product-sec {
    background-color: #f8f9fa;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 50px;
    border-style: solid;
    border-width: 15px 15px 15px 15px;
    border-color: #FFF;
    border-radius: 50px 50px 50px 50px;
    box-shadow: 0 4px 40px 0 rgb(0 0 0 / .06)
}

.sec-img img {
    width: 100%
}

/* About two images layout with dotted background */
.about-two-img {
    position: relative
}

.two-image-stack {
    position: relative;
    max-width: 560px;
    margin-left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    margin-top: 20px
}



.two-image-stack .img-1,
.two-image-stack .img-2 {
    position: relative;
    z-index: 1
}

.two-image-stack .img-1 { flex: 1 1 42%; margin-top: 150px }
.two-image-stack .img-2 { flex: 1 1 58% }

.two-image-stack .img-1 img,
.two-image-stack .img-2 img {
    width: 100%;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgb(0 0 0 / .10);
    background-color: aliceblue;
}

/* horizontal gap already creates separation; no overlap */

@media (max-width:768px) {
    .two-image-stack { margin: 0 auto; align-items: center; gap: 22px; flex-direction: column; max-width: 480px }
    .two-image-stack .img-1, .two-image-stack .img-2 { width: 100% ; margin-top:0px}
}

/* Services section */
.services-section {
    background: linear-gradient(180deg, #eef4f9 0%, #ffffff 100%)
}
.section-eyebrow {
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: .5px
}
.services-title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #1a6399;
    font-weight: 700;
    line-height: 1.2
}
.services-subtitle {
    color: #6c757d;
    font-size: 16px
}
.service-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgb(0 0 0 / .06)
}
.icon-wrap .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e6f4ff;
    color: var(--main-color);
    font-size: 26px;
    overflow: hidden
}
.icon-wrap .icon-circle .icon-img { width: 34px; height: 34px; object-fit: contain }
.service-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600
}

/* Animated heading line with moving square */
.heading-line {
    position: relative;
    background-color: #175A8C; /* blue line */
    height: 4px;
    width: 90px;
    margin: 10px auto 0 auto;
}
.heading-line::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #175A8C;
    border-radius: 3px;
    animation: slide-square 2.4s ease-in-out infinite;
}
@keyframes slide-square {
    0% { left: 0; }
    50% { left: calc(100% - 10px); }
    100% { left: 0; }
}

/* Valve tools section */
.valve-tools { position: relative; overflow: hidden; background: radial-gradient(1000px 400px at 10% 0%, #eef4f9 0%, #ffffff 60%) }
.valve-tools .container { position: relative; z-index: 1 }
.valve-tools .bg-figure { position: absolute; pointer-events: none; z-index: 0; opacity: .18; filter: drop-shadow(0 6px 18px rgba(0,0,0,.08)) }
.valve-tools .bg-figure.top-right { right: -80px; top: -60px; transform: rotate(-10deg) }
.valve-tools .bg-figure.bottom-left { left: -140px; bottom: -120px; transform: rotate(8deg) }
.valve-tools .bg-figure img { width: 620px; height: auto }
.valve-tools .card { border-radius: 14px }
.valve-tools .feature-card {
    border: 1px solid #e8eef6;
    box-shadow: 0 10px 30px rgb(0 0 0 / .06);
    transition: transform .3s ease, box-shadow .3s ease
}
.valve-tools .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgb(0 0 0 / .12)
}
.check-list {
    padding-left: 0;
    margin: 0
}
.check-list li {
    list-style: none;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #212529;
    line-height: 26px;
    text-align: justify;
}
.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #e6f4ff;
    box-shadow: inset 0 0 0 2px #175A8C
}

/* Simple reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s ease }
.reveal.revealed { opacity: 1; transform: translateY(0) }

@media (max-width:768px) {
    .valve-tools .bg-figure img { width: 420px }
    .valve-tools .bg-figure.top-right { right: -140px; top: -140px }
    .valve-tools .bg-figure.bottom-left { left: -200px; bottom: -200px }
}

/* Enhanced Product Slider */
.product-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 12px;
}

.product-slider {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.product-slider:hover {
    animation-play-state: paused;
}

.product-slide {
    flex: 0 0 350px;
    min-width: 0;
}

.product-card-enhanced {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 10px;
}

.product-card-enhanced:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23,90,140,0.8), rgba(23,90,140,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-overlay .btn {
    background: #fff;
    color: var(--main-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    background: var(--main-color);
    color: #fff;
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h4 {
    color: #012b14;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.product-content p {
    color: #212529;
    line-height: 1.6;
    font-size: 16px;
    flex: 1;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(23, 90, 140, 0.3);
}

.slider-nav:hover {
    background: #0d4a73;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(23, 90, 140, 0.4);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--main-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-slide {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .product-slider-container {
        margin: 0 10px;
        overflow: hidden;
    }
    
    .product-slider {
        padding: 0 10px;
    }
    
    .product-slide {
        flex: 0 0 280px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-image img {
        padding: 8px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-content h4 {
        font-size: 18px;
    }
    
    .product-content p {
        font-size: 16px;
    }
}

.brd-img {
    border: 5px solid #c9d3df;
    border-radius: 10px;
    padding: 10px
}

.prd-img img {
    width: 100%;
    border: 5px solid #c9d3df;
    border-radius: 10px
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border: 1px solid #eaeaea;
    border-radius: 10px
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgb(0 0 0 / .1)
}

.prd-img {
    position: relative;
    overflow: hidden
}

.prd-img img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: transform 0.3s ease;
    border-radius: 10px
}

.product-card:hover .prd-img img {
    transform: scale(1.05)
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(2 38 92 / 57%);
    ;
    opacity: 0;
    transition: opacity 0.3s ease
}

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

.product-title {
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

.product-title:hover {
    color: var(--main-color)
}

a.btn.rounded-pill.px-4.py-2 {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    background-color: var(--main-color);
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    letter-spacing: .8px;
    padding: 10px 7px
}

.btn:focus {
    outline: 0;
    box-shadow: none !important
}

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

/* Reduce logo size in enquiry modal (first image inside .dmo column) */
.dmo .pop-img:first-of-type {
    width: 70%;
    max-width: 260px;
    margin-top: 5%;
}

@media (max-width: 576px) {
    .dmo .pop-img:first-of-type {
        width: 60%;
        max-width: 200px;
        margin-top: 2%;
    }
}

button.close {
    -webkit-appearance: none;
    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)
}

.Submit-box {
    background-color: var(--main-color);
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

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

.form-group input::placeholder {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px
}

#v_country,
.form-group input {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.bg-industrial-blue {
    background: linear-gradient(135deg, var(--main-color) 0%, #0E4470 100%);
}

.text-industrial-orange {
    color: #fff
}

.bg-industrial-orange {
    background-color: #fff
}

.footer-link:hover {
    color: #ffffffb2
}

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

.footer-divider {
    border-color: rgb(255 255 255 / .1)
}

.footer-icon {
    width: 40px;
    height: 40px;
    background-color: rgb(255 255 255 / .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s
}

.footer-icon:hover {
    background-color: #0259A1;
    color: #fff
}

.footer-heading {
    position: relative;
    padding-bottom: .75rem;
    margin-bottom: 1.5rem;
    font-size: 18px;
    font-weight: 500;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 4px;
    background-color: #fff
}

.bg-industrial-blue ul li {
    margin-bottom: 7px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff
}

.bg-industrial-blue p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff
}

.bg-industrial-blue .d-flex a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
    text-decoration: none
}

.ftr-logo {
    padding: 15px 10px;
    border-radius: 10px;
    margin-bottom: 20px
}

.ftr-logo img {
    width: 100%
}

.icons-top .icon img {
    background-color: #fff;
    border-radius: 50%
}

.ftr-quick ul li {
    background: url(../img/ftr-arrow.webp) no-repeat;
    list-style: none;
    padding-left: 25px;
    background-position: 3px 4px;
    background-size: 16px
}

.contact-main-2 .contact-pno .add-line p {
    font-size: 16px;
    line-height: 28px;
    color: #1f1f1f;
    font-weight: 400
}

.contact-main-2 .loc-add .add-line a {
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 400
}

.address .loc-add .icon img {
    width: 60px;
    background-color: var(--main-color);
    padding: 10px 10px;
    border-radius: 50%
}

.contact-main-2 .contact-pno .add-line a,
.add-line p {
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 400;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contact-main-2 .contact-pno .icon img {
    width: 60px;
    background-color: var(--main-color);
    padding: 10px 10px;
    border-radius: 50%
}

.contact-main-2 .address {
    padding: 25px;
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    height: 100%;
    border-radius: 10px;
    background-color: #fff
}

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

.contact-map-wrapper {
  max-width: 1200px;
  margin: 0 auto 32px auto;
  padding: 0;
}
.contact-map-embed {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(23,90,140,0.1);
}
@media (max-width: 991px) {
  .contact-map-wrapper {
    max-width: 100%;
    padding-left: 0 !important; padding-right: 0 !important;
  }
  .contact-map-embed {
    border-radius: 12px;
    height: 350px !important;
  }
}
@media (max-width: 575px) {
  .contact-map-embed {
    height: 230px !important;
    border-radius: 8px;
  }
}

.breadcrumb-main {
    position: relative;
    background-color: #d4ffe8;
    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
}

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

.page_content {
    line-height: 10px
}

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

.trg-img img {
    width: 85px;
    height: 85px
}

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

.thead-color {
    background-color: var(--main-color);
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px
}

tbody td {
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.price-tag {
    margin: 15px 0 !important;
    font-size: 18px;
    color: var(--main-color);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.card-header {
    background-color: var(--main-color);
    color: #fff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 600
}

.card-body li {
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #212529
}

i.bi.bi-check-circle-fill.me-2 {
    color: var(--main-color)
}

.area-name p {
    margin: 7px;
    padding: 10px;
    border-radius: 3px;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: var(--main-color);
    color: #fff
}

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

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

    .ftr-logo img {
        width: 80%
    }

    .prd-manuf.py-5 {
        padding-top: 0 !important
    }

    .prd-manuf.py-5 .row {
        align-items: center
    }

    .head h1 {
        font-size: 40px
    }

    .head h2 {
        font-size: 30px
    }

    .ftr-logo img {
        width: 55%
    }

    .col-xl-3.col-lg-6.col-md-6.ftr-quick {
        margin-bottom: 20px
    }

    .card .main-para p {
        text-align: center
    }
}

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

    .about-main-page .row {
        flex-direction: column-reverse
    }

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

    .ftr-logo img {
        width: 75%
    }

    .main-btn.pt-4.text-center,
    .ask-btn.mt-4.text-center {
        margin-bottom: 20px
    }

    .card.shadow-sm.border-0 {
        margin-bottom: 10px
    }
}
/*  Mobile view fix only */
@media (max-width: 768px) {
    /* Set correct mobile order */
    .about-two-img {
      display: flex !important;
      flex-direction: column !important;
    }
  
    /* Content second */
    .about-two-img .col-lg-7 {
      order: 2;
    }
  
    /* Image last and no top gap */
    .about-two-img .col-lg-5 {
      order: 3;
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
  
    /* Remove gutter and space */
    .about-two-img.g-4 {
      --bs-gutter-y: 0 !important;
      --bs-gutter-x: 0 !important;
      margin-top: 0 !important;
    }
  
    /* Remove extra space inside wrapper */
    .two-image-stack {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }
  
    .two-image-stack img {
      margin-top: 0 !important;
      display: block;
    }
  
    /* Slightly reduce section top padding if needed */
    .prd-manuf.py-5 {
      padding-top: 10px !important;
    }
  }
   /* --- SECOND SECTION (bg-light) --- */
  .prd-manuf .bg-light .row {
    display: flex !important;
    /* flex-direction: column !important; */
  }

  /* content first */
  .prd-manuf .bg-light .col-lg-8 {
    order: 1;
  }

  /* image after content */
  .prd-manuf .bg-light .col-lg-4 {
    order: 2;
    margin-top: 15px !important; /* optional: small gap below content */
  }
  
  

@media (max-width:425px) {
    .product-sec {
        margin: 0
    }

    .main-btn.pt-4.text-center,
    .ask-btn.mt-4.text-center {
        margin-bottom: 20px !important
    }

    .ftr-logo {
        background-color: #0000;
        padding: 0;
        border-radius: 0
    }

    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }

    .head h1 {
        font-size: 34px
    }

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

    .bread-links {
        align-items: center
    }

    .head h3 {
        font-size: 30px
    }

    .head h2 {
        font-size: 32px
    }

    .head h1 {
        font-size: 36px
    }

    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 30px
    }

    .head h3 {
        font-size: 24px
    }

    .pump-manuf {
        padding: 10px
    }

    .breadcrumb-main {
        height: 250px
    }

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

    .ftr-logo img {
        width: 55%
    }

    .mission .row .col-12 {
        flex-direction: column !important;
        text-align: center;
        justify-content: center
    }

    .mission-box h3 {
        margin-top: 15px
    }

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

/* Enhanced footer styles */
/* .footer-card { 
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
} */

.bg-industrial-blue .footer-heading { 
    position: relative; 
    padding-bottom: 8px; 
    margin-bottom: 16px; 
}
.bg-industrial-blue .footer-heading::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 64px; 
    height: 3px; 
    background: #fff; 
    opacity: .8; 
    border-radius: 2px; 
}

.footer-links-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0,1fr)); 
    gap: 8px 20px; 
}
@media (max-width:768px){
    .footer-links-grid { grid-template-columns: 1fr; }
}

.footer-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    color: #fff; 
    opacity: .9; 
}
.footer-link::before { 
    content: '\25A0'; 
    font-size: 16px; 
    transform: translateY(-1px); 
    color: #9ED0FF; 
}
.footer-link:hover { 
    color: #9ED0FF; 
    text-decoration: none; 
    opacity: 1; 
}

.footer-divider { 
    background: rgba(255,255,255,0.04); 
}
/* Footer text color overrides to black */
.bg-industrial-blue,
.bg-industrial-blue p,
.bg-industrial-blue ul li,
.bg-industrial-blue .footer-heading { color: #ffffff }
.bg-industrial-blue .footer-link { color: #ffffff }

.bg-industrial-blue .footer-heading::after { background: #ffffff }
.bg-industrial-blue .footer-divider p,
.bg-industrial-blue .footer-divider a,
.bg-industrial-blue .footer-divider .text-white { color: #ffffff !important }
/* Footer background color */
.bg-industrial-blue { background: #1a6399 }

.bg-industrial-blue .ftr-logo img{
    background: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


/* Footer logo: contrast + responsive sizing */
.bg-industrial-blue .ftr-logo { padding:8px; border-radius:10px; display:inline-block }
.bg-industrial-blue .ftr-logo img { width:88px; height:auto; display:block; max-width:100% }
@media (min-width:768px){ .bg-industrial-blue .ftr-logo img { width:104px } }
@media (min-width:1200px){ .bg-industrial-blue .ftr-logo img { width:120px } }

/* Hero Section Styling */
.hero-section {
    background: linear-gradient(135deg, var(--main-color) 0%, #0E4470 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 90, 140, 0.8);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.breadcrumb-nav {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #e6f4ff;
}

.breadcrumb-nav span {
    color: #e6f4ff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .breadcrumb-nav {
        font-size: 16px;
    }
}

/* Zig-zag product layout styles - specific to automatic-control-valve page */
.automatic-control-valve .product-content {
    padding: 20px 0;
    text-align: justify;
}

.automatic-control-valve .product-content h2 {
    margin-bottom: 20px;
    color: var(--main-color);
    text-align: justify;
}

/* Zig-zag product image styles - specific to automatic-control-valve page */
.automatic-control-valve .product-image {
    padding: 20px 0;
    height: auto;
    min-height: auto;
    background: transparent;
}

.automatic-control-valve .product-image img {
    width: 80%;
    height: auto;
    max-width: 400px;
    display: block;
    object-fit: contain;
    max-height: none;
    margin: 0 auto;
}

.ask-btn {
    text-align: center;
}

.ask-btn .btn {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ask-btn .btn:hover {
    background-color: #0d4a73;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 90, 140, 0.3);
}

.automatic-control-valve .py-5 .row.align-items-center:nth-of-type(2):has(.product-content) {
    background-color: #f2f8fc;
    border-radius: 15px;
    padding: 30px 15px;
}

.automatic-control-valve .py-5 .row.align-items-center:nth-of-type(4):has(.product-content) {
    background-color: #f2f8fc;
    border-radius: 15px;
    padding: 30px 15px;
}

.automatic-control-valve .py-5 .row.align-items-center:nth-of-type(6):has(.product-content) {
    background-color: #f2f8fc;
    border-radius: 15px;
    padding: 30px 15px;
}

/* Features List Styling - Different from regular content */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid var(--main-color);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    background: rgba(23, 90, 140, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f0f5f9 100%);
}

/* Specifications Grid - Modern Card Design */
.specifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Make spec items equal height in grid layouts */
.automatic-control-valve .row .col-lg-3,
.automatic-control-valve .row .col-lg-4,
.automatic-control-valve .row .col-md-6 {
    display: flex;
    flex-direction: column;
}

.automatic-control-valve .row .col-lg-3 .spec-item,
.automatic-control-valve .row .col-lg-4 .spec-item,
.automatic-control-valve .row .col-md-6 .spec-item {
    flex: 1;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--main-color), #0E4470);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.spec-item:hover::before {
    transform: scaleY(1);
}

.spec-icon {
    font-size: 28px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(23, 90, 140, 0.1), rgba(23, 90, 140, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
}

.spec-content {
    flex: 1;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.spec-content strong {
    display: block;
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.spec-content {
    color: #212529;
    font-size: 16px;
    line-height: 1.6;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.spec-sublist {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.spec-sublist li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.spec-sublist li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}

/* Responsive for specifications grid */
@media (max-width: 768px) {
    .specifications-grid {
        gap: 12px;
    }
    
    .spec-item {
        padding: 15px;
    }
    
    .spec-icon {
        font-size: 24px;
        min-width: 40px;
        height: 40px;
    }
    
    .spec-content strong {
        font-size: 16px;
    }
    
    .spec-content {
        font-size: 16px;
    }
}


/* Tablet and Large devices: Content + Ask Price button + Image */
@media (min-width: 769px) {
    .automatic-control-valve .ask-btn {
        text-align: center;
        margin-top: 20px;
    }
}

/* Mobile devices: Content → Image → Ask Price button */
@media (max-width: 768px) {
    .automatic-control-valve .product-content {
        padding: 15px 0;
        text-align: justify;
    }
    
    .automatic-control-valve .product-image {
        padding: 15px 0;
        margin-bottom: 10px;
    }
    
    .automatic-control-valve .product-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .automatic-control-valve .product-content p {
        font-size: 16px;
        line-height: 1.6;
        text-align: justify;
    }
    
    .automatic-control-valve .ask-btn {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    /* Force vertical stacking on mobile - content first, then image column */
    .automatic-control-valve .row {
        flex-direction: column !important;
    }
    
    .automatic-control-valve .col-lg-6,
    .automatic-control-valve .col-md-6 {
        order: unset !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure content column comes first */
    .automatic-control-valve .row .col-lg-6:first-child {
        order: 1 !important;
    }
    
    /* Ensure image column comes second */
    .automatic-control-valve .row .col-lg-6:last-child {
        order: 2 !important;
    }
}

.spec-item {
    background: #ffffff;
    border: 1px solid #e5e9f2;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .spec-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }
  
  .spec-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
  }
  
  .spec-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .spec-item ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  .spec-item ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .spec-item {
      text-align: left;
    }
    .spec-item h3 {
      font-size: 17px;
    }
    .spec-item ul li {
      font-size: 16px;
    }
  }

/* Importance Cards Styling */
.importance-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.importance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--main-color);
}

.importance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), #4a90e2);
}

.importance-icon {
    text-align: center;
    margin-bottom: 20px;
}

.importance-icon img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.importance-card:hover .importance-icon img {
    transform: scale(1.1);
}

.importance-title {
    color: var(--main-color);
    font-size: 20.8px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

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

.importance-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #212529;
    line-height: 1.6;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
}

.importance-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--main-color);
    font-weight: bold;
    font-size: 17.6px;
}

/* Responsive Design for Importance Cards */
@media (max-width: 768px) {
    .importance-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .importance-title {
        font-size: 19.2px;
        margin-bottom: 15px;
    }
    
    .importance-icon {
        margin-bottom: 15px;
    }
    
    .importance-icon img {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 576px) {
    .importance-card {
        padding: 20px 15px;
    }
    
    .importance-title {
        font-size: 17.6px;
    }
    
    .importance-points li {
        font-size: 14.4px;
        margin-bottom: 10px;
    }
}

/* Why Choose Control Valves Section Styling */
.why-choose-section {
    background-color: #ffffff; /* White background */
    padding: 60px 0;
}

.why-choose-title {
    color: #175A8C;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.why-choose-line {
    width: 80px;
    height: 3px;
    background-color: #175A8C; /* Dark blue accent line matching main color */
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.why-choose-description {
    color: #212529;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.why-choose-description:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-title {
        font-size: 28.8px;
        margin-bottom: 15px;
    }
    
    .why-choose-line {
        width: 60px;
        height: 2px;
        margin-bottom: 30px;
    }
    
    .why-choose-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .why-choose-title {
        font-size: 24px;
    }
    
    .why-choose-description {
        font-size: 15.2px;
        line-height: 1.6;
    }
}

/* Our Solutions for Oil & Gas Industry Section Styling */
.solutions-section {
    background-color: #f8f9fa; /* Light blue/off-white background */
    padding: 80px 0;
}

.solutions-title {
    color: #175A8C; /* Dark blue title */
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.solutions-line {
    width: 100px;
    height: 3px;
    background-color: #175A8C;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.solutions-subtitle {
    color: #212529;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.solutions-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-card {
    background: #f5f5f0; /* Light cream/beige background */
    border-radius: 25px; /* Oval/rounded shape */
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.solution-card-title {
    color: #175A8C; /* Dark blue title */
    font-size: 20.8px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.solution-card-description {
    color: #212529; /* Dark gray description */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify;
}

.solutions-illustration {
    padding: 20px;
    margin: 40px 0;
}

.solutions-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Design for Solutions Section */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .solutions-line {
        width: 80px;
        height: 2px;
        margin-bottom: 25px;
    }
    
    .solutions-subtitle {
        font-size: 17.6px;
    }
    
    .solutions-cards {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .solution-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    
    .solution-card-title {
        font-size: 19.2px;
        margin-bottom: 12px;
    }
    
    .solution-card-description {
        font-size: 16px;
    }
    
    .solutions-illustration {
        margin: 20px 0;
        order: -1; /* Move illustration to top on mobile */
    }
}

@media (max-width: 576px) {
    .solutions-title {
        font-size: 28.8px;
    }
    
    .solution-card {
        padding: 18px 12px;
        border-radius: 18px;
    }
    
    .solution-card-title {
        font-size: 17.6px;
    }
    
    .solution-card-description {
        font-size: 16px;
    }
}

/* Product images: border and subtle hover animation (product pages only) */
.product-section .product-image img {
    display: block;
    width: 100%;
    height: auto;
    padding: 6px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-section .product-image:hover img {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(23, 90, 140, 0.18);
    border-color: rgba(23, 90, 140, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .product-section .product-image img { transition: none; }
    .product-section .product-image:hover img { transform: none; }
}

.contact-label {
  font-size: 20px;
  font-weight: bold;
  display: block;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.moClose-modal-footer {
    background-color: #b52414 !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    cursor: pointer;
}

@media (min-width: 769px) {
    .moClose-modal-footer {
        margin-left: 14px;
        display: inline-block;
    }
    .form-group.has-feedback.d-flex {
        flex-direction: row;
        justify-content: flex-end;
        gap: 14px;
        align-items: center;
    }
}

.solutions-section .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
.solutions-section .solution-card {
  flex: 1 1 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

