* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none
}

:root {
    --main-color: #0d2d54;
    --bg-color: #BCBCBC;
    --primary-color: #1a4b8c;
    --secondary-color: #0d2d54;
    --light-bg: #f4f6f8;
    --dark-text: #333;
    --light-text: #fff
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

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: #000;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    width: 100%;
    height: auto;
}

.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: #1a4b8c;
    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: #00176b
}

.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 #1a4b8c;
    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: #1a4b8c;
    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 #1a4b8c
    }

    .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: #00498b;
        left: 0;
        top: 40px;
        height: 90vh;
        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: 55%
    } */

    .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: max-content
}

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
}

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
}

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
}

h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 15px
}

h4 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 26px;
    font-weight: 600;
    line-height: normal
}

h5 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: normal
}

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: #00176b;
    letter-spacing: 0;
    text-decoration: none
}

li a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 700;
    color: #00176b;
    letter-spacing: 0;
    text-decoration: none
}

.sec-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 12px;
}

.site-footer {
    background-color: #00498b;
    color: #fff;
    padding-top: 60px;
    overflow: hidden;
    position: relative
}

.ftr-logo img {
    width: 85%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px
}

.site-footer .footer-title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 500;
    color: #e7e7e7;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px
}

.site-footer .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    transition: width 0.3s ease
}

.site-footer .footer-title:hover::after {
    width: 80px
}

.site-footer .footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: #fff
}

.site-footer .footer-links li {
    margin-bottom: 12px
}

.site-footer .footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400
}

.font-medium {
    font-weight: 500
}

.site-footer .footer-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    transition: all 0.3s ease-in-out
}

.site-footer .footer-link:hover {
    color: #fff
}

.site-footer .footer-link:hover::before {
    width: 100%;
    visibility: visible
}

.footer-bottom a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px
}

.social-icons .social-icon-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background-color: rgb(255 255 255 / .1);
    color: #ecf0f1;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 12px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-decoration: none
}

.social-icons .social-icon-link:hover {
    background-color: #fff;
    color: var(--main-color);
    transform: translateY(-5px) scale(1.1)
}

.social-icons svg {
    height: 20px;
    width: 20px;
    fill: #fff
}

.site-footer .social-icons a:hover svg {
    fill: var(--main-color)
}

.site-footer .footer-bottom {
    background-color: var(--main-color);
    color: #95a5a6;
    font-size: .9rem;
    padding: 20px 0;
    border-top: 1px solid rgb(255 255 255 / .08)
}

.contact-content .social-icons svg {
    height: 40px;
    width: 40px;
    background-color: #a6b9ff56;
    padding: 8px;
    border-radius: 3px;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    font-weight: 700
}

.feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgb(0 0 0 / .05);
    transition: all 0.4s cubic-bezier(.175, .885, .32, 1.275);
    margin-bottom: 30px;
    height: 100%;
    background-color: #fff
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / .1)
}

.feature-card img {
    height: 340px;
    object-fit: cover;
    width: 100%
}

.feature-card .card-body {
    padding: 30px
}

.feature-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px
}

.value-box {
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .05);
    transition: all 0.3s ease
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(0 0 0 / .1)
}

.value-box h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative
}

.value-box ul {
    list-style: none;
    padding-left: 0
}

.value-box li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px
}

.value-box li:before {
    content: '✥';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color)
}

.feat-head {
    background-color: #1a4b8c;
    color: #fff
}

.feat-head h2, .feat-head h3{

    color: #fff;
    padding: 7px;
    font-size: 22px;
    font-weight: 500
}

.ask-btn {
    text-align: center;
}

.button-22 {
    background-color: #025cb7;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
    transition: color .13s ease-in-out, background .13s ease-in-out, opacity .13s ease-in-out, box-shadow .13s ease-in-out;

}

.button-22:active {
    background-color: #006AE8;
}

.button-22:hover {
    background-color: #025cb7;
}

@media (max-width:767.98px) {
    .site-footer .footer-title {
        font-size: 1.3rem;
        margin-bottom: 15px
    }

    .site-footer .footer-title::after {
        width: 45px;
        height: 3px
    }

    .site-footer .footer-text,
    .site-footer .footer-link,
    .site-footer .footer-address p {
        font-size: .9rem
    }

    .site-footer .social-icons {
        text-align: center;
        margin-top: 20px
    }

    .site-footer .social-icons .social-icon-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        margin: 0 8px
    }

    .site-footer .footer-bottom {
        font-size: .85rem;
        padding: 15px 0
    }
}

@media (max-width:575.98px) {
    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px
    }

    .site-footer .footer-title {
        width: 100%
    }

    .site-footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .site-footer .social-icons {
        justify-content: start;
        display: flex
    }
}

.right-ok {
    background-image: url(../img/right-icon.webp)
}

.wrong-icon {
    background-image: url(../img/wrong-icon.webp)
}

.modal-lg {
    width: 750px
}

