/*
font-family: 'Lora', serif;



font-family: 'Red Hat Display', sans-serif;



font-family: 'Raleway', sans-serif;
*/
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 1;
        -webkit-transform: scale3d(1.3, 1.3, 1.5);
        transform: scale3d(1.3, 1.3, 1.3);
    }
    50% {
        opacity: 1;
    }
}
:root {
    --white: #fff;
    --black: #000;
    --off-white: #E9ECEF;
    --red: #153c75;
    --green: #99C04C;
    --dark: #1B1F22;
    --para: #4f4f4f;
    --grey: #6C757D;
    --light-grey: #ced4da;
    --body-font: 'Red Hat Display', sans-serif;
    --head-font: 'Lora', serif;
    --heading: 'Raleway', sans-serif;
    --subhead: 'Poppins', sans-serif;
}





html,

body {
    overflow-x: hidden;
}



body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}



a {
    text-decoration: none !important;
    display: inline-block;
}





p:last-of-type {
    margin-bottom: 0px;
}



p {
    color: var(--para);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}



ul {
    padding-left: 0px;
    margin-bottom: 0px;
}
.form-control,
.form-select {
    box-shadow: none;
    outline: none;
    border-radius: 0px;
}
.form-control:focus,
.form-select:focus {
    background: transparent;
    border: 0px;
    box-shadow: none !important;
    outline: none !important;
}



