* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none
}

:root {
    --main-color: #740000;
    --bg-color: #D9DADA
}

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;
    background: #fff
}

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: 275px;
    padding: 10px 0; 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: #202020;
    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: #740000
}

.NavMenu li ul li a:hover {
    color: #740000
}

.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 #740000;
    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: #202020;
    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 #740000
    }

    .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: #171717;
        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 {
        background-color: #e5f9ff;
        font-size: 16px;
        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: 280px
    }

    .NavMenu {
        top: 84px
    }

    .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
}

.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: #333;
    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
}

.sec-img img {
    width: 100%;
    height: auto
}

footer {
    background-color: #171717
}

footer a {
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px
}

footer li a:hover {
    color: #bababa !important
}

footer ul li {
    margin-bottom: 7px;
    background-image: url(../img/ftr-arrow.webp);
    background-repeat: no-repeat;
    background-position: 0 5px;
    font-size: 16px;
    padding-left: 30px;
    background-size: 20px
}

footer p.fw-bold::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #bababa;
    margin-top: 8px;
    transition: width 0.3s
}

footer p {
    font-family: Georgia, 'Times New Roman', Times, serif, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    line-height: 28px
}

footer p:hover::after {
    width: 60px
}

.footer-logo img {
    width: 100%; height: auto;
    padding: 20px;
    background-color: #FFF;
    border-radius: 7px
}

.footer-logo {
    margin-bottom: 20px
}

footer .main-para p {
    text-align: left !important;
}

@media (max-width:767px) {

    footer .col-md-6 p,
    footer ul {
        justify-content: center
    }

    .ftr-2 {
        text-align: center
    }

    .ftr-2 .col-lg-6 {
        text-align: center !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
}

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: -120px;
        position: relative;
        z-index: 999;
        width: 100%;
        float: right
    }

    .inq-btn-home img {
        width: 30px;
        height: auto
    }

    .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
}

.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
}

.button-48 {
    appearance: none;
    background-color: #740000;
    border-width: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1.5em 2.2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, .335, 1), background-color 100ms cubic-bezier(.694, 0, .335, 1), color 100ms cubic-bezier(.694, 0, .335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 4px
}

.button-48:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #222;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, .84, .44, 1), -webkit-clip-path .5s cubic-bezier(.165, .84, .44, 1);
    width: 100%;
    border-radius: 4px
}

.button-48:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%)
}

.button-48:after {
    background-color: #FFF
}

.button-48 span {
    z-index: 1;
    position: relative
}

#about .img-fluid {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

#about .lead {
    font-weight: 600;
    color: #0A1931
}

.product-card {
    text-align: center
}

.product-card .icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-color: rgb(255 154 154 / .1);
    color: #E31F21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    transition: all 0.3s ease
}

.product-card:hover .icon-container {
    background-color: #E31F21;
    color: #fff;
    transform: scale(1.1) rotate(15deg)
}

.product-card:hover .icon-container svg {
    fill: #fff !important;
}

.product-card:hover .icon-container .cls-1 {
    stroke: #fff !important;
}

.cls-1 {
    fill: none;
    stroke: #E31F21 !important;
    stroke-miterlimit: 10;
    stroke-width: 1.88px;
}

.product-card h5 {
    font-weight: 700;
    color: #0A1931
}

.section-title {
    position: relative
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #E31F21;
    border-radius: 3px
}

#solutions {
    background-color: #f3f3f3
}

.solution-item {
    display: flex;
    align-items: flex-start
}

.solution-item .icon {
    font-size: 2rem;
    color: #E31F21;
    margin-right: 1.5rem;
    min-width: 40px
}

.solution-item h5 {
    font-weight: 600;
    color: #0A1931
}

.product-card {
    border: none;
    border-radius: var(--bs-border-radius-xl, .75rem);
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #5b5b5b;
}

.product-card .card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
    flex-shrink: 0;
    margin: 1rem 1rem 0;
    min-height: 200px;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05)
}

.product-card .card-img-container img {
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: .75rem
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .15);
    background-color: #fefefe
}

.product-card:hover .card-img-container img {
    transform: scale(1.08)
}

