:root {
    /* --primary-font: "DM Serif Display", serif; */
    --primary-font: "Cal Sans", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --theme-color: #244082;
    --secondary-color: #e31e24;
    --primary-color: #ffcc29;
    --dark-color: #242424;
    --info-color: #ffffff;
    --text-color: #808080;
    --primary-font-size: 16px;
    --primary-transition-effect: all 0.35s linear;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}

.link {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    position: relative;
    margin-right: 20px;
}

.link .lnr {
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: 4px;
    right: -19px;
}

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

.section-heading,
.section-heading span,
.section-heading u {
    font-size: 38px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 15px;
    color: var(--theme-color);
    /* opacity: 0.9; */
}

.section-heading span {
    color: var(--theme-color);
}

.section-heading.white {
    color: var(--info-color);
}

.section-info {
    color: var(--dark-color);
    line-height: 25px;
    opacity: 0.8;
    font-size: 15px;
}

.section-info.white {
    color: var(--info-color);
}

.primary-color {
    color: var(--primary-color);
}

.container {
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

@media (max-width:1440px) {
    .container {
        max-width: 1350px;
    }
}

.primary-button {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 16px 30px;
    display: flex;
    color: var(--dark-color);
    line-height: 1;
    cursor: pointer;
    /* font-weight: 600; */
    transition: all 0.35s ease-in-out;
    font-family: var(--primary-font);
    border-radius: 32px;
    /* text-transform: uppercase; */
    font-size: 17px;
    align-items: center;
    max-width: max-content;
}

.primary-button:hover,
.primary-button:focus {
    border-color: var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    box-shadow: 0 0 40px rgb(21 39 84 / 33%);
}

.primary-button .lnr {
    margin-left: 6px;
    font-weight: 600;
}

.primary-button.white-btn {
    border: 1px solid var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    /* font-weight: 600; */
}

.primary-button.white-btn .lnr {
    font-weight: 600;
}

.primary-button.white-btn:hover,
.primary-button.white-btn:focus {
    border-color: var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    opacity: 0.8;
}

.primary-button.white-btn.shadow-btn {
    box-shadow: 0 0 40px rgb(21 39 84 / 13%);
}

.primary-button.red-btn {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--info-color);
    /* font-weight: 600; */
}

.primary-button.xl-button {
    padding: 15px 44px;
}

@media (max-width:480px) {
    .primary-button {
        font-size: 16px;
    }
}


/* header css */
.site-wrapper {
    overflow: hidden;
    /* height: 100vh; */
}

.header-top-bar {
    background: var(--theme-color);
}

.header-contact-info li {
    position: relative;
}

.header-contact-info li+li {
    margin-left: 15px;
    padding-left: 15px;
}

.header-contact-info li+li:before {
    content: "";
    position: absolute;
    border-left: 1px solid #ffffff52;
    top: 10px;
    bottom: 10px;
    left: 0;
}

.header-contact-info li a,
.header-short-links a {
    padding: 8px 0;
    display: inline-block;
    font-size: 14px;
    color: #fff;
    position: relative;
    /* font-weight: 600; */
}

.header-contact-info li a:hover,
.header-short-links a:hover {
    color: var(--primary-color);
}

.header-contact-info li a .lnr {
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    margin-right: 3px;
}

.header-short-links a {
    margin-left: 15px;
    padding-left: 15px;
}

.header-short-links a:before {
    content: "";
    position: absolute;
    border-left: 1px solid #e5e5e5;
    top: 8px;
    bottom: 8px;
    left: 0;
}

.header-bottom-bar {
    border-top: 1px solid #e5e5e5;
    /* padding-top: 12px;
    padding-bottom: 12px; */
    position: relative;
}

.site-logo {
    position: relative;
}

.site-logo img {
    position: relative;
    z-index: 1;
    width: 210px;
}

.site-banner-slider .slick-prev,
.site-banner-slider .slick-next {
    margin: 0;
    z-index: 1;
    width: 55px;
    height: 60px;
    border: 1px solid var(--secondary-color);
    /* border-radius: 60px; */
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-banner-slider .slick-prev {
    left: 10px;
}

.site-banner-slider .slick-next {
    right: 10px;
}

.site-banner-slider .slick-prev:before,
.site-banner-slider .slick-next::before {
    content: "";
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--info-color);
    opacity: 1;
}

.site-banner-slider .slick-prev:before {
    border-left: 2px solid var(--info-color);
    transform: rotate(45deg);
    margin-right: -5px;
}

.site-banner-slider .slick-next:before {
    border-right: 2px solid var(--info-color);
    transform: rotate(-45deg);
    margin-left: -5px;
}

.site-navbar .nav-link {
    font-size: 17px;
    color: var(--dark-color);
    /* font-family: var(--primary-font); */
    font-weight: 600;
    position: relative;
    padding: 40px 13px;
}

.has-submenu {
    position: relative;
}

.has-submenu>.nav-link {
    padding-right: 24px;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.has-submenu:hover>.nav-link {
    color: var(--secondary-color);
}

.has-submenu>.nav-link:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 46px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    transition: var(--primary-transition-effect);
}

.has-submenu>.nav-link.active::before,
.has-submenu>.nav-link:hover::before,
.has-submenu>.nav-link:focus::before,
.has-submenu:hover>.nav-link::before {
    /* color: var(--secondary-color); */
    border-color: var(--secondary-color);
}

.submenu {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--info-color);
    z-index: 1;
    width: 210px;
    border-top: 3px solid #e31e24;
    padding: 5px 10px;
    /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.1); */
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    /* transform: translateY(20px); */
    transition: all 0.35s ease-in-out;
}

.has-submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    /* transform: none; */
    max-height: 300px;
}

.has-submenu.full-width-submenu {
    position: static;
}

.submenu.full-width {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    flex-wrap: wrap;
    border-top: 0;
    border-top: 1px solid #ccc;
}

.submenu-col {
    width: 20%;
    padding: 0 40px;
    border-right: 1px solid #ccc;
}

.submenu-col:last-child {
    border-right: 0;
}

.header-bottom-bar .col {
    position: inherit;
}

.site-navbar .submenu .nav-link-heading {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    /* background: var(--theme-color); */
    color: var(--theme-color);
    padding: 8px 5px;
    display: block;
    transition: all 0.35s ease-in-out;
    border-radius: 5px;
    margin-bottom: 5px;
}

.site-navbar .submenu .nav-link-heading:hover {
    color: var(--secondary-color);
}

/* .site-navbar .submenu .nav-link-heading:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 16px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
} */
.site-navbar .submenu .nav-link {
    position: relative;
    padding: 8px 5px;
    font-size: 15px;
    color: #1e1d1d;
    transition: all 0.35s ease-in-out;
}