.modal-dialog {
    margin: 7% auto
}

.inq-btn-home {
    position: fixed;
    top: 300px;
    right: 10px;
    width: 45px;
    height: 50px;
    z-index: 1111
}

.modal {
    z-index: 999999 !important
}

.modal-header {
    padding: 10px 15px 0;
    background-color: #373435
}

.modal-title {
    font-size: 18px;
    color: #fff;
    text-align: left;
    padding-bottom: 9px
}

.close,
button.btn.moClose,
button.close {
    color: #fff !important
}

.modal-body {
    padding: 0 15px 10px
}

.capside {
    float: left;
    margin-top: 25px
}

.close {
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 28px
}

.pop-img {
    margin-top: 10%;
    margin-bottom: 20px;
    width: 100%;
    height: auto
}
.pop-img img{
    width: 100px;
height: auto;
}
button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #b52414 !important;
    padding: 1px 10px 17px !important;
    margin-top: -15px !important;
    position: absolute;
    opacity: 1
}

button.btn.moClose {
    background-color: #b52414 !important
}

.link-3 .location {
    background: url(../img/location.webp) no-repeat;
    list-style: none;
    padding-left: 40px;
    background-position: 5px 5px;
    background-size: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.link-3 .phone {
    background: url(../img/phone.webp) no-repeat;
    list-style: none;
    padding: 8px 40px;
    background-position: 9px 10px;
    background-size: 23px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.link-3 .mail {
    background: url(../img/mail.webp) no-repeat;
    list-style: none;
    padding: 8px 40px;
    background-position: 9px 10px;
    background-size: 23px;

}

.link-3 a,
.link-3 p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@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,
    .moClose {
        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
    }

    .modal-body {
        padding: 0 15px 45px
    }

    .modal-dialog {
        margin: 15% auto
    }
}

.button-66,
.contact-card,
.contact-section,
.inner-box {
    text-align: center
}

.form-group {
    margin: 15px 0 !important
}

.form-group input,
.form-group select,
.form-group textarea {
    border-left: 5px solid var(--main-color)
}

.form-group label {
    color: var(--bg-color);
    margin: 5px 0 15px;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: initial;
    line-height: 1.6em;
    font-weight: 400
}

.Submit-box {
    background-color: var(--main-color);
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important
}

.faq-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgb(0 0 0 / .04);
    overflow: hidden
}

.accordion-header {
    margin-bottom: 0
}

.accordion-button {
    background-color: #fff;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 18px 25px;
    border: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease
}

.accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: #f0f8ff;
    border-bottom: 1px solid #e0e8f0
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%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") !important;
    transition: transform 0.2s ease
}

.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='%23007bff'%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") !important;
    transform: rotate(-180deg)
}

.faq-body {
    padding: 20px 25px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7
}

.breadcrumb-main {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #004480
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff
}

.breadcrumb-content h1 {
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 10px
}

.bread-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px
}

.bread-links a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    letter-spacing: 3px
}

.bread-links a:hover {
    color: #f0f0f0
}

.adp-text-content {
    padding-right: 30px
}

.adp-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057
}

p a {
    color: #1a4b8c;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #1a4b8c
}

.adp-inline-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color)
}

.adp-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgb(0 0 0 / .1);
    margin-bottom: 20px
}

.adp-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease
}

.adp-image-wrapper:hover .adp-featured-image {
    transform: scale(1.03)
}

.adp-price-cta {
    text-align: center;
    padding: 15px 0
}

.adp-price-btn {
    background-color: #00498b;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.adp-price-btn:hover {
    background-color: #00176b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .15)
}

.adp-features-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef
}

.adp-features-title {
    font-size: 1.8rem;
    color: #1a4b8c;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px
}

.adp-features-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color)
}

.adp-features-list {
    list-style: none;
    padding-left: 0
}

.adp-feature-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center
}

.adp-feature-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #12579c;
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgb(0 0 0 / .125)
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid #084298
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(13 110 253 / .1);
    border-radius: 50%;
    color: #084298
}

.contact-content {
    color: #6c757d;
    line-height: 1.6
}

.contact-card p {
    text-align: center;
    margin-top: 15px
}

.about-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .05);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border: none
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgb(0 0 0 / .1)
}

.vision-mission-card {
    border-left: 5px solid var(--accent);
    height: 100%
}

.vision-mission-card .card-header {
    background: #fff;
    border-bottom: none;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.25rem
}

.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1
}

.highlight-text:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgb(42 94 232 / .2);
    z-index: -1;
    transition: all 0.3s
}

.highlight-text:hover:after {
    height: 15px;
    background-color: rgb(42 94 232 / .3)
}

.floating-image {
    animation: float 6s ease-in-out infinite;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .1)
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }

    100% {
        transform: translateY(0)
    }
}

.vision-mission-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(13 110 253 / .1);
    border-radius: 50%;
    color: #084298
}