img {
    width: 100%;
    height: 100%;
}
/*--- Section Spacing Start ---*/
.sec-space-40 {
    padding: 40px 0;
}
.sec-space {
    padding: 80px 0;
}
.reach-us.sec-space{
    padding: 80px 0 0 0;
}
.sec-space-top {
    padding: 80px 0 0;
}
.sec-space-bottom {
    padding: 0 0 80px;
}
/*--- Section Spacing End ---*/
/*--- Animation Start ---*/
@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
/*--- Animation End ---*/
/* Common Css Start */
.section-head {
    margin-bottom: 30px;
}
.section-head h3 {
    position: relative;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 38px;
    line-height: 50px;
}
.section-head h6 {
    font-size: 17px;
    font-family: var(--subhead);
    position: relative;
    font-weight: 500;
    z-index: 9;
    color: var(--red);
    padding-right: 70px;
    width: fit-content;
    text-transform: uppercase;
}
.section-head h6:after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: var(--red);
    right: 0;
    top: 14px;
    z-index: -1;
}
/*--- Button Start ---*/
.btn {
    font-size: 14px;
    border-radius: 25px;
    padding: 10px 25px;
    width: fit-content;
    font-weight: 500;
    box-shadow: none !important;
    outline: none !important;
    transition: all .5s;
}
.btn-white {
    background: var(--white);
    color: var(--black);
    transition: all .5s;
}
.btn-white:hover {
    background: var(--red);
    color: var(--white);
    transition: all .5s;
}
.btn-black {
    background: var(--black);
    color: var(--white);
    transition: all .5s;
}
.btn-black:hover {
    background: var(--red);
    color: var(--white);
    transition: all .5s;
}
.btn-red {
    background: var(--red);
    color: var(--white);
    transition: all .5s;
}
.btn-red:hover {
    background: var(--red);
    color: var(--white);
    transition: all .5s;
}
/*--- Button End ---*/
/* Common Css End */
/* ----- Navtop Start ----- */
.header-show {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.navbar-top {
    background: var(--white);
}
.navbar-bottom {
    background: var(--red);
}
.navbar-brand {
    width: 120px;
    height: auto;
    display: block;
}
.header-contact ul {
    display: flex;
    list-style: none;
    padding-left: 0px;
    align-items: center;
}
.header-contact ul li {
    margin: 10px 40px 10px 0px;
}
.header-contact ul li:last-child {
    margin-right: 0px;
}
.header-contact ul li a {
    padding-left: 50px;
    position: relative;
    font-size: 14px;
    color: var(--black);
}
.header-contact ul li a span {
    color: var(--white);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: var(--black);
}
.header-contact ul li a .tel {
    color: var(--white);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-15%);
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    background: var(--black);
}
.header-contact ul li a h6 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0px;
}
.header-contact ul li a p {
    color: var(--black);
    font-size: 14px;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    padding-left: 0 !important;
}
.navbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-bar ul li a {
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding: 17px 25px;
    font-size: 15px;
    text-transform: capitalize;
    font-family: var(--heading);
    z-index: 1;
}
.menu-bar ul li a:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    content: '';
    z-index: -1;
}
.menu-bar ul li.active a:before {
    background: var(--white);
}
.menu-bar ul li.active a {
    color: var(--red);
}
.navbar-text {
    padding: 0px;
}
.navbar-text a {
    position: relative;
    padding-left: 50px;
    background: var(--white);
    color: var(--red);
}
.navbar-text a span {
    margin-right: 6px;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-42%);
    font-size: 18px;
}
.modal-quote .modal-dialog {
    max-width: 70%;
}
.quote-form {
    background: #fdfdfd;
    padding: 30px 30px;
}
.quote-form .btn {
    background: var(--red);
    color: var(--white);
}
.quote-form .single-input {
    border: 1px solid #dedede !important;
}
.quote-form .single-input.input-group .form-control {
    background: var(--white);
    color: var(--black);
}
.quote-form .single-input textarea {
    border: 0px;
}
.quote-form .single-input select {
    border: 1px solid #dedede;
    height: 48px;
    line-height: 48px;
    padding: 0px;
    border: 0px;
}
.quote-form .single-input .input-group-text {
    color: #000;
    background: var(--white);
}
.msg-i {
    padding-top: 16px;
}
.modal-title {
    text-align: center;
}
.single-input span select {
    width: 70px;
    border-right: 1px solid #dedede !important;
    border-left: 1px solid #dedede !important;
    margin-right: 10px;
    padding-left: 5px !important;
}
/*--- Header End ---*/
/*--- Banner Start ---*/
.carousel-item {
    width: 100%;
    background: url(../images/banner-item-bg.webp) no-repeat center center;
    background-size: cover;
    border-bottom-right-radius: 150px;
    overflow: hidden;
    padding: 100px 60px;
    align-items: center;
}
.carousel-item .pr-image{
    width: 100%;
    height: 200px;
}
.carousel-item .pr-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .carousel-item .row [class*="col-"]:nth-child(2),
.carousel-item .row [class*="col-"]:nth-child(3){
    margin-top: 90px !important;
} */
.carousel-item .pr-image a{
    font-size: 10px;
    color: var(--white);
    margin-top: 10px;
    letter-spacing: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.9);
}
.carousel-item {
    height: 800px;
}
.carousel-item img {
    object-fit: cover;
}
/* .carousel-caption {
    position: absolute;
    right: 0;
    left: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
} */
/*
.carousel-caption h2 {
    font-size: 66px;
    padding: 0 0 15px;
    font-weight: 600;
    position: relative;
    color: var(--white);
}
.carousel-caption p {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    max-width: 650px;
} */
/*--- Banner End ---*/
/* ---- Speciality Start ---- */
.speciality-box {
    padding: 25px;
    border: 1px solid var(--black);
    text-align: center;
    border-radius: 0px;
    height: 100%;
}
.speciality-box span {
    font-size: 50px;
    color: var(--black);
}
.speciality-box h4 {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin: 0;
}
.speciality-box h4:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 70px;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 0;
    background-color: var(--black);
}
.speciality-box p {
    padding: 20px 0px 0px;
}
.speciality-box .btn {
    margin: 10px auto 0;
}
.speciality-icon {
    margin: 10px auto 15px;
}
.speciality-icon img {
    width: 64px;
    height: 64px;
    filter: brightness(0);
}
/* ---- Speciality End ---- */
/*--- Mission Vission Start  ---*/
.mv-block h3 {
    font-family: var(--heading);
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-weight: 700;
    position: relative;
}
.mv-block h3::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: var(--red);
    content: '';
}
.mv-block h3::after {
    position: absolute;
    left: 70px;
    bottom: 0;
    width: 10px;
    height: 2px;
    background: var(--off-white);
    content: '';
}
/*--- Mission Vission End  ---*/
/* ---- Our Journey Start ---- */
.our-journey {
    position: relative;
}
.journey-wrap {
    background: url(../images/bg-cover.webp) no-repeat center center;
    background-size: cover;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    z-index: 9;
}
.journey-wrap:before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    background-color: rgb(33 53 96 / 85%);
    z-index: -1;
    backdrop-filter: blur(2px);
}
.journey-content {
    color: var(--white);
    padding: 105px 90px;
}
.journey-content h4 {
    font-size: 68px;
    line-height: 78px;
    padding-bottom: 65px;
    position: relative;
}
.journey-content h4:before {
    position: absolute;
    left: 0;
    top: -20px;
    content: 'journey';
    font-size: 180px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
.journey-content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--white);
    padding-bottom: 20px;
}
.journey-content ul {
    margin-top: 15px;
}
.journey-content ul li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 500;
}
.journey-content ul li span {
    width: 22px;
    height: 22px;
    line-height: 22px;
    position: absolute;
    text-align: center;
    left: 0;
    top: 6px;
    border: 1.5px solid var(--green);
    color: var(--green);
    border-radius: 50%;
    font-size: 17px;
    display: inline-block;
}
.journey-content .btn {
    margin-top: 20px;
}
/* .journey-right {
    width: 40%;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
} */
.journey-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 25px;
}
.journey-image img {
    object-fit: cover;
}
.journey-text {
    position: absolute;
    width: 100%;
    padding: 15px 30px;
    background: rgb(233 48 48 / 80%);
    left: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
}
.journey-text p {
    color: var(--white);
    font-size: 16px;
    text-align: center;
}
/* ---- Our Journey End ---- */
/* ---- Our Solutions Start ---- */
.our-solutions {
    background-color: var(--white);
    border-bottom-left-radius: 150px;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.solutions-img {
    height: 640px;
    overflow: hidden;
    padding: 5px 30px 5px 0;
}
.solutions-img img {
    object-fit: cover;
}
.solutions-txt h3 {
    font-size: 18px;
    line-height: 18px;
    padding-left: 5px;
    color: var(--black);
    position: relative;
    z-index: 9;
}
.solutions-txt h3:before {
    position: absolute;
    content: '';
    transform: translate(-27%, -16%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--red);
    z-index: -1;
}
.solutions-txt h4 {
    font-size: 28px;
    line-height: 28px;
    padding-bottom: 20px;
}
.solutions-txt p {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 30px;
}
.solutions-txt ul {
    padding-bottom: 30px;
    list-style: none;
}
.solutions-txt ul li {
    padding-left: 35px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.solutions-txt ul li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '\F26B';
    font-family: bootstrap-icons !important;
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: var(--red);
}
.solutions-txt .btn {
    border-radius: 0px;
}
/* ---- Our Solutions End ---- */
/*--- Product Grid Start ---*/
.products-grid {
    border-bottom-left-radius: 150px;
    background: #fff;
    position: relative;
}
.products-grid-wrap {
    row-gap: 20px;
}
.product-image {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
    overflow: hidden;
}
.product-image img {
    object-fit: contain;
}
.products-grid .section-head {
    margin-bottom: 50px;
}
.products-grid .section-head h6 {
    width: fit-content;
}
/*--- Product Grid End ---*/
/* ---- Our Mission Start ---- */
.our-mission {
    background-color: var(--off-white);
    z-index: 8;
    position: relative;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 150px;
}
.our-mission:before {
    background-color: var(--off-white);
    height: 160px;
    width: 200px;
    position: absolute;
    left: -32px;
    top: -150px;
    content: '';
    z-index: -1;
}
.mission-img {
    height: 575px;
    width: 575px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    margin: 0 auto;
    position: relative;
}
.our-mission .mission-img img {
    object-fit: cover;
}
.mission-content {
    color: var(--white);
    background-color: var(--red);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    width: 100%;
    text-align: center;
}
.mission-content h2 {
    position: relative;
    padding-left: 80px;
    font-size: 25px;
    width: fit-content;
    margin: 0 auto;
}
.mission-content h2 span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
}
/* ---- Our Mission End ---- */
/* ---- Category Start ---- */
.categories {
    background-color: var(--dark);
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 70px;
    z-index: 7;
    position: relative;
    border-bottom-left-radius: 120px;
}
.categories .categories-bg-right {
    /* border-top-right-radius: 197px; */
    background-color: var(--off-white);
    height: 250px;
    width: 200px;
    position: absolute;
    right: 0%;
    top: -15%;
    z-index: -2;
}
.categories .categories-bg-right2 {
    border-top-right-radius: 150px;
    background-color: var(--dark);
    height: 230px;
    width: 200px;
    position: absolute;
    right: 0%;
    top: 0%;
    z-index: -1;
}
.categories .categories-bg-left {
    background-color: var(--dark);
    height: 300px;
    width: 200px;
    position: absolute;
    left: 0%;
    top: -60%;
    z-index: -1;
}
.categories .cat-cont {
    color: var(--white);
}
.categories .cat-cont .cat-icon {}
.categories .cat-cont .cat-icon span {
    font-size: 50px;
    border-bottom: 5px solid;
    border-color: rgb(0, 68, 255);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    line-height: 100px;
    background: linear-gradient(180deg, rgb(27 31 34) 0%, rgb(43 46 49) 100%);
}
.categories .cat-cont .cat-icon span img {
    width: 64px;
    height: auto;
}
.cat-cont .cat-txt {
    padding-top: 20px;
}
.cat-cont .cat-txt h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
.cat-cont .cat-txt p {
    color: #afafaf;
}
/* ---- Category End ---- */
/* ---- Our Team Start ---- */
.our-team {
    background-color: var(--white);
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 6;
    position: relative;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 120px;
}
.our-team .team-txt {}
.our-team .team-txt p {
    width: 500px;
    height: auto;
    margin-left: 410px;
}
.our-team .team-bg-right-top {
    background-color: var(--dark);
    height: 300px;
    width: 200px;
    position: absolute;
    right: 0%;
    top: -25%;
    z-index: -1;
}
.our-team .team-bg-right-top2 {
    border-top-right-radius: 150px;
    background-color: var(--white);
    height: 230px;
    width: 200px;
    position: absolute;
    right: 0%;
    top: 0%;
    z-index: -1;
}
/* ---- Our Team End ---- */
/* ----- Buisness Help Start  ----------*/
.buisness-help {
    position: relative;
    background: #fff;
    /* border-bottom-left-radius: 150px; */
    overflow: hidden;
}
.buisness-content {
    padding: 60px 70px;
    background: var(--red);
    height: 100%;
    color: var(--white);
}
.buisness-content .btn-red {
    background: var(--white);
    color: var(--red);
    transition: all .5s;
}
.buisness-content .single-input .form-control{
    color: var(--white);
}
.buisness-content .section-head h6{
    color: var(--off-white);
}
.right-image-bh {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}
.right-image-bh img {
    object-fit: cover;
    border-top-right-radius: 150px;
}
.single-input {
    margin-bottom: 15px;
}
.single-input .form-control {
    border: 1px solid transparent;
    border-bottom: 1px solid #dadada;
    padding: 0 15px 0 0;
    background: transparent;
}
.single-input input.form-control {
    height: 48px;
    line-height: 48px;
}
.single-input textarea.form-control {
    height: 150px;
    padding-top: 10px;
}
.buisness-image {
    height: 100%;
}
.buisness-image img {
    object-fit: cover;
}
/* ----- Buisness Help End  ----------*/
/* ---   Join Us Start ----*/
.join-us {
    background: var(--red);
    position: relative;
    padding: 100px 0;
    border-bottom-left-radius: 150px;
    border-top-right-radius: 150px;
}
.join-us:before {
    position: absolute;
    left: 0;
    top: -135px;
    height: 150px;
    width: 150px;
    z-index: -1;
    background: var(--red);
    content: '';
}
/* ---   Join Us Start ----*/
/*---  Home Address Book Start ----*/
.home-address-book {
    background: var(--red);
    padding: 100px 0;
    /* border-bottom-left-radius: 150px; */
    position: relative;
}
.hab-box {
    padding: 10px;
}
.hab-box .hba-icon {
    font-size: 26px;
    color: var(--red);
    margin-bottom: 25px;
    height: 70px;
    width: 70px;
    background: var(--white);
    text-align: center;
    line-height: 70px;
    border-radius: 8px;
}
.hba-content h5 {
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 20px;
    font-weight: 600;
}
.hba-content h5:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--white);
    content: '';
}
.hba-content a {
    color: var(--white);
    display: block;
}
.hba-content p {
    color: var(--white);
    font-size: 16px;
}
.hba-content {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
}
/*---  Home Address Book End ----*/
/*--- Testimonial Start ---*/
.testimonial {
    border-top-right-radius: 150px;
    position: relative;
    background: var(--white);
}
.testimonial-box {
    padding: 40px;
    background: #f1f1f1;
    border-radius: 25px;
}
.testimonial .section-head {
    max-width: 50%;
    padding-right: 30px;
}
.rating-testi {
    color: var(--red);
}
.testi-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}
.testi-reviewer h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}
.testi-flex {
    margin-top: 15px;
    align-items: center;
}
.rating-testi {
    color: var(--red);
}
/*--- Testimonial End ---*/
/*--- Footer Start   ---*/
.footer-main {
    background: url(../images/footer-bg.webp) no-repeat center;
    background-size: cover;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 9;
}
.footer-main:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    backdrop-filter: blur(2px);
    background: rgb(255 255 255 / 84%);
    z-index: -1;
    border-top: 6px solid var(--red);
}
.footer-about {
    text-align: left ;
}
.footer-about p {
    max-width: 100%;
    margin: 0 auto 50px;
    color: var(--black);
}
.ft-logo {
    max-width: 140px;
    /* margin: 0 auto 20px; */
}
.link-box h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.link-box h4:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: var(--red);
    content: '';
}
.link-box ul {
    list-style: none;
    padding-left: 0px;
}
.link-box ul li {
    margin-bottom: 10px;
    position: relative;
}
.link-box ul li a {
    color: var(--black);
}
.link-box .flag{
    font-size: 20px;
}
.link-box .icon{
    font-size: 15px;
    padding-right: 5px;
}
.ft-address ul li {
    padding: 5px 0px 5px 48px;
    margin-bottom: 30px;
    position: relative;
}
.ft-address ul li::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    left: 0;
    top: 5px;
    position: absolute;
    font-family: bootstrap-icons !important;
    font-size: 18px;
    text-align: center;
    color: var(--white);
    background: var(--red);
}
.ft-address ul li:nth-child(1):before {
    content: '\F64B';
}
.ft-address ul li:nth-child(2):before {
    content: '\F5B7';
}
.ft-address ul li:nth-child(3):before {
    content: '\F84B';
}
.copyright {
    background: var(--white);
    padding: 20px 0;
    margin-top: 50px;
}
.copyright p {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
}
.copyright p span {
    font-weight: 600;
}
/*--- Footer End   ---*/
/*--- SUB Banner Start  ---*/
.subbanner {
    background: url(../images/sub-banner.webp) no-repeat center;
    background-size: cover;
    height: 250px;
    clip-path: ellipse(100% 55% at 48% 44%);
}
.banner-bg {
    background: #ceb495;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.product-type-box h1 {
    text-transform: uppercase;
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 20px;
}
.product-type-box h1:after {
    position: relative;
    background: var(--white);
    width: 150px;
    height: 1px;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}