.submenu.full-width .submenu-col ul li:first-child {
    display: none;
}

.submenu.full-width .submenu-col ul li:first-child+li .nav-link {
    border-top: 0;
}

/* .site-navbar .submenu li + li .nav-link {
    border-top: 1px solid #ccc;
} */
.site-navbar .submenu .nav-link:hover {
    color: var(--theme-color);
    transform: translateX(5px);
}

.site-navbar>ul.d-flex {
    justify-content: flex-end;
}

.header-social-icon a {
    display: block;
    width: 14px;
    padding: 5px 0;
}

.header-social-icon li {
    margin-left: 14px;
}

.header-social-icon label {
    margin-bottom: 0;
    color: var(--info-color);
    font-weight: 600;
    font-size: 14px;
}

.site-banner {
    /* min-height: calc(100vh - 105px); */
    padding: 200px 0 100px;
    background-image: url(../img/banner-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    position: relative;
    display: flex;
    align-items: center;
}

.site-banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background: #244082f5; */
    background: rgb(0 0 0 / 15%);
}

.banner-content {
    padding-right: 80px;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--info-color);
    line-height: 76px;
    margin-bottom: 20px;
}

.banner-content h1 span {
    font-size: 30px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 50px;
    margin-bottom: 10px;
    display: block;
}

.banner-content p {
    font-size: 16px;
    color: var(--info-color);
    line-height: 34px;
    margin-bottom: 40px;
}

.banner-img {
    position: relative;
    width: 650px;
    z-index: 1;
    left: -110px;
}

.banner-img:before {
    content: "";
    position: absolute;
    left: -30px;
    top: -100px;
    bottom: -120px;
    right: -170px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) -10%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.patern-layer-one {
    position: absolute;
    left: 0;
    top: -140px;
    right: 0;
    bottom: 0;
    width: 180%;
    background-position: left center;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.4;
}

.subheading {
    color: #868686;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    border: 1px solid #ccc;
    padding: 5px 18px;
    border-radius: 20px;
}

.subheading.filled-red {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.subheading.filled-blue {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.subheading.filled-yellow {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000000;
}

.subheading.white {
    color: var(--info-color);
}

/* .subheading::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 30px;
} */
.subheading.filled-red::before {
    background: var(--info-color);
}

.subheading.filled-blue::before {
    background: var(--info-color);
}

.overflow-radius {
    border-radius: 16px;
    overflow: hidden;
    display: inline-block;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
}
.about-values li {
    width: 40%;
    font-size: 70px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--theme-color);
}
.about-values li strong {
    display: block;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-color);
}
.about-img {
    padding-right: 40px;
}

/* .about-info .section-heading {
    margin-bottom: 50px;
} */
.about-tab-content p {
    color: var(--dark-color);
    line-height: 25px;
    opacity: 0.8;
    font-size: 15px;
    margin-top: 20px;
}

.counter-numbers {
    margin: 40px -15px 0;
}

.counter-numbers ul {
    display: flex;
    flex-wrap: wrap;
}

.counter-numbers li {
    width: 50%;
    padding: 0 15px;
}

.counter-card {
    overflow: hidden;
    background: var(--info-color);
    text-align: center;
    margin-bottom: 30px;
    /* border: 1px solid var(--info-color); */
    padding: 35px 16px 30px;
    border-radius: 10px;
    position: relative;
}

/* .counter-card:before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: 0;
    background:var(--secondary-color);
    width: 240px;
    height: 60px;
    transform: rotate(-45deg);
    opacity: 0.1;
} */
.counter-num {
    color: var(--theme-color);
    /* font-weight: 600; */
    line-height: 1;
    font-size: 48px;
    font-family: var(--primary-font);
    margin-bottom: 15px;
    margin-top: 20px;
}

.counter-num span {
    font-size: 40px;
    font-weight: 200;
}

.counter-card h5 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-family: var(--secondary-font);
}

.counter-icon {
    width: 55px;
    height: 50px;
    padding: 0;
    margin: auto;
}

.product-sectiion {
    /* background: #eeeeeef2; */
    position: relative;
}

.product-bg {
    /* background: url(../img/product-bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.product-sectiion .section-info {
    margin-bottom: 40px;
}

.product-card h3,
.product-card h3 a {
    font-size: 23px;
    /* font-weight: 700; */
    margin-bottom: 5px;
    color: var(--theme-color);
}

.product-card h3 a:hover,
.product-card h3 a:focus {
    color: var(--secondary-color);
}

.product-col {
    padding: 0 15px;
    width: 33%;
    margin-bottom: 30px;
}

.product-card p {
    margin-bottom: 0;
    color: var(--dark-color);
    line-height: 25px;
    opacity: 0.7;
    font-size: 15px;
}

.product-img img {
    transition: all 0.35s ease-in-out;
}

.product-card:hover .product-img img {
    transform: scale(1.03);
}

.product-card {
    background: var(--info-color);
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}

.product-info {
    padding: 20px 25px 20px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    display: flex !important;
}

.slick-slide>div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-sectiion .slick-prev,
.product-sectiion .slick-next {
    margin: 0;
    z-index: 1;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    text-align: center;
}

.product-sectiion .slick-prev {
    left: -70px;
}

.product-sectiion .slick-next {
    right: -70px;
}

.product-sectiion .slick-prev:before,
.product-sectiion .slick-next::before {
    content: "";
    width: 17px;
    height: 17px;
    border-bottom: 2px solid var(--secondary-color);
    opacity: 1;
}

.product-sectiion .slick-prev:before {
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    margin-right: -7px;
}

.product-sectiion .slick-next:before {
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
    margin-left: -7px;
}

.solution-card {
    background: var(--info-color);
    border: 1px solid #e7e7e7;
    height: 100%;
    padding: 20px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.solution-img {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.solution-card p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 15px;
}

.solution-card h3 {
    font-size: 22px;
    /* font-weight: 700; */
    margin-bottom: 6px;
}

.solution-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 0.9;
}

.solution-card .icon {
    width: 55px;
    margin-bottom: 20px;
}

.counter-section {
    background: #244082f2;
}

.counter-app-download {
    margin-top: 30px;
}

.counter-app-download li {
    margin-right: 30px;
}

.app-scanner {
    width: 150px;
    border: 1px solid #ccc;
}

.counter-app-download a {
    display: block;
    width: 200px;
}

.counter-content {
    padding-bottom: 40px;
}

.app-img img {
    max-width: 350px;
}

.app-bg-img {
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
    opacity: 0.4;
    filter: blur(9px);
}

.app-bg-img.app-right {
    right: 30px;
}

.app-bg-img.app-left {
    left: 30px;
}

.app-bg-img img {
    max-width: 320px;
}

.trusted-section {
    background: #244082f2;
}

