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

/* @font-face {
    font-family: 'Poppins';
    src: url(../Poppins/Poppins-Regular.ttf) format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
} */

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

:root {
    --brand-red: #D32F2F;
    --brand-navy: #1A237E;
    --off-white: #F8F8F8;
    --text-gray: #141414;
    --main-color: #00355d;
}

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

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: 230px;
    padding: 10px 0
}

.bartoggle,
#menubrop {
    display: none
}

ul li a::first-letter {
    text-transform: uppercase
}

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

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

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

.NavMenu li a:hover {
    color: #3a3a3a
}

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

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

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

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

.NavMenu li ul li {
    position: relative
}

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

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

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

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

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

    .logo {
        flex: 6
    }

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

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

    .NavMenu {
        width: 430px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #004479;
        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: 100%;
        padding: 7px 0
    }

    .NavMenu {
        top: 75px;
    }

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

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

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

.dropdown {
    position: relative
}

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

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

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

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

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

.submenu li {
    display: inline
}

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

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

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

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

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

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

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

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

.sec-img img {
    width: 100%;
    height: auto;
    border-radius: 7px
}

footer {
    background-color: #00355d;
}

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
}

.ftr-logo img {
    width: 80%
}

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

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

.breadcrumb-nav .breadcrumb {
    background: #fff0;
    font-size: 17px;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.breadcrumb-nav .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 17px
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: #fff
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #fff;
    font-weight: 600
}

.breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
    content: "🡲";
    color: #fff;
    font-weight: 700;
    padding: 0 8px
}

.about-hero {
    min-height: 250px;
    background: #13447E
}

.about-hero .about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease-in-out;
    color: #FFF !important
}

.contact-section {
    background-color: #f8f9fa;
    padding: 60px 0
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgb(0 0 0 / .08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid #084298;
    height: 100%;
}

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

.contact-card h2 {
    color: var(--main-color, #084298);
    margin-bottom: 20px;
    font-weight: 600
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: #084298;
    margin: 0 auto 30px;
    border-radius: 2px
}

.contact-info {
    margin-bottom: 25px
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(13 110 253 / .1);
    border-radius: 50%;
    color: #084298;
    margin-bottom: 15px
}

.contact-icon i {
    font-size: 24px
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    text-align: center;
    font-size: 22px !important
}

.contact-content {
    color: #555;
    line-height: 1.6;
    font-size: 16px;

}

.contact-content a {
    color: #084298;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
    border-bottom: 1px dashed #004e92;

}

.contact-detail a:hover {
    text-decoration: underline
}

.map-container {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    height: 100%
}

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

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

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

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

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    margin-bottom: 30px
}

.image-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    border: 5px solid #fff
}

.about-us-section {
    background-color: var(--off-white)
}

.about-icon-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0;
    height: 98%
}

.about-icon-card i {
    font-size: 3rem;
    color: var(--brand-red);
    margin-bottom: 15px
}

.card-hover {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.section-padding {
    padding: 40px 0;
}

.process-step {
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd;
}

.text-primary-custom {
    color: #0d6efd !important;
}

.bg-light-custom {
    background-color: #f8f9fa !important;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

/* .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 50px;
        } */
/* manufacturer section css */

.manufacturer-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f1f7ff);
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    /* Center the heading */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0c6db8;
    margin: 15px auto 0;
    /* Centers the line under heading */
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0d6efd;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    background: white;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.quality-badge {
    background: #0E5995;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

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

.product-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.product-list li:before {
    content: '•';
    color: #1469ad;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.quality-card {
    background: white;
    border-left: 4px solid #81bd2b;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
}


.highlight-text {
    color: #004e92;
    font-weight: 600;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgb(31 110 184 / 14%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-star {
    width: 38px;
    height: 38px;
    background: url('../img/box-icon.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.icon-qua {
    width: 38px;
    height: 38px;
    background: url('../img/quality.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.icon-custom {
    width: 38px;
    height: 38px;
    background: url('../img/customizable.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.icon-weather {
    width: 38px;
    height: 38px;
    background: url('../img/weather.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.icon-cost {
    width: 38px;
    height: 38px;
    background: url('../img/rupees.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.icon-recycle {
    width: 38px;
    height: 38px;
    background: url('../img/recycle.svg') no-repeat center/contain;
    fill: #004e92 !important;
    stroke-width: 2 !important;
}

.img-box img {
    width: 90%;
    border-radius: 7px;
}

.img-box {
    text-align: center;
    margin-bottom: 15px;
}

.simple-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: .95rem;
    justify-content: center
}

.breadcrumb-link {
    color: #31363b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center
}

.header {
    background: linear-gradient(135deg, #00508d 0%, #004174 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .1)
}

.header h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.breadcrumb-link:hover {
    color: #bababa
}

.breadcrumb-link {
    color: #fff
}

.breadcrumb-link i {
    margin-right: 5px
}

.breadcrumb-divider {
    margin: 0 10px;
    color: #fff
}

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

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

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

    .ftr-logo img {
        width: 45%
    }

    .head h1 {
        font-size: 34px
    }

    .head h2 {
        font-size: 30px
    }

    .about-section {
        padding: 30px 0
    }

    .button-74 {
        font-size: 16px;
        line-height: 40px;
    }

    h3.fw-bold.mb-3.fs-4.text-center {
        font-size: 20px !important;
    }

    h4.fw-bold.mb-3 {
        font-size: 22px;
    }

    .ftr-logo img {
        width: 65%;
    }

    .feature-card {
        height: 97% !important;
    }
}

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

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

    .head h3 {
        font-size: 26px
    }

    .map-container {
        margin-top: 20px
    }

    .differentiator-text h3 {
        font-size: 26px !important
    }

    .abt-page-sec .row {
        justify-content: center;
    }

    .row.justify-content-center.main-para.ftr-2 {
        text-align: center;
    }
}

@media (max-width:425px) {
    .rw-dir {
        flex-direction: column-reverse;
        align-items: center
    }

    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }

    .head h1 {
        font-size: 30px !important
    }

    .head h3 {
        font-size: 30px !important
    }

    .head h2 {
        font-size: 32px !important
    }

    .head h2 {
        font-size: 26px !important
    }

    .head h3 {
        font-size: 24px !important
    }

    .NavMenu {
        width: 425px
    }

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

    .breadcrumb-nav .breadcrumb {
        font-size: 16px
    }

    .breadcrumb {
        flex-wrap: wrap;
        white-space: nowrap
    }

    .breadcrumb-item+.breadcrumb-item::before {
        content: "›";
        padding: 0 6px;
        color: #666
    }

    .breadcrumb-item {
        display: inline-flex;
        align-items: center
    }

    .benefit-content p {
        text-align: left !important
    }

    .header {
        text-align: left !important;
    }

    .simple-breadcrumb {
        justify-content: start;
    }

    h2.section-title {
        font-size: 28px;
    }
    .col-xl-4.col-lg-6.col-md-6.mb-4.mb-5.ps-xl-5{
        margin-bottom: 0 !important;
    }
    .col-xl-3.col-lg-6.col-md-6.my-5{
        margin-top: 0 !important;
    }
    .col-xl-2.col-lg-6.col-md-6.ps-4.mb-5{
        padding-left: 12px !important;
    }
}

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

    .content-card {
        background: #fff;
        padding: 30px 15px
    }

    .head h3 {
        font-size: 24px !important
    }
}

@media (max-width:320px) {
    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 25px !important
    }

    .head h3 {
        font-size: 21px !important
    }

    .NavMenu {
        width: 100%
    }

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