/*--- SUB Banner  End ---*/
/* ---- Company Profile Start ---- */
.banner-home .banner-content .banner-text h2 {
    font-size: 50px;
    padding: 0 0 15px;
    font-weight: 600;
    position: relative;
    color: var(--black);
}
.profile-image {
    padding: 40px 40px 0 40px;
    position: relative;
}
.profile-image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    transition: all 0.3s ease;
}
.estd {
    position: absolute;
    padding: 0px 20px;
    background: var(--white);
    right: 70px;
    top: 40px;
}
.estd h5 span {
    font-size: 50px;
    line-height: 64px;
    font-weight: 700;
    letter-spacing: 8px;
    font-family: 'Lora', serif;
}
.profile-content h4 {
    font-size: 18px;
    padding: 30px 0px 30px 30px;
    position: relative;
}
.profile-content h4:before {
    content: '\F87C';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-family: bootstrap-icons !important;
}
.profile-content h4 span {
    margin-right: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}
.profile-content h4 span:first-child {
    margin-left: 20px;
}
.profile-content h4 span:before {
    content: '\F3E7';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-family: bootstrap-icons !important;
}
.accordion-flush .accordion-item .accordion-button {
    background: #f7f7f7;
    font-weight: 500;
}
.accordion-flush .accordion-item {
    margin-bottom: 15px;
    border: 0px;
}
.accordion-flush .accordion-item:last-child {
    margin-bottom: 0px;
}
.accordion-flush .accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none !important;
}
.mission-vision .row {
    row-gap: 60px;
}
.mission-vision .row [class*="col-"]:nth-child(2) .mv-box {
    padding-left: 40px;
}
.mission-vision .row [class*="col-"]:nth-child(3) .mv-box {
    padding-right: 40px;
}
.feature {
    background: #fbfbfb;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 150px;
    position: relative;
}
.feature .row {
    row-gap: 20px;
}
.feature-box {
    padding: 25px;
    height: 100%;
    border: 1px solid #d7d7d7;
}
.feature-box p {
    color: #7f7f7f;
}
.feature-box img {
    margin-bottom: 20px;
    height: 74px;
    width: 74px;
    padding: 10px;
    border-radius: 10PX;
    filter: brightness(0) saturate(100%) invert(11%) sepia(97%) saturate(5428%) hue-rotate(190deg) brightness(90%) contrast(119%);
}
/* ---- Company Profile  End     ---- */
/* ----- User-Post Start ----- */
.about-us {
    z-index: 1;
    position: relative;
    background-color: var(--white);
}
.mission-image {
    height: 550px;
    position: relative;
}
.mission-image img {
    object-fit: cover;
}
.company-desk ul {
    list-style: none;
    margin-top: 30px;
}
.company-desk ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.company-desk ul li:before {
    content: '\F26B';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    font-family: bootstrap-icons !important;
    color: #3abbd2;
}
/* ----- User-PostEnd ----- */
/* ---- About Us End ---- */
/*/ start count stats /*/
.counter {
    background-color: var(--red);
    border-bottom-left-radius: 70px;
    border-top-right-radius: 70px;
    position: relative;
}
.counter::before {
    position: absolute;
    left: 0;
    top: -135px;
    height: 150px;
    width: 150px;
    z-index: -1;
    background: var(--red);
    content: '';
    z-index: -1;
}