.feature-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.feature-card {
    background: var(--info-color);
    box-shadow: 0 0 40px 20px rgb(235 238 255 / 20%);
    padding: 20px 30px 20px 20px;
    border-radius: 12px;
    max-width: 400px;
    transition: all 0.35s ease-in;
    position: relative;
}

.left-feature .feature-card {
    text-align: right;
    padding-right: 75px;
}

.feature-card .icon {
    position: absolute;
    width: 52px;
    height: 52px;
    /* background: #55b4d8; */
    background: var(--primary-color);
    border-radius: 40px;
    top: 20px;
    text-align: center;
    line-height: 52px;
}

.feature-card .icon img {
    width: 40px;
}

.right-feature .feature-card {
    padding-left: 75px;
}

.right-feature .feature-card .icon {
    left: 15px;
    /* top: 0; */
}

.left-feature .feature-card .icon {
    right: 15px;
    /* top: 0; */
}

.feature-card h3 {
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--dark-color);
    /* text-transform: capitalize; */
    line-height: 1.4;
    margin-bottom: 5px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 20px;
}

.feature-card .icon .lnr {
    color: var(--dark-color);
    font-size: 28px;
}

.feature-img img {
    max-width: 450px;
}

.client-video {
    pointer-events: none;
    padding-top: 90%;
    position: relative;
    width: 100%;
    opacity: 0.2;
    filter: blur(10px);
    transition: all 0.35s linear;
}

.slick-active.slick-center+.feedback-col .client-video {
    opacity: 0.9;
    filter: blur(2px);
}

.slick-active .client-video {
    opacity: 1;
    filter: inherit;
    pointer-events: all;
}

.client-video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.feedback-col {
    padding: 0 10px;
}

.feedback-slider .slick-prev,
.feedback-slider .slick-next {
    margin: 0;
    z-index: 1;
    width: 55px;
    height: 55px;
    border-radius: 55px;
    border: 1px solid var(--secondary-color);
    /* border-radius: 60px; */
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-slider .slick-prev {
    left: -70px;
}

.feedback-slider .slick-next {
    right: -70px;
}

.feedback-slider .slick-prev:before,
.feedback-slider .slick-next::before {
    content: "";
    width: 14px;
    height: 14px;
    border-bottom: 2px solid var(--secondary-color);
    opacity: 1;
}

.feedback-slider .slick-prev:before {
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    margin-right: -5px;
}

.feedback-slider .slick-next:before {
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
    margin-left: -5px;
}

.contact-us {
    background: #244082f2;
}

.home-contact-info a {
    color: var(--info-color);
    padding: 20px 20px 20px 60px;
    position: relative;
    display: block;
    font-size: 17px;
}

.home-contact-info a .lnr {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: var(--primary-color);
    display: inline-block;
    text-align: center;
    line-height: 45px;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 20px;
}

.home-contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
}

.form-control {
    height: 50px;
    padding: 10px 15px;
}