.product-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.product-card .card-title {
    font-weight: 700;
    color: #212529;
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.product-card .card-text {
    font-size: .95rem;
    color: #5a626a;
    flex-grow: 1;
    line-height: 1.6
}

.product-card .card-link {
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    color: var(--brand-primary);
    transition: color 0.2s ease;
    position: relative;
    padding-right: 1.2rem;
    display: inline-flex;
    align-items: center
}

.product-card .card-link::after {
    content: '';
    display: block;
    width: .9rem;
    height: .9rem;
    background-image: var(--svg-arrow-right);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    transition: transform 0.2s cubic-bezier(.25, .46, .45, .94)
}

.product-card .card-link:hover::after {
    transform: translateY(-50%) translateX(4px)
}

.product-card-featured {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: var(--bs-border-radius-xl, .75rem);
    box-shadow: 0 6px 20px rgb(0 0 0 / .12)
}

.product-card-featured .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94)
}

.product-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgb(0 0 0 / .1) 0%, rgb(0 0 0 / .9) 100%);
    z-index: 2;
    transition: background 0.4s ease
}

.product-card-featured:hover .featured-img {
    transform: scale(1.08)
}

.product-card-featured:hover::before {
    background: linear-gradient(160deg, rgb(0 0 0 / .05) 0%, rgb(0 0 0 / .95) 100%)
}

.product-card-featured .card-body {
    position: relative;
    z-index: 3;
    justify-content: center;
    padding: 2.5rem
}

.product-card-featured .card-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem
}

.product-card-featured .card-text {
    font-size: 1.05rem;
    color: rgb(255 255 255 / .9);
    line-height: 1.5;
    margin-bottom: 2rem
}

.category-badge {
    font-size: .75rem;
    font-weight: 700;
    padding: .4em .9em;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: .6rem;
    letter-spacing: .05em;
    text-transform: uppercase
}

.product-card-featured .category-badge {
    background-color: rgb(255 255 255 / .25);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(255 255 255 / .3);
    color: #fff
}

.product-card .category-badge-standard {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    color: #fff
}

@media (max-width:767.98px) {
    .product-card-featured .card-body {
        padding: 2rem
    }

    .product-card-featured .card-title {
        font-size: 2rem
    }

    .product-card .card-img-container {
        margin: .5rem .5rem 0
    }
}

.products-bg {
    background-color: #D9E1E4
}

.about-us-page {
    background-color: #f0f2f5
}

.gradient-text {
    background: #FFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    display: inline-block
}

.hero-section {
    position: relative;
    background: url(../img/breadcrumb.webp) center center/cover no-repeat;
    color: #fff;
    padding: 4rem 0 6rem;
    overflow: hidden
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .55)
}

.hero-section .container-lg {
    position: relative;
    z-index: 2
}

.breadcrumb-item a {
    color: rgb(255 255 255);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px
}

ol.breadcrumb.justify-content-center.mb-0 {
    align-items: center
}

.breadcrumb-item {
    color: rgb(255 255 255);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px
}

.breadcrumb-item.active {
    color: #fff
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff
}

.breadcrumb-item:first-child::after {
    content: " /";
    color: rgb(255 255 255);
    padding: 0 .4rem
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none !important
}

.about-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    margin-top: -2rem;
    position: relative
}

.about-card h2,
.about-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 5px solid #b40e14
}

.about-card p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #495057
}

.motto-highlight h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #b40e14;
    padding: 1rem 0;
    margin: 2rem 0;
    border-top: 1px dashed rgb(0 0 0 / .1);
    border-bottom: 1px dashed rgb(0 0 0 / .1);
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.featured-pledge {
    background: linear-gradient(135deg, #720003 0%, #9b0006 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: .75rem;
    margin-top: 3rem;
    box-shadow: 0 7px 20px rgb(160 0 0 / .5)
}

.featured-pledge h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.featured-pledge p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgb(255 255 255 / .95)
}

.prd-ul li {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    margin-bottom: 7px;
    padding-left: 20px
}

.prd-ul {
    margin-bottom: 20px
}

.bi-check-circle-fill {
    font-size: 17px !important
}

section.contact-section {
    padding: 60px 0
}

.contact-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgb(0 0 0 / .05)
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 22px rgb(0 0 0 / .1)
}

.contact-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
    border-bottom: 2px solid #212529;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block
}

.contact-title i {
    color: #BF0121;
    margin-right: 8px
}

.contact-box a {
    color: #212529;
    text-decoration: none
}

.contact-box a:hover {
    color: #BF0121
}

.contact-box p {
    margin-bottom: 0
}

.contact-section {
    background-color: #f7f7f7;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0;
    overflow: hidden
}

.contact-card {
    background: #fff;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    overflow: hidden
}

.form-control:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 .25rem rgb(59 130 246 / .25);
    transform: scale(1.01);
    transition: all 0.3s ease-in-out
}