section#counter-stats {
    display: flex;
    justify-content: center;
}
.stats {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}
.stats i {
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 800;
}
.stats h5 {
    font-size: 15px;
    color: var(--white);
}
.counting {
    color: var(--white);
}
/*/ end count stats /*/
/* ---- Company Profile End ---- */
/* ---- Reach Us Start ---- */
.reach-us {}
.reach-us .reach-us-txt {
    background-image: url(../images/paper-plane3.jpg);
    background-size: cover;
    width: auto;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    z-index: 9;
    padding: 40px;
}
.reach-us-txt:before {
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
}
.reach-us-txt h4 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.rub-group {
    margin-bottom: 20px;
    align-items: center;
}
.rub-group:last-child {
    margin-bottom: 0px;
}
.rub-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #3abbd2;
    text-align: center;
    border-radius: 5px;
    margin-right: 15px;
}
.rub-icon img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}
.rub-icon .flag {
    font-size: 25px;
    padding: 10px;
}
.rub-content p {
    margin-bottom: 0px;
    color: var(--black);
}
.rub-content p a {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--heading);
}
.reach-us-header {
    margin-bottom: 20px;
}
.reach-us-header h4 {
    font-family: var(--heading);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.reach-us-header p {
    color: var(--white) !important;
    font-size: 15px;
}
.contact-form {
    padding: 40px;
    background: var(--red);
}
.input-group-text {
    border: 0px;
    background: transparent;
    color: var(--white);
}
.single-input.input-group {
    border: 1px solid #fff;
    position: relative;
}
.single-input.input-group .form-control {
    border: 0px;
    color: var(--white);
}
.contact-form .single-input textarea {
    padding: 7px 10px 7px 15px;
    border: 1px solid var(--white);
}
.contact-form .single-input .form-control::placeholder {
    color: var(--white);
}
.contact-form .btn-solid {
    background: var(--white);
    color: var(--black);
}
.contact-form .single-input span select {
    height: 48px;
    background: transparent;
    border: 0px !important;
    width: 50px;
    color: #fff;
    padding: 0px;
}
.contact-form .single-input span {
    position: relative;
    margin-right: 10px;
}
.contact-form .single-input span:after {
    position: absolute;
    right: 4px;
    top: 18px;
    color: #fff;
    width: 14px;
    height: 12px;
    line-height: 12px;
    content: '\F282';
    font-family: bootstrap-icons;
}
.contact-form .single-input span select option {
    color: var(--black);
}
/* ---- Reach Us End ---- */
/* Globalize Start  */
.globalize .row {
    row-gap: 30px;
}
.gmap iframe {
    height: 350px;
}
.global-box h5 {
    font-size: 20px;
    padding: 10px 0;
    text-align: center;
    background: #343434;
    margin-bottom: 0px;
    color: #fff;
}
.globalize .section-head h6 {
    width: fit-content;
}
.globalize .section-head {
    max-width: 70%;
    margin: 0 auto 50px;
}
/* Globalize End  */
/*---  Collaboration Start --- */
.collaborative .section-head {
    max-width: 70%;
    margin-bottom: 50px;
}
.company-logo {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid #dedede

}
.company-logo img {
    height: 70px;
    object-fit: contain;
}
.collaborative .row {
    row-gap: 30px;
}
.collaborative .section-head h6 {
    width: fit-content;
}
/*---  Collaboration End --- */
/*--- Product List Start  ---*/
.products-listing .section-head h6 {
    width: fit-content;
}
.products-listing .product-image {
    padding: 15px;
    background: #f7f7f7;
}
/* .product-image img {
    object-fit: cover;
} */
.product-list .row {
    row-gap: 15px;
}
.products-listing .row .brochure-btn {
    margin-top: 30px !important;
}
.products-listing .row .brochure-btn a{
    width: 100%;
    color: var(--white);
    font-weight: 600;
    padding: 0.7rem 1rem ;
    background-color: var(--red);
}
.product-content a {
    padding: 15px 10px;
    background: #393939;
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    display: block;
}
.product-content a span {
    margin-left: 12px;
}
.category h5 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
}
.category h5:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    content: '';
    background: var(--red);
}
.category ul li {
    margin-bottom: 10px;
}
.category ul li:last-child {
    margin-bottom: 0px;
}
.category ul li a {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px 10px 30px;
    background: #f7f7f7;
    display: inline-block;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.category ul li.active a {
    color: var(--white);
    background: var(--red);
}
.category ul li a:before {
    position: absolute;
    left: 6px;
    top: 50%;
    width: 14px;
    height: 2px;
    content: '';
    background: var(--red);
}
.category ul li.active a:before {
    background: var(--white);
}
.category ul li:last-child a {
    background: #000;
    color: #fff !important;
}
.category ul li:last-child a:before {
    background: var(--white);
}
/*--- Product List End  ---*/
.pdf-box iframe {
    height: 900px;
}
/* Product Details Start  */
.product-details-content {
    padding: 0 30px;
}
.product-details-content h3 {
    font-family: var(--heading);
    font-weight: 600;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
}
.specification-rows .row:nth-child(odd) [class*="col-"]:nth-child(1){
    order: 2;
}
.specification-rows .row:nth-child(1        ) [class*="col-"]:nth-child(1){
    padding-top: 100px;
}
.specification-rows .row:nth-child(odd) .specification-box{
    padding-left: 30px;
}
.specification-rows .row:nth-child(even) .specification-box{
    padding-right: 30px;
}
.installation-details .specification-head{
    padding-left: 30px;
}
.specification-box {
    margin-bottom: 20px;
}
.specification-box h5 {
    position: relative;
    padding: 5px 10px 5px 45px;
    margin-bottom: 8px;
    font-weight: 600;
}
.specification-box h5 span {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
}
.specification-box p {
    text-overflow: clip;
    text-transform: math-auto;
    text-indent: 0px;
}
.specification-box h6 {
    padding-left: 45px;
}
/* Product Details End  */
.single-input {
    position: relative;
}
.country-code {
    position: absolute;
    top: 0;
    left: 0;
}
.single-input .country-code select {
    border: 0px !important;
    background: transparent;
    height: 50px;
    line-height: 53px;
    padding: 0px !important;
    width: 50px;
}
.phone-v {
    padding-left: 50px !important;
}
.cat-txt {
    padding: 10px 25px;
}
/* .home-map {
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
} */
.home-map iframe {
    width: 100%;
    height: 350px;
}
.single-map {
    height: 375px;
}
.single-map:first-child {
    margin-bottom: 15px;
}
.single-map iframe {
    width: 100%;
    height: 100%;
}
.map-home .menu-bar-block {
    align-content: stretch;
    justify-content: space-around;
    align-items: stretch;
    justify-items: start;
}
.spam-bulet {
    border-style: solid;
    border-radius: 20px;
    font-size: larger;
    margin: 0px;
    -webkit-text-stroke: medium;
    background: var(--red);
    border-color: var(--red);
    border-width: medium;
    color: white;
    display: inline-flex;
    justify-content: space-around;
    font-weight: 400;
}
/* sir kaj */
/* .instalation-container>.row>[class*="col-"]:nth-child(2) .product-details-content{
    padding-top: 55px;
}
.specification-head{
    width: 50%;
    right: 0;
    top: 0;
    padding-left: 50px;
} */
/* sir kaj ------------------------- */
.input-group>.form-control, .input-group>.form-select {
    border: none;
}
.form-select {
    color: #fff;
    background-color: transparent;
}
option {
    color: black;
}
.modal .btn {
    background: whitesmoke;
    color: var(--red);
    font-weight: bolder;
}
.reach-us .btn {
    background: white;
    color: var(--red);
    font-weight: bolder;
}

.contact-form .single-input{
    border: 0px;
}
.modal .contact-form .single-input {
    color: white;
}
.contact-form  .single-input .form-control{
    border: 1px solid var(--white);
    padding: 0 15px;
}

.single-input .form-control+div,
.single-input .form-select+div{
    display: none;
}
.single-input .form-control.empty_error+div,
.single-input .form-select.empty_error+div {
    display: block;
    font-size: 12px;
    color: rgb(252 80 48);
    font-weight: 500;
    padding-top: 4px;
    margin-bottom: 5px;
    flex: 0 0 100%;
    font-size: 12px;
    letter-spacing: 1px;
}
.modal .single-input .form-control.empty_error+div,
.single-input .form-select.empty_error+div {
    padding-left: 40px;
}

.modal select.form-select {
    border: 1px solid whitesmoke;
}
.modal .country-code{
    margin-left: 40px;

}
.modal .country-code img{
    display: block;
}
.country-code #Imageid{
    height: 100% !important;
}
.buisness-content input.phone-v {
    padding-left: 160px !important;
}
.modal input.phone-v {
    padding-left: 15px !important;
}
.reach-us input.phone-v {
    padding-left: 15px !important;
}
.modal .btn {
    background: whitesmoke;
    color: var(--red);
    font-weight: bolder;
    margin-left: 40px;
}


/* Product Grid Layout */
main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}
.products-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}

.product-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}
.product-card a
{
    display: block;
}

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

.image-placeholder img {
    width: 100%;
    height: 270px;
    border-bottom: 2px solid #153c75;
}

.card-content {
    padding: 20px;
    text-align: center;
}
.card-content span {
    color: #153c75;
    font-size: 24px;
    font-weight: 600;
}
.card-content h5 {
    color: #153c75;
    margin: 5px 0 15px 0;
}

.card-content a.btn {
    display: inline-block;
    padding: 12px;
    background-color: #ff9800;
    color: white;
    border-radius: 4px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.card-content a.btn:hover {
    background-color: #e68900;
}