.form-control:focus {
    box-shadow: none;
    outline: 0;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.home-contact-form .section-heading {
    font-size: 36px;
    line-height: normal;
}

.site-footer {
    /* position: relative; */
    background: #141923;
    padding: 80px 0 25px;
    overflow: hidden;
}

.footer-logo>a {
    display: inline-block;
    width: 200px;
}

.footer-logo p {
    color: var(--info-color);
    line-height: 28px;
    margin-bottom: 0;
    /* opacity: 0.8; */
}

.footer-links h3 {
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fecc00;
}

.footer-links .address li {
    margin-bottom: 15px;
}

.footer-links .address li a {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    color: var(--info-color);
    /* opacity: 0.8; */
}

.footer-links .address li a .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.footer-links .address li a .lnr {
    color: #e0e0e0;
}

.copyright p {
    color: var(--info-color);
    text-align: center;
    margin-top: 70px;
    margin-bottom: 0;
    padding-top: 25px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    /* opacity: 0.6; */
}

.social-links {
    display: flex;
    flex-wrap: wrap;
}

.social-links li {
    width: 34px;
    margin-right: 8px;
}

.tmt-card {
    height: 100%;
    background: var(--info-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.tmt-info {
    padding: 30px;
}

.tmt-info h3 {
    font-size: 24px;
    line-height: 30px;
    /* font-weight: 700; */
    margin-bottom: 15px;
}

.tmt-info p {
    font-size: 16px;
    color: var(--text-color);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
}

.nav-tabs .nav-link {
    border-width: 0 0px 2px 0px;
    border-color: transparent;
    color: #495057;
    font-weight: 700;
    padding: 4px 5px;
    font-size: 16px;
    font-family: var(--secondary-font);
}

.nav-item+.nav-item {
    margin-left: 15px;
}

.about-tab-content {
    margin-bottom: 30px;
}

.client-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.client-section .section-heading {
    font-size: 24px;
}

.client-section img {
    max-width: 100px;
    filter: grayscale(1);
    transition: all 0.35s ease-in-out;
}

.client-section img:hover {
    filter: none;
}

.contact-us .form-control {
    /* height: 48px; */
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-us .section-heading {
    font-size: 36px;
    margin-bottom: 3px;
}

.message-section {
    background: #244082f2;
    margin-top: 30px;
}

.message-content {
    padding-bottom: 40px;
    padding-top: 60px;
}

.message-image {
    margin-top: -160px;
}

.message-image img {
    width: 100%;
    max-width: 470px;
}

.message-content h3 {
    font-size: 30px;
    color: var(--info-color);
}

.message-content h3 b {
    font-weight: 100;
    display: block;
    margin-top: 7px;
}

.solution-section {
    background: var(--theme-color);
}

.certificate-list-box {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.certificate-list-box li {
    margin-right: 15px;
}

.certificate-box {
    background: var(--info-color);
    border: 1px solid #cdcdcd;
    border-radius: 11px;
    text-align: center;
    padding: 14px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 100px; */
}

.certificate-box img {
    filter: grayscale(1);
    max-height: 90px;
    max-width: 90px;
}

ul.address.d-flex li {
    width: 50%;
    /* margin-bottom: 12px; */
}

.message-content .section-info {
    opacity: 1;
}

.event-section {
    background: #ffffff;
    height: 100%;
    border-radius: 16px;
    padding: 100px 30px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.event-section .section-heading {
    background: var(--primary-color);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 18px 30px;
    font-size: 28px;
    color: #242424;
    line-height: normal;
}

.media-card+.media-card {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #514f4f40;
}

.media-card .date {
    /* color: #fdfdfd; */
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* opacity: 0.8; */
}

.media-card h3,
.media-card h3 a {
    font-family: var(--primary-font);
    /* font-weight: 700; */
    font-size: 24px;
    color: #244082;
    text-decoration: underline;
}

.media-card p {
    /* color: #fff; */
    opacity: 0.8;
}

.cta-section {
    background-color: #f9fcff;
    padding: 50px 70px 70px;
    text-align: center;
    border-radius: 30px;
    margin: 70px auto 0;
    max-width: 1010px;
    background-image: url(../img/section-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cta-btn .link {
    background: var(--info-color);
    padding: 85px 30px 25px;
    display: block;
    border-radius: 16px;
    color: var(--theme-color);
    width: 235px;
    border-color: var(--theme-color);
}

.cta-btn .link img {
    width: 45px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.legacy-section {
    background: var(--theme-color);
    border-radius: 40px;
}

.legacy-content {
    padding: 60px 0 60px 50px;
}

.legacy-img {
    padding: 70px 0px 0 0;
}

.legacy-img img {
    max-width: 600px;
    margin-top: -140px;
    margin-left: -70px;
}

.legacy-btn {
    margin-top: 40px;
}

/* about us page css start */
.site-inner-banner {
    position: relative;
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.site-inner-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* background: #244082f5; */
    background: rgb(0 0 0 / 50%);
}
.site-inner-banner .container {
    position: relative;
}
.site-inner-banner h1 {
    font-size: 56px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 60px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}
.about-mision-vision {
    padding: 100px 0;
    background-position: top -100px center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-mision-card {
    max-width: 550px;
    margin-left: auto;
    position: relative;
    padding-left: 90px;
}
.about-mision-card span {
    position: absolute;
    left: 0;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff3d;
    line-height: 1;
    font-family: var(--primary-font);
}
.about-mision-vision .section-heading,
.about-mision-vision .section-info {
    color: var(--info-color);
}
.about-mision-vision .section-heading {
    /* font-size: 30px; */
    line-height: normal;
    margin-bottom: 10px;
    opacity: 0.9;
}
.about-mision-vision .section-info {
    margin-bottom: 0;
}
.about-mision-card + .about-mision-card {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgb(255 255 255 / 15%);
}
/* breadcrum css start */
ul.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    justify-content: center;
}

ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: var(--info-color);
}

ul.breadcrumb li+li:before {
    padding: 6px;
    color: var(--info-color);
    content: "/\00a0";
    margin-left: 6px;
    vertical-align: text-bottom;
}

ul.breadcrumb li a {
    font-size: 18px;
    color: var(--info-color);
    text-decoration: none;
}

/* breadcrum css end */
.future-plan-content h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 15px;
    color: var(--theme-color);
}
.future-plan-content p {
    margin-bottom: 0;
    line-height: 28px;
}
.future-plan-content {
    height: 100%;
    background: #f9f9f9;
    padding: 70px;
}
.future-plan-img img {
    aspect-ratio: 4 / 2;
    object-fit: cover;
}
/* about us page css end */
/* management page css start */
.leader-content {
    /* background: var(--theme-color); */
    padding: 30px 30px 0;
    /* height: 100%; */
}
.leader-image img {
    width: 100%;
}
.leader-content h3 {
    color: var(--theme-color);
}
.leader-content h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}
.leader-content p {
    line-height: 28px;
    opacity: 0.9;
    margin-bottom: 0;
}
/* management page css end */
/* certification page css start */
.certification-content {
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.certification-content h3 {
    margin-bottom: 0;
    font-size: 24px;
    color: #242424;
}
.certification-card {
    margin-bottom: 30px;
}
/* certification page css end */
/* client page css start */
.partner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.partner-col {
    border: 1px solid #ededed;
    padding: 30px 20px;
    text-align: center;
    width: 14%;
}
.partner-img {
    width: 153px;
    height: 138px;
    overflow: hidden;
    border-radius: 20px;
}
.partner-img img {
    transform: scale(1.03);
}
#load-more.primary-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.future-plan-content.cnt {
    padding: 0px 20px;
    background: transparent;
}
  .stats-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 50px;
}

    .stat-box {
        flex: 1;
        background: #ffffff;
        border-radius: 12px;
        padding: 25px 15px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

   .stat-number {
    font-size: 20px;
    font-weight: bold;
    color: #244082;
    margin-bottom: 2px;
}
   .stat-text {
    font-size: 15px;
    color: #2e2b29;
    letter-spacing: 0.5px;
}

    /* Responsive */
    @media (max-width: 768px) {
        .stats-section {
            flex-wrap: wrap;
        }

        .stat-box {
            flex: 1 1 45%;
        }
    }

    @media (max-width: 480px) {
        .stat-box {
            flex: 1 1 100%;
        }
    }

    /* Section Styling */
.pipe-section {
    text-align: center;
    padding: 80px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
}


.pipe-table {
  width:100%;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Header */
.pipe-table thead {
    background: #244082;
    color: #fff;
}

.pipe-table th {
  padding: 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Body */
.pipe-table td {
    padding: 12px;
    color: #333;
    font-size: 16px;
}

/* Zebra Rows */
.pipe-table tbody tr:nth-child(even) {
  background-color: #f4f7fb;
}

/* Hover Effect */
.pipe-table tbody tr:hover {
  background-color: #eaf2ff;
  transition: 0.3s;
}

/* Borders */
.pipe-table th,
.pipe-table td {
  border-bottom: 1px solid #e0e0e0;
}
/* Borders */
.pipe-table th,
.pipe-table td {
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0; /* RIGHT BORDER ADDED */
}

/* Remove extra right border from last column */
.pipe-table th:last-child,
.pipe-table td:last-child {
  border-right: none;
}

.pipe-table {
  border: 1px solid #e0e0e0;
}
/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .pipe-table {
    width: 100%;
  }

  .pipe-table th,
  .pipe-table td {
    padding: 10px;
    font-size: 13px;
  }
}







.products {
  padding: 80px 80px;
  background-color:#244082f2;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.products .card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* GRADIENT BORDER EFFECT */
/* .products .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2;
    padding: 5px;
    background: black;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: 0.4s;
    border: 2px solid #ffcc29;
}

.products .card:hover::before {
  opacity: 1;
} */

/* HOVER LIFT */
/* .products .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
} */

/* IMAGE */
.img-box {
  overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* IMAGE ZOOM */
.products .card:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.content {
  padding: 22px;
}

.content h3 {
    font-size: 20px;
   
    color: #244082;
}

.content p {
    font-size: 16px;
    color: #212529;
    margin-bottom: 18px;
    line-height: 24px;
}



.tmtplus-features {
    padding: 80px;
    background: #f4f7fb;
    text-align: center;
}



.tmtplus-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
 
  margin: auto;
}

.tmtplus-features .feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  border-top: 4px solid #e60023;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.tmtplus-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.tmtplus-features .feature-card .icon {
    /* font-size: 112px; */
    /* color: #e60023; */
    margin-bottom: 15px;
    position: relative;
    background: #ffcc29;
    top: 0px;
    text-align: center;
    display: inline-block;
    /* padding: 20px; */
    width: 80px;
    height: 80px;
    line-height: 70px;
}

.tmtplus-features .feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #244082;
}

.tmtplus-features .feature-card p {
    font-size: 16px;
    color: #212529;
    /* margin: 4px 0; */
    line-height: 24px;
}
.tmtplus-features .feature-card {
    
    max-width: 470px;
    
}

.tmtplus-features .feature-card .icon img {
    width: 48px;
}
/* Responsive */
@media (max-width: 992px) {
  .tmtplus-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tmtplus-features .features-grid {
    grid-template-columns: 1fr;
  }
}

 .app-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr); /* mobile */
  }

  @media(min-width: 600px) {
    .app-grid {
      grid-template-columns: repeat(2, 1fr); /* tablet */
    }
  }

  @media(min-width: 992px) {
    .app-grid {
      grid-template-columns: repeat(4, 1fr); /* desktop */
    }
  }

  .app-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    padding: 10px 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

  .app-card img {
   
    margin-bottom: 20px;
  }

.app-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #244082;
}
  

  .download-button{
    text-align: center;
    display: inline-block;
    margin-top: 50px;
}

.tmtp-trust-section {
  padding: 70px 20px;
  background: #f4f7fb;
  font-family: Arial, sans-serif;
}

.tmtp-container {
  max-width: 1200px;
  margin: auto;
}

.tmtp-header {
    text-align: center;
    margin-bottom: 20px;
}


.tmtp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}


.tmtp-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tmtp-card::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 0%;
  background: #0b3d91;
  top: 0;
  left: 0;
  transition: 0.3s;
}

.tmtp-card:hover::before {
  width: 100%;
}

.tmtp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Icon */
.tmtp-icon {
  margin-bottom: 15px;
}



.tmtp-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0b3d91;
}