.footer-col ul li {
    background: url(../img/square-shadow.webp) no-repeat;
    list-style: none;
    padding-left: 25px;
    background-position: 3px 8px;
    background-size: 12px;
}

.shadow-sm {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

@media (max-width:1024px) {
    .NavMenu li a::after {
        background-color: #fff0
    }

    .ftr-quick ul {
        padding-left: 0
    }

    .ftr-logo img {
        width: 55%;
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2.ps-4,
    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-3 {
        margin-top: 30px;
    }

    .head h1 {
        font-size: 34px
    }

    .head h2 {
        font-size: 30px
    }

    footer p {
        font-size: 20px
    }

    .link-3 p {
        font-size: 16px
    }

    .feature-card {
        padding: 20px 15px
    }

    .icon-wrapper svg {
        width: 48px;
        height: 48px
    }

    .section-title {
        font-size: 1.8rem
    }

    .valve-img {
        max-height: 150px
    }

    .faq-main-title {
        font-size: 1.75rem
    }

    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 1rem
    }

    .faq-image-container {
        margin-top: 2rem
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2 {
        margin-top: 40px;
    }
}

@media (max-width:768px) {
    .contact-card {
        padding: 20px
    }

    .ftr-logo img {
        width: 70%;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px
    }

    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 !important;
        justify-content: center
    }

    .product-image-card {
        text-align: center
    }

    .bread-links a {
        letter-spacing: 2px
    }

    h2 {
        font-size: 28px
    }

    h3 {
        font-size: 26px
    }

    h4 {
        font-size: 24px
    }

    .tab-width {
        width: 100% !important
    }

    .ask-btn,
    .sec-img img {
        margin-bottom: 20px
    }

    footer .row.justify-content-center.main-para .col-lg-6,
    footer .row.justify-content-center.main-para .col-lg-6.text-md-end {
        text-align: center !important
    }

    .g-5,
    .gx-5 {
        --bs-gutter-x: 0rem
    }

    footer .col-xl-6.col-lg-4.text-md-end,
    footer .col-xl-6.col-lg-8 {
        text-align: center !important
    }

    footer .col-xl-6.col-lg-4.text-md-end {
        padding-top: 10px
    }

    .sec-img {
        margin-top: 20px
    }

    .advantage-card {
        margin-top: 20px
    }

    .footer-bottom .col-xl-6.col-lg-3.text-md-end,
    .footer-bottom .col-xl-6.col-lg-9.text-md-start {
        text-align: center !important
    }

    .breadcrumb-content h1 {
        font-size: 30px
    }

    .adp-text-content {
        padding-right: 0
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2 {
        margin-top: 20px;
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-3 {
        margin-top: 86px;
    }
}

@media (max-width:425px) {
    .breadcrumb-content h1 {
        font-size: 26px
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2.ps-4,
    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-3 {
        margin-top: 0px;
    }

    .col-xl-2.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-1.ps-4 {
        margin-top: 20px;
    }

    .lead {
        font-size: 1rem;
        font-weight: 600 !important
    }

    .navbar-brand img {
        width: 70%
    }

    .feature-card .card-body {
        padding: 20px 8px
    }

    .site-footer .footer-title::after {
        left: 7%;
        transform: translateX(-50%)
    }

    .navbar-brand {
        width: 75%
    }

    h1 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .bread-links a {
        letter-spacing: 2px;
        letter-spacing: 1px
    }

    .bread-links {
        align-items: center;
        display: inline-flex;
        flex-wrap: wrap;
        white-space: normal;
        line-height: 1.5
    }

    .head h2 {
        font-size: 26px
    }

    .pump-manuf {
        padding: 10px
    }

    .breadcrumb-main {
        height: 250px
    }

    .NavMenu {
        width: 425px
    }

    .NavMenu li ul li>ul,
    .NavMenu li>ul {
        width: 100% !important
    }

    footer .col-lg-2.col-md-6 {
        margin-bottom: 20px
    }

    .fs-5 {
        font-size: 17px !important
    }

    .row {
        --bs-gutter-x: 0rem
    }

    .col-lg-2.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-1.ps-4,
    .col-lg-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2.ps-4 {
        padding-left: 0 !important
    }

    .ftr-logo img {
        width: 60%;
        padding: 10px
    }

    .col-xl-2.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-1.ps-4,
    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2.ps-4,
    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-1.ps-4 {
        padding-left: 0 !important;
    }

    .col-xl-3.col-md-6.mb-4.mb-lg-0.footer-col.fade-in-up.delay-2 {
        margin-bottom: 0 !important;
    }

}

@media (max-width:375px) {
    .NavMenu {
        width: 375px
    }
}

@media (max-width:320px) {
    .bread-links a {
        letter-spacing: 1px
    }

    h2 {
        font-size: 26px
    }

    h1 {
        font-size: 28px
    }

    h3 {
        font-size: 24px
    }

    .NavMenu {
        width: 100%
    }

    .mail a {
        word-wrap: break-word
    }

    .NavMenu li a {
        padding: 8px 12px
    }
}