.info-panel {
    background: linear-gradient(135deg, #1E3A8A, #104e7e);
    color: #fff;
    padding: 3rem;
    border-radius: 1.5rem 1.5rem 0 0
}

@media (min-width:992px) {
    .info-panel {
        border-radius: 0 1.5rem 1.5rem 0
    }
}

.info-icon {
    font-size: 1.5rem;
    color: #9b0006;
    background-color: rgb(255 255 255 / .15);
    padding: 1rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: transform 0.3s ease
}

.contact-section {
    background-color: #F9FAFB;
    padding: 5rem 0
}

.office-contact-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgb(0 0 0 / .05);
    border: 1px solid #E5E7EB
}

.office-contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgb(59 130 246 / .2);
    border-color: #9b0006
}

.contact-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #242424;
    border-bottom: 3px solid #9b0006;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: .5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

.contact-title i {
    color: #9b0006;
    margin-right: 10px;
    font-size: 1.3rem
}

.office-contact-box a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.office-contact-box a:hover {
    color: #9b0006;
    font-weight: 600
}

.color-blue {
    color: #161616
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgb(0 0 0 / .1)
}

.market-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #9b0006;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    border: 1px solid #7400002f;
    position: relative;
    overflow: hidden
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgb(20 20 20 / .3), 0 0 0 3px rgb(59 130 246 / .1);
    color: #969696
}

.flag-icon {
    font-size: 40px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease
}

.market-card:hover .flag-icon {
    transform: scale(1.1) rotate(5deg)
}

.card-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.2
}

.card-subtitle {
    font-size: .9rem;
    color: #4B5563
}

@media (max-width:767.98px) {
    .about-card {
        padding: 1rem;

    }

    .about-card h2 {
        font-size: 1.5rem
    }

    .featured-pledge {
        margin-top: 2rem;
        padding: 1.5rem
    }
}

@media (max-width:1024px) {
    .NavMenu li a::after {
        background-color: #fff0
    }

    .ftr-quick ul {
        padding-left: 0
    }

    .footer-logo img {
        width: 240px
    }

    .ftr-logo img {
        width: 80%
    }

    .head h1 {
        font-size: 34px
    }

    .head h2 {
        font-size: 30px
    }

    .head h3 {
        font-size: 26px
    }

    .hero-section {
        padding: 3rem 0 5rem
    }

    .motto-highlight h3 {
        font-size: 20px !important;
        padding-left: 10px;
    }
}

@media (max-width:768px) {

    .main-para p,
    p {
        font-size: 16px
    }

    .head h1 {
        font-size: 30px !important
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center
    }

    .head h3 {
        font-size: 28px
    }

    .sec-img {
        margin-top: 20px
    }

    ul.NavMenu {
        top: 88px
    }

    .row.justify-content-center.main-para.ftr-2 {
        text-align: center
    }

    section.mb-5.fade-in .row {
        justify-content: center
    }

    .ind-main.head.main-para.py-5 .col-lg-3.col-md-6 {
        margin-bottom: 20px
    }

    .breadcrumb-nav .breadcrumb {
        font-size: 16px
    }

    footer p.text-white.text-center {
        text-align: center !important;
    }

    .rw-dir .col-lg-4.col-md-8 img {
        margin-top: 20px;
    }

    .section-title h2::after {
        display: none;
    }
}

@media (max-width:425px) {
    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }

    .head h1 {
        font-size: 26px !important
    }

    .head h2 {
        font-size: 24px !important
    }

    .head h3 {
        font-size: 24px !important
    }

    .head h4 {
        font-size: 22px !important
    }

    .head h5 {
        font-size: 22px !important
    }

    .NavMenu {
        width: 425px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .logo img {
        width: 282px
    }

    h3.text-center.mb-4.why-font,
    h3.text-center.mb-4.expertiese {
        font-size: 28px !important
    }

    .ask-btn.mt-4.text-center {
        margin-bottom: 20px
    }

    .breadcrumb-item+.breadcrumb-item {
        padding-left: 0 !important;
    }

    .motto-highlight h3 {
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: justify;
        line-height: 1.6;
    }

    h3.card-title.mb-3.fs-4 {
        font-size: 20px !important;
    }
}

@media (max-width:375px) {
    .NavMenu {
        width: 375px
    }

    ul.NavMenu {
        top: 76px
    }
        .logo img {
        width: 232px;
    }
}

@media (max-width:320px) {
    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 28px
    }

    .head h3 {
        font-size: 24px
    }

    .NavMenu {
        width: 100%
    }

    .NavMenu li a {
        padding: 8px 12px
    }

    ul.NavMenu {
        top: 68px
    }
     .logo img {
        width: 200px
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: auto
}

body {
    overflow-x: hidden
}