.tmtp-badges {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.tmtp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
}

.tmtp-badge img {
    width: 60px;
    height: 60px;
}

.tmtp-badge span {
    font-size: 18px;
    font-weight: 600;
    color: #0b3d91;
}

/* CTA */
.tmtp-cta {
  text-align: center;
  margin-top: 50px;
}

.tmtp-btn {
  background: #0b3d91;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}



/* Responsive */
@media (max-width: 768px) {
  .tmtp-header h2 {
    font-size: 26px;
  }
}

.certifications-section {
  padding: 60px 20px;
  background: #f8fafc;
  text-align: center;
}


.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.cert-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
}

.cert-icon img {
 
  margin-bottom: 15px;
}

.cert-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #244082;
}



.cert-link {
    display: inline-block;
    font-size: 14px;
    color: #244082;
    text-decoration: none;
    font-weight: 600;
}

.cert-link:hover {
  text-decoration: underline;
}

.faq-section {
    padding: 80px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: #f7f7f7;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}
.faq-question:hover {
  background: #eaeaea;
}

.faq-icon {
  font-weight: bold;
  transition: color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 26px;
}


.faq-item.active .faq-answer {
  max-height: 500px; /* large enough to fit content */
  padding: 15px 20px;
}

.faq-item.active .faq-icon {
  content: "-";
}

.products-section {
    padding: 60px 20px;
    background: #f9fbfd;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
    background: #fff;
   
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.product-card img {
 
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #244082;
}

.product-card p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}

.download-button.button {
    margin-bottom: 40px;
}

   
 .highlights__track {
    display: flex;
    gap: 40px;
    padding: 16px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

  .highlights__track::-webkit-scrollbar {
    display: none;
  }

  .highlights__item {
    flex: 0 0 auto;
    min-width: 117px;
    padding: 34px;
    border-radius: 18px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

  .highlights__item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgb(36 64 130);
}

  .highlights__icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #244082;
    box-shadow: 0 6px 14px rgb(36 64 130);
}
  
  .highlights__label {
    font-size: 18px;
    font-weight: 600;
    /* color: var(--clr-text); */
}

  .highlights__icon-box img {
    max-width: 60px;
}
  @media (min-width: 768px) {
    .highlights__track {
      justify-content: center;
      overflow: visible;
    }
  }

  .highlights {
    padding: 80px;
}

.img-box.upvc-pipe img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content.upvc-pipe h3 {
    text-align: center;
}





.tmtplus-features .features-grid.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: auto;
}

.pipe-table-v1 {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pipe-table-v1 {
    border: 1px solid #e0e0e0;
}

.pipe-table-v1 thead {
    background: #244082;
    color: #fff;
}

.pipe-table-v1 th, .pipe-table-v1 td {
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.pipe-table-v1 th {
    padding: 14px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pipe-table-v1 td {
    padding: 12px;
    color: #333;
    font-size: 16px;
    width: 50%;
}

.pipe-table-v1 tbody tr:nth-child(even) {
    background-color: #f4f7fb;
}

.pipe-section-v1 {
    padding: 80px 0;
}

 .image-box-card {
    position: relative;
    height: 401px;
    background-image: url(../img/pipe1.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    /* overflow: hidden; */
    margin-bottom: 30px;
    position: relative;
}

  .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px  30px;
    
    justify-content: center;
    color: #fff;
    text-align: center;
}
.overlay-content p {
    
    margin-bottom: 0;
}
 .overlay-content h3 {
    font-size: 22px;
   
}

    .why-use-product-section {
    padding: 80px 0;
}

.conduit-pipes-card {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    height: 100%;
}

.conduit-pipes-card-content {
    border-top: 2px solid #2a4582;
    padding: 20px 20px;
    height: 100%;
}
.conduit-pipes-card h3 {
    font-size: 20px;
    /* margin-bottom: 15px; */
    color: #223d7c;
    margin-bottom: 13px;
}

.conduit-pipes-card-content p {
    padding: 0px 18px;
}
.conduit-pipes-card img {
    height: 150px;
}

.conduit-pipes-card.pipe-range {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    /* text-align: center; */
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    height: 100%;
}
.conduit-pipes-card.pipe-range img {
   height: 100px;

}

.conduit-pipes-card.pipe-range h3 {
    font-size: 18px;
    /* margin-bottom: 15px; */
    color: #223d7c;
    margin-bottom: 13px;
}
.feature-card-specification {
    background: var(--info-color);
    box-shadow: 0 0 40px 20px rgb(235 238 255 / 20%);
    padding: 20px 30px 20px 20px;
    border-radius: 12px;
    max-width: 400px;
    transition: all 0.35s ease-in;
    position: relative;
}

.feature-card-specification .icon {
    margin-bottom: 15px;
    position: relative;
    width: 62px;
    height: 62px;
    /* background: #55b4d8; */
    background: #ffcc29;
    border-radius: 40px;
    /* top: 20px; */
    text-align: center;
    line-height: 62px;
    display: inline-block;
}



.feature-card-specification .icon img {
    width: 40px;
}

.feature-card-specification h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2b4686;
    line-height: 30px;
}

.feature-card-specification p {
    font-size: 16px;
    color: #212529;
    /* margin: 4px 0; */
    line-height: 25px;
}

.feature-card-icon {
    background: #fff;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 17%);
    transition: all 0.3s ease;
    height: 100%;
    
}

.feature-card-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #e31e24c7;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon h2 {
    font-size: 22px;
    /* margin-bottom: 10px; */
    color: #223d7c;
}

.feature-card-icon p {
    font-size: 16px;
    color: #353236;
}

.water-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    /* overflow: hidden; */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255,255,255,0.4); */
    /* transition: all 0.4s ease; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
}

.water-img-box img {
    /* width: 180px; */
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.water-content {
    padding: 22px 10px;
    text-align: center;
}
.water-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #244082;
}
.water-content p {
    font-size: 16px;
    color: #212529;
    margin-bottom: 18px;
    line-height: 24px;}

    .water-tank-img {
    text-align: center;
}

.water-tank-img img {
    height: 450px;
}

    


.why-choose-tmt li .lnr {
    color: #e31e24;
    font-weight: 900!important;
    /* padding-right: 10px; */
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 3px;
}

.why-choose-tmt li {
    margin-top: 7px;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

.why-choose-tmt {
    padding-right: 100px;
}

.counter-numbers.icon li {
    width: 33%;
    padding: 0 15px;
}

.image-box-card {
    position: relative;
    height: 401px;
    background-image: url(../img/pipe1.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}



.image-box-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to top, black 10%, transparent 80%);
}

.product-heading {
    font-size: 22px;
    margin-bottom: 10px;
    color: #242424;
    text-align: center;
}

h3.product-heading.white {
    color: #fff;
}

 
    .benefits-row{
        display:flex;
        flex-wrap:wrap;
        gap:20px;
        justify-content:center;
    }

    .benefit-box{
        background:#fff;
        border-radius:16px;
        padding:30px 22px;
        text-align:center;
        width:calc(20% - 16px);
        box-shadow:0 4px 14px rgba(0,0,0,0.08);
        transition:0.3s ease;
    }

    .benefit-box:hover{
        transform:translateY(-6px);
    }

 .benefit-box-card {
    margin-bottom: 15px;
    position: relative;
    background: #ffcc29;
    top: 0px;
    text-align: center;
    display: inline-block;
    /* padding: 20px; */
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 40px;
}

    .benefit-box-card img {
    width: 32px;
}

    .benefit-box h3{
       font-size: 22px;
    margin-bottom: 10px;
    color: #244082;
    }

   .benefit-box p {
    font-size: 15px;
    color: #212529;
    line-height: 25px;
}

    /* Tablet */
    @media(max-width:991px){
        .benefit-box{
            width:calc(33.33% - 14px);
        }
    }

    /* Mobile - 2 Columns */
    @media(max-width:600px){
        .benefit-box{
            width:calc(50% - 10px);
            padding:24px 16px;
        }

        .benefit-box h3{
            font-size:18px;
        }

        .benefit-box p{
            font-size:14px;
        }
    }

     .testimonials-section {
      max-width: 1100px;
      margin: auto;
    }

    

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: #ffffff;
      padding: 35px;
      border-radius: 18px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .testimonial-card::before {
    content: "❝";
    font-size: 60px;
    color: #e94f54;
    position: absolute;
    top: 15px;
    left: 20px;
    opacity: 0.15;
}

   

    .testimonial-author {
     
      border-top: 1px solid #e5e5e5;
      padding-top: 18px;
    }

    .testimonial-author strong {
    color: #244082;
}
.project-type {
    color: #244082;
    font-weight: 600;
}

    @media (max-width: 600px) {
      
      .testimonial-card {
        padding: 25px;
      }

      .testimonial-text {
        font-size: 16px;
      }
    }

   .pipex-showcase-wrap {
    width: 100%;
    padding: 70px 20px;
    background: #f4f7fb;
}

    .pipex-container{
      max-width:1200px;
      margin:auto;
    }

    /* ===== HEADING ===== */
.pipex-heading-box {
    text-align: center;
    margin-bottom: 25px;
}

    .pipex-heading-box h1{
      font-size:42px;
      font-weight:700;
      color:#0f172a;
      margin-bottom:14px;
    }

    .pipex-heading-box p{
      max-width:760px;
      margin:auto;
      color:#64748b;
      line-height:1.8;
      font-size:16px;
    }

    /* ===== CARDS ===== */

    .pipex-grid-layout{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:30px;
    }

   .pipex-product-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 20px 20px;
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid #dbe5f1;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}
    .pipex-product-card:hover{
      transform:translateY(-8px);
      box-shadow:0 20px 40px rgba(15,23,42,0.14);
    }

   .pipex-product-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    /* background: linear-gradient(90deg,#2563eb,#06b6d4); */
}

    /* ===== ICON ===== */

    .pipex-icon-wrap {
    
    border-radius: 18px;
   
    display: flex;
    align-items: center;
    justify-content: center;
   
    margin-bottom: 24px;
}

   

    .pipex-product-title {
    font-size: 22px;
    font-weight: 500;
    color: #244082;
    margin-bottom: 14px;
}

    .pipex-product-desc{
      color:#475569;
      line-height:1.8;
      font-size:15px;
      margin-bottom:24px;
    }

    .pipex-feature-list{
      list-style:none;
      margin-bottom:28px;
    }

    .pipex-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 5px;
    /* color: #334155; */
    font-size: 16px;
    line-height: 1.6;
}

    .pipex-feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e31e2a;
    font-weight: 700;
}

    /* ===== PRICE ===== */

    .pipex-price-tag{
      font-size:24px;
      font-weight:700;
      color:#2563eb;
      margin-bottom:26px;
    }

    /* ===== BUTTON ===== */

    .pipex-btn-main{
      width:100%;
      display:inline-flex;
      justify-content:center;
      align-items:center;
      text-decoration:none;
      background:linear-gradient(90deg,#2563eb,#0ea5e9);
      color:#fff;
      padding:15px 24px;
      border-radius:14px;
      font-weight:600;
      transition:0.3s ease;
    }

    .pipex-btn-main:hover{
      background:linear-gradient(90deg,#1d4ed8,#0284c7);
      transform:scale(1.02);
    }

    /* ===== RESPONSIVE ===== */

    @media(max-width:768px){

      .pipex-showcase-wrap{
        padding:55px 18px;
      }

      .pipex-heading-box h1{
        font-size:32px;
      }

      .pipex-product-card{
        padding:28px 22px;
      }

      .pipex-product-title{
        font-size:24px;
      }

    }

    .stat-box.stat{
    padding: 15px 7px;
    }
   
   
   
.stat-box.stat .stat-number {
    font-size: 19px;
    font-weight: bold;
    color: #244082;
    margin-bottom: 2px;
}

.spec-wrapper {
    max-width: 1400px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    padding: 80px 0;
}

/* Heading */
.spec-header{
    background:linear-gradient(135deg,#0047ab,#009dff);
    padding:24px;
    text-align:center;
}

.spec-header h1{
    color:#fff;
    font-size:30px;
    font-weight:700;
    letter-spacing:0.5px;
}

/* Table */
.pipe-spec-table{
    width:100%;
    border-collapse:collapse;
}

/* Head rows */
.pipe-spec-table thead .main-head{
    background:#244082;
    color:#fff;
}

.pipe-spec-table thead .sub-head {
    background: #244082;
    color: #fff;
}

/* Common cells */
.pipe-spec-table th,
.pipe-spec-table td{
    border:1px solid #d9e2ef;
    padding:14px 10px;
    text-align:center;
    font-size:14px;
}

/* Header cells */
.pipe-spec-table th{
    font-weight:600;
}


.pipe-spec-table tbody tr:nth-child(even){
    background:#f7fbff;
}

.pipe-spec-table tbody tr:hover{
    background:#e8f3ff;
    transition:0.25s ease;
}

/* Responsive */
@media(max-width:768px){

    .spec-header h1{
        font-size:22px;
    }

    .pipe-spec-table th,
    .pipe-spec-table td{
        padding:10px 6px;
        font-size:12px;
    }
}

.feature-card-specification.junction-box {
    max-width: 100%;
}

  .news-blog-wrapper{
      max-width:1200px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:32px;
    }

    /* ===== SINGLE BLOG CARD ===== */

    .news-blog-card{
      background:#f5f5f5;
      overflow:hidden;
      transition:0.3s ease;
    }

    .news-blog-card:hover{
      transform:translateY(-6px);
    }

    /* ===== IMAGE ===== */

    .news-blog-thumbnail img{
      width:100%;
      height:180px;
      object-fit:cover;
      display:block;
    }

    /* ===== CONTENT ===== */

    .news-blog-details{
      padding:22px;
    }

    .news-blog-heading{
      font-size:22px;
      line-height:1.4;
      color:#173f90;
     
    }

    .news-blog-publish-date{
      font-size:16px;
      color:#111;
    
    }

   .news-blog-summary {
    font-size: 16px;
    line-height: 29px;
}

    /* ===== BUTTON ===== */

    .news-blog-read-btn {
    display: inline-block;
    padding: 9px 16px;
    background: #ff0037;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}
    .news-blog-read-btn:hover{
      background:#d4002d;
    }

    /* ===== RESPONSIVE ===== */

    @media(max-width:768px){

     

      .news-blog-heading{
        font-size:20px;
      }

      .news-blog-summary{
        font-size:16px;
      }

    }

    .news-blog-thumbnail.blogs img {
    height: 100%;
}

h3.news-blog-summary.keys {
    font-size: 21px;
    color: #173f90;
}
ul.target-based-section li {
    line-height: 30px;
}

/* MAIN LAYOUT */
.blog-wrapper{
   
}


.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 23%);
    transition: 0.35s ease;
    position: relative;
    height: 100%;
}
.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.blog-image{
    position:relative;
    overflow:hidden;
    /* height:240px; */
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.blog-card:hover img{
    transform:scale(1.08);
}


.blog-content{
    padding:28px;
}

.blog-meta {
    display: flex;
    gap: 11px;
    /* flex-wrap: wrap; */
    font-size: 14px;
    /* color: #777; */
    margin-bottom: 18px;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.blog-title {
    font-size: 22px;
    line-height: 30px;
    color: #244082;
    margin-bottom: 22px;
    /* font-weight: 600; */
    transition: 0.3s;
}

.sidebar{
    position:sticky;
    top:30px;
}

.sidebar-box{
    background:#fff;
    border-radius:18px;
    padding:28px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.sidebar-title{
    font-size:22px;
    color:#12326b;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.sidebar-title::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:60px;
    height:3px;
    background:#ff003c;
    border-radius:10px;
}


.search-box{
    display:flex;
    overflow:hidden;
    border-radius:50px;
    border:1px solid #ddd;
}

.search-box input{
    width:100%;
    border:none;
    padding:14px 18px;
    outline:none;
    font-size:15px;
}

.search-box button{
    border:none;
    background:#ff003c;
    color:#fff;
    padding:0 22px;
    cursor:pointer;
    font-size:16px;
}

/* LISTS */
.sidebar-box ul{
    list-style:none;
}

.sidebar-box ul li{
    margin-bottom:14px;
}

.sidebar-box ul li a{
    text-decoration:none;
    color:#555;
    font-size:15px;
    transition:0.3s;
    display:flex;
    justify-content:space-between;
}

.sidebar-box ul li a:hover{
    color:#ff003c;
    padding-left:6px;
}


.recent-post{
    display:flex;
    gap:14px;
    margin-bottom:18px;
}

.recent-post img{
    width:80px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
}

.recent-post h4{
    font-size:15px;
    line-height:1.4;
    color:#12326b;
    margin-bottom:6px;
}

.recent-post span{
    font-size:13px;
    color:#777;
}


@media(max-width:992px){

    .blog-wrapper{
        grid-template-columns:1fr;
    }

    .sidebar{
        position:relative;
        top:0;
    }

}



.journey-section {
            background: url("./img/world-map.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
        }
        .journey-list-wrap {
            display: flex;
            flex-wrap: wrap;
            padding: 260px 0;
            position: relative;
        }
        .journey-list-wrap:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            border-bottom: 2px solid rgb(36 64 130 / 12%);
            transform: translateY(-50%);
        }
        .journey-card {
            width: 16.66%;
            position: relative;
        }
        .journey-card:before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 15px;
            width: 10px;
            height: 10px;
            background: var(--theme-color);
            border-radius: 10px;
            outline-offset: 6px;
            outline: 2px solid #244082a3;
            z-index: 1;
        }
        .journey-card:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 32px;
            border-left: 1px solid var(--theme-color);
            bottom: -20px;
            transform: translateX(-50%);
        }
        .journey-card:nth-child(odd):after {
            top: -20px;
            bottom: 33px;
        }
        .journey-card .journey-icon {
            width: 40px;
            opacity: 0.1;
            display: inline-block;
            position: relative;
            top: -43px;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.35s ease-in;
        }
        .journey-card:hover .journey-icon {
            opacity: 1;
        }
        .journey-card:nth-child(odd) .journey-icon {
            top: 43px;
            transform: translateX(-50%) rotate(180deg);
        }
        .journey-card-content {
            position: absolute;
            top: 60px;
            left: 0;
            width: 270px;
            /* text-align: center; */
            background: #f3f3f3;
            padding: 15px 20px;
            border-top: 2px solid var(--theme-color);
        }
        .journey-card:nth-child(odd) .journey-card-content {
            top: inherit;
            bottom: 150%;
            height: 175px;
        }
        .journey-card-content h3 {
            font-size: 20px;
            color: var(--theme-color);
            margin-bottom: 12px;
        }
        .journey-card-content li {
            padding-left: 20px;
            position: relative;
            color: #898989;
            font-size: 15px;
        }
        .journey-card-content li + li {
            margin-top: 5px;
        }
        .journey-card-content li .lnr {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--theme-color);
            font-weight: 600;
        }

        .upvc-enquiry-section{
    background:#f4f7fb;
    padding:60px 20px;
}

.upvc-enquiry-container {
    /* max-width: 900px; */
    /* margin: auto; */
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.upvc-enquiry-header{
    text-align:center;
    margin-bottom:35px;
}

.upvc-enquiry-header h2 {
    font-size: 38px;
    color: #244082;
    margin-bottom: 10px;
    font-weight: 500;
}

.upvc-enquiry-header p{
    color:#64748b;
    font-size:16px;
}

.upvc-form-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.upvc-form-group{
    display:flex;
    flex-direction:column;
}

.upvc-form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #244082;
}

.upvc-form-group label span{
    color:#ef4444;
}

.upvc-form-group input,
.upvc-form-group select,
.upvc-form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #dbe2ea;
    border-radius:10px;
    font-size:15px;
    background:#fff;
    transition:all 0.3s ease;
}

.upvc-form-group input:focus,
.upvc-form-group select:focus,
.upvc-form-group textarea:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.upvc-full-width{
    grid-column:1 / -1;
}

.upvc-submit-btn {
    margin-top: 25px;
    width: 100%;
    max-width: 350px;
    background: #ffcc29;
    color: #242426;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin: 40px auto 0;
    display: block;
}

.upvc-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,0.25);
}

@media(max-width:768px){

    .upvc-enquiry-container{
        padding:25px;
    }

    .upvc-form-grid{
        grid-template-columns:1fr;
    }

    .upvc-enquiry-header h2{
        font-size:28px;
    }
}

.pdf-container{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

.pdf-card {
   
    background: #eee;
    border: 2px solid #ff1e1e;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
}

.pdf-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    padding: 20px;
}
.card-footer{
    background:#7b431d;
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:24px;
    font-weight:bold;
}

/* .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.4s;
} */

.download-btn{
    text-decoration:none;
    background:#ff3b30;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.download-btn:hover{
    background:#fff;
    color:#ff3b30;
}

.pdf-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.pdf-card:hover .overlay{
    opacity:1;
}
.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:15px;
} 

.video-grid iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:10px;
}

.contact-wrapper{
    background:#f7f9fc;
}

.contact-details-box{
    padding:40px;
    height:100%;
}

.contact-icon-box span {
    font-size: 25px;
    color: #fff;
}

.section-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #e31e24e6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-box i{
    color:#fff;
    font-size:20px;
}

.contact-text h6 {
    /* font-weight: 600; */
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-text p{
    margin:0;
    color:#444;
    line-height:1.6;
}

.form-panel{
    background:#eef3fb;
    padding:40px;
    border-radius:10px;
    height:100%;
}

.form-title{
    font-size:34px;
    margin-bottom:25px;
    font-weight:600;
}

.custom-field{
    height:50px;
    border-radius:6px;
    border:1px solid #d7dce3;
}

textarea.custom-field{
    height:auto;
}

.custom-field:focus{
    box-shadow:none;
    border-color:#0056b3;
}

.submit-btn-custom {
    background: #ffcc29;
    color: #2e2529;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.social-li-nks {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 25px;
    width: 40px;
    animation: bounce2 2s ease infinite 1s;
}

.call-us {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 80px;
    width: 40px;
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.contact-btn{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%) rotate(-90deg);
    transform-origin:right top;
    background:#ff003c;
    color:#fff;
    border:none;
    padding:12px 25px;
    cursor:pointer;
    font-size:18px;
    z-index:999;
}

/*book an appointment css start*/
.download-brochure-form {
    width: 350px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    background: #fff;
    padding: 70px 20px 35px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    transition: all 0.35s ease-in-out;
    /* overflow: hidden; */
}
@media only screen and (max-width: 767px) {
    .download-brochure-form {
        width: 300px;
        padding: 30px 20px;
    }
}
.download-brochure-form.active {
    transform: translate(0, -50%);
}
.download-brochure-form > .btn-default {
    background: #e31e24;
    color: #fff;
    padding: 8px 31px;
    position: absolute;
    left: -98px;
    top: 200px;
    transform: rotate(-90deg);
    font-size: 17px;
    font-weight: 500;
    font-family: var(--primary-font);
    /* border-top-left-radius: 20px; */
    /* border-top-right-radius: 20px; */
    border: 0;
    letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
    .download-brochure-form > .btn-default {
        padding: 10px 20px;
        left: -121px;
        font-size: 16px;
    }
}
.download-brochure-form .btn-default::before {
    display: none;
}
.download-brochure-form h3 {
    /* font-size: 25px; */
    text-transform: capitalize;
    color: #244082;
    /* margin-bottom: 9px; */
    /* line-height: 30px; */
    font-weight: 500;
    font-family: var(--primary-font);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* background: var(--theme-color); */
    padding: 20px;
    /* border-top-right-radius: 20px; */
    /* border-top-left-radius: 20px; */
}
@media only screen and (max-width: 767px) {
    .download-brochure-form h3 {
        font-size: 18px;
    }
}
.download-brochure-form .form-control {
    height: 48px;
    box-shadow: none;
    background: #f6f6f6;
    border: 0;
   
    padding: 12px 20px;
}
.download-brochure-form textarea.form-control {
    height: 100px;
  
    resize: none;
}
.download-brochure-form .tl-primary-btn {
    background: var(--theme-color);
    color: #fff;
    border: 0;
    border-radius: 11px;
    font-size: 18px;
    padding: 10px 10px;
    display: block;
   
}
/*book an appointment css end*/

.gallery-section a {
    position: relative;
    display: block;
}
.gallery-section a .lnr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    z-index: 1;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.35s ease-in-out;
}
.gallery-section a:hover .lnr {
    transform: translate(-50%,-50%) scale(1);
}

.stats-section.pt-0 {
    margin-top: 20px;
}