/*
Theme Name: tiss-theme
*/


@font-face {
	font-family: sf-pro-display-light;
	src: url(../tiss-theme/assets/sf-pro-display/FontsFree-Net-SFProDisplay-Light.ttf);
	font-weight: 500;
}

@font-face {
	font-family: sf-pro-display-regular;
	src: url(../tiss-theme/assets/sf-pro-display/FontsFree-Net-SFProDisplay-Regular.ttf);
	font-weight: 600;
}

@font-face {
	font-family: sf-pro-display-medium;
	src: url(../tiss-theme/assets/sf-pro-display/FontsFree-Net-SFProDisplay-Medium.ttf);
	font-weight: 700;
}


h1,h2,h3,h4,h5,h6{
     font-family: "sf-pro-display-medium";
}

p, a{
   font-family: "sf-pro-display-regular";
    color: #000000de;  
    font-size: 16px;                                         
}

span{
    font-family: "sf-pro-display-regular";  
}

a:hover{
    text-decoration: none !important;
}

.error-404 img{
    width: 100%;
    height: 485px;
    object-fit: contain;
    margin: 106px 0;
}
/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1D1D1D;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #EF832A;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
    scroll-behavior: smooth;
}

body{
    background: #ffffff !important;
}

.container {
    max-width: unset !important;
    padding: 0 8% !important;
}



/* top header start */

.top-header {
    padding: 10px 0;
    background: #EF832A;
    display: flex;
    align-items: center !important;
    justify-content: center;
    width: 100%;
    z-index: 100;
}

.cont-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 15px;
}

.cont-head-info a, .cont-head-email, .cont-head-address {
    display: flex;
    align-items: center;
}

.cont-head-info-email, .cont-head-info-numb {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
}

.cont-head i {
    color: #fff;
    margin-right: 6px;
    font-size: 18px;
}

.cont-head a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.cont-head a:hover {
    color: #000000;
}

.cont-head-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #fff;
}


/* top header ends */


/* header section start */

.header-wrapper {
    padding: 8px 0;
    width: 100%;
    background: #ffffff;
    text-align: center;
    box-shadow: 0px 4px 4px 0 #00000021;
}

.main-header-wraper {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
}

.f-nav .main-header-wraper {
    z-index: 999;
    transition: .3s ease;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);

}

.header-logo img {
    width: 88px;
    object-fit: cover;
    height: auto;
    margin-right: auto;
    display: block;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 80px;
}

.f-nav .menu-logoheader{
    padding-top: 0;
}

.header-logo,
.header-menu,
.header-search {
    display: flex;
    align-items: center;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #000000 !important;
    font-size: 16px !important;
    padding: 0px 16px 0px 16px !important;
}

/* Header search wrapper */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #000;
}

/* Search form (hidden by default) */
.header-search-form {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
    margin-top: 10px;
}

/* Input */
.header-search-input {
    width: 220px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Active state */
.header-search.active .header-search-form {
    display: block;
}


 /* header section ends */



/* banner section start  */

.banner-section {
    padding: 145px 0 0;
    overflow: hidden;
}

.banner-slider .banner {
    height: 100vh;
    background-size: cover;
    background-position: center right;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-slider .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 22%) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.banner-content {
    position: absolute;
    top: 45%;
    transform: translateY(-55%);
    max-width: 34%;
    color: #fff;
}

.banner-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 28px;
}

.banner-btn {
    padding: 12px 32px;
    background: #f7941d;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.banner-btn:hover {
    background: #000000;
    color: #fff;
}


/* banner section start  */


/* banner below section start  */

.banner-below-section {
    background: #fff;
    padding: 60px 0;
}

.ban-below-col {
    display: flex;
    justify-content: center;
}

.banner-below-logo {
    width: 130px;
    height: auto;
    transition: transform 0.6s ease;
    transform: rotate(0deg);
}

.banner-below-section:hover .banner-below-logo {
    transform: rotate(-175deg);
}

.banner-below-title {
    font-size: 54px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

.banner-below-highlight {
    display: block;
    color: #f7941d;
}

.banner-below-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
}



/* banner below section end  */


/* about section start  */

.about-banner-section {
    position: relative;
}

.about-banner-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
265deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.1) 100%);
}

.about-banner-content {
    position: relative;
    color: #fff;
}

.about-banner-subtitle {
    display: inline-block;
    color: #ef832a;
    font-size: 26px;
    margin-bottom: 10px;
}

.about-banner-text h1 {
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-banner-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

.about-banner-arrow-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transform: rotate(45deg);
    transition: 0.4s ease-in-out;
}

.about-banner-arrow {
    font-size: 28px;
    color: #f7941d;
    transition: transform 0.3s ease;
}

.about-banner-arrow-link:hover {
    transform: rotate(0deg);
}


/* about section end  */


/* product section start  */

.inner-our-products-section {
  padding: 60px 0;
  background: #ffffff;
}

.our-products-section {
  padding: 60px 0;
  background: #ffffff;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.products-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
}

.products-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content !important;
}

.products-nav.swiper-pagination-horizontal {
  position: static;
  width: auto;
}

.products-nav .swiper-pagination-bullet {
  margin: 0;
}

.products-nav .nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6C7275;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.products-nav .nav-dot.active, .products-nav .nav-dot.swiper-pagination-bullet-active {
    background: #ffffff;
    width: 18px;
    height: 18px;
    border: 1px solid #141718;
    position: relative;
}

.products-nav .nav-dot.active::before, .products-nav .nav-dot.swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    top: 51%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #141718;
}

.products-col {
    margin-bottom: 20px;
}

.our-products-slider {
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.products-grid {
  width: 100%;
}

.products-grid .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.products-grid .row.g-4 > * {
  padding: 0 12px;
}

.products-grid .row.mt-4 {
  margin-top: 30px !important;
}

.product-card {
    background: #F6F6F6;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 11%);
    transition: all 0.3s ease;
}

.product-image-wrap {
    position: relative;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
  max-width: 100%;
  max-height: 140px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover {
  background: #111;
  transform: scale(1.1);
}

.wishlist-btn i {
  font-size: 16px;
  color: #666;
  transition: color 0.3s ease;
}

.wishlist-btn:hover i {
    color: #000000;
}

.wishlist-btn.active i {
  color: #ff4444;
}

.product-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-description {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-btn {
    display: inline-block;
    padding: 10px 50px;
    background: #111;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
}

.product-btn:hover {
  background: #000;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* products Section  Ends */

.mobile-products-section {
    display: none;
}

.mobile-products-section {
  padding: 60px 0;
  background: #ffffff;
}

.mobile-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-products-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
}

.mobile-products-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content !important;
}

.mobile-products-nav.swiper-pagination-horizontal {
  position: static;
  width: auto;
}

.mobile-products-nav .swiper-pagination-bullet {
  margin: 0;
}

.mobile-products-nav .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6C7275;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.mobile-products-nav .swiper-pagination-bullet.active,
.mobile-products-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
  width: 18px;
  height: 18px;
  border: 1px solid #141718;
  position: relative;
}

.mobile-products-nav .swiper-pagination-bullet.active::before,
.mobile-products-nav .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #141718;
}

.mobile-products-slider {
  overflow: hidden;
  position: relative;
}

.mobile-product-card {
  background: #F6F6F6;
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 2px rgb(0 0 0 / 11%);
  transition: all 0.3s ease;
}

.mobile-product-image-wrap {
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-product-image {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mobile-product-card:hover .mobile-product-image {
  transform: scale(1.05);
}

.mobile-wishlist-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.mobile-wishlist-btn i {
  font-size: 16px;
  color: #666;
}

.mobile-product-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.mobile-product-description {
  font-size: 14px;
  color: #999999;
  margin-bottom: 15px;
}

.mobile-product-footer-btn {
    margin-top: 60px;
    text-align: center;
}

.mobile-product-btn {
    display: inline-block;
    padding: 10px 50px;
    background: #111;
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
}

.mobile-product-btn:hover {
    background: #000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-products-slider .slick-slide {
    padding: 0 12px;
}

.mobile-products-slider .slick-list {
    margin: 0 -12px;
}





/* Safety Promo Section start */

.safety-promo-section {
    background-color: #1a1a1a;
    overflow: hidden;
}

.safety-contain {
    padding: 0 !important;
}

.promo-image-col {
    position: relative;
    min-height: 500px;
}

.safety-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.promo-content-col {
    display: flex;
    align-items: center;
    background-color: #141718;
}

.promo-text-wrap {
    max-width: 550px;
    padding-left: 45px;
}

.promo-subtitle {
    display: block;
    color: #ff8c31;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.promo-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-description {
    color: #bbbbbb;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 420px;
}

.promo-enquiry-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff8c31, #ff6b00);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.promo-enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    color: #ffffff !important;
}

/* Safety Promo Section Ends */


/* testimonial section start */

.testimonial-section {
    padding: 60px 0;
    background: #FBFBFB;
    overflow: hidden;
}

.testimonial-heading {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: left;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider .slick-track {
  display: flex;
  align-items: flex-start;
}

.testimonial-slider .slick-track {
    min-height: 430px;
}

.testimonial-slide {
  padding: 0 15px;
}

.testimonial-scale {
    transform: scale(0.9);
    transform-origin: top left;
    transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
    padding: 10px;
}

.slick-center .testimonial-scale {
    transform: scale(1.4);
    transform-origin: top center;
    padding: 10px;
}

.testimonial-slider .slick-center {
  opacity: 1;
  z-index: 5;
}

.testimonial-card {
    background: #fff;
    border-radius: 13px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: -10px 10px 18px 0px rgb(77 77 77 / 13%);
    position: relative;
    overflow: visible;
    margin-top: 60px;
}

.slick-center .testimonial-card {
    margin-top: 70px;
}

.testimonial-image {
    width: 45%;
    position: relative;
    display: flex;
    align-items: stretch;
    align-self: flex-start;
}

.testimonial-text {
  flex: 1;
  position: relative;
}

span.quote {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
    margin-top: -10px;
}

.quote img {
    width: 25px;
    height: auto;
    object-fit: contain;
}

.slick-center .quote img {
    width: 35px;
}

.testimonial-content p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.slick-center .testimonial-content p {
    font-size: 10px !important;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 0px;
}

.slick-center .testimonial-name {
    font-size: 14px;
    margin-bottom: 0px;
}

.testimonial-para {
    font-size: 10px;
    color: #999;
    margin: 0;
}

.slick-center .testimonial-para {
    font-size: 8px;
}

.testimonial-image img {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: all 0.6s cubic-bezier(.2,.9,.3,1);
}

.slick-center .testimonial-image {
    width: 45%;
}

.slick-center .testimonial-image img {
    height: 240px !important;
    top: -50px;
}

.testimonial-arrows {
    margin-top: -30px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.testimonial-arrows button {
    font-size: 36px;
    line-height: 1;
    border: none;
    background: none;
    cursor: pointer;
    color: #f07a2b;
    transition: transform .3s ease;
}

.testimonial-arrows button:hover {
  transform: scale(1.15);
}

.testimonial-slide.slick-slide.next-slide .testimonial-scale {
    transform: scale(0.9);
    transform-origin: top right;
    transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
}


/* testimonial section ends */


/* blog section start  */

.blog-news-section {
    padding: 60px 0;
}

.blog-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.blog-col {
    margin-bottom: 20px;
}

.blog-news-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-news-viewall {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid;
}

.blog-news-viewall:hover {
    color: #ef832a;
}

.blog-news-card {
    margin-bottom: 30px;
}

.blog-news-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.blog-news-image video {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.blog-news-post-title {
    margin: 15px 0;
}

.blog-news-post-title a {
    color: #000;
    font-size: 24px;
    font-family: "sf-pro-display-medium";
    text-decoration: none;
}

.blog-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid;
}

.blog-news-link:hover {
    text-decoration: underline;
    color: #ef832a;
}


/* blog section end */



/* contact us section start  */

.enquiry-section {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 50px 0 0;
    position: relative;
    width: 100%;
    height: auto;
}

.enquiry-content {
    position: relative;
}

.enquiry-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.enquiry-form-wrapper input,
.enquiry-form-wrapper textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.enquiry-form-wrapper input::placeholder,
.enquiry-form-wrapper textarea::placeholder {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.enquiry-form-wrapper .row > div {
  margin-bottom: 24px;
}

.enquiry-form-wrapper input[type="submit"] {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 7px 30px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
    width: fit-content;
    float: left;
}

.enquiry-form-wrapper input[type="submit"]:hover {
  background: #ffffff;
  color: #000000;
}

.wpcf7-spinner {
  display: none;
}


/* contact us section end  */


/* client section start  */

.clients-section {
    padding: 60px 0;
    background-color: #fff;
}

.inner-clients-section {
    padding: 60px 0;
    background-color: #fff;
}

.client-section-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.inner-client-title {
    text-align: left !important; 
    margin-bottom: 50px;
}

.client-section-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.5;
}

.client-col {
    margin-bottom: 20px;
}

.client-logo-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #fafafa;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
    height: 140px;
}

.client-logo-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-name-placeholder {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* client section end  */

.mobile-client-section {
    display: none;
}

.mobile-client-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* HEADER */
.mobile-client-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-client-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 60px;
    line-height: 1.5;
}

/* SLIDER FIX */
.mobile-client-slider .slick-slide {
    padding: 0 12px;
}

.mobile-client-slider .slick-list {
    margin: 0 -12px;
}

/* LOGO CARD */
.mobile-client-logo-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #fafafa;
}

.mobile-client-logo-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.mobile-client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mobile-client-placeholder {
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* FOOTER BUTTON */
.mobile-client-footer-btn {
    margin-top: 40px;
    text-align: center;
}




/* footer section start  */

.footerwrapper {
    background: #000000;
    color: #fff;
    padding: 60px 0 30px;
    font-size: 14px;
}

.footer-brand-logo {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #ccc;
    font-size: 22px;
    line-height: 1.6;
}

.footerwrapper h4 {
    font-size: 16px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #fefefe;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul {
    padding: 0;
}

.footer-menu li {
    margin-bottom: 20px;
    list-style: none;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-menu-two-col {
    column-count: 2;
}

.footer-contact p {
    display: flex;
    gap: 10px;
    color: #aaa;
    margin-bottom: 20px;
}

.footer-contact i {
    color: #fff;
}

.footer-divider {
    border-top: 1px solid #6c7275;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #4f4f4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a i {
    color: #fff;
    font-size: 15px;

    /* Visible text glow */
    text-shadow:
        0 1px 1px rgba(0,0,0,0.8),
        0 0 4px rgba(255,255,255,0.35);
}

.footer-social a:hover {
    background: #ef832a;
    transform: translateY(-4px);
    box-shadow: 0 0 10px rgba(255,255,255,0.25),
        0 6px 14px rgba(0,0,0,1);
}
.copyright {
    color: #aaa;
    font-size: 15px;
}
/* footer section end */


/* inner page header section start  */

.innerpage-header {
    position: relative;
    height: 68vh;
    overflow: hidden;
}

.innerpage-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(54 54 54 / 50%);
    z-index: 1;
}

.innerpage-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pageheading-middle {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    transform: translateY(50%);
}

.pageheading-middle a {
  color: #ffcb04;
}

/* inner page header section end  */


/* inner page about us section start  */

.inner-about-section {
    padding: 80px 0 60px;
    position: relative;
    background: #ffffff;
}

.mv-col {
    margin-bottom: 20px;
}

.inner-about-images {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.inner-about-image-left {
  width: calc(50% - 10px);
}

.inner-about-image-left img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.inner-about-image-right {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inner-about-right-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.inner-about-badge img {
  max-width: 230px;
  width: 100%;
  display: block;
  border-radius: 16px;
}

.inner-about-content .inner-about-sub-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #9b7cff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.inner-about-content h2 {
    display: inline-block;
    color: #ef832a;
    font-size: 26px;
    margin-bottom: 10px;
}

.inner-about-text h1 {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.inner-about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 30px;
}

/* BUTTON */
.inner-about-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #9b7cff;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inner-about-btn:hover {
  background: #7f63f4;
  color: #ffffff;
}



/* mission and vision section  */

.mission-vision-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.mission-vision-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.mission-vision-icon img {
    width: 60px;
    margin-bottom: 15px;
}

.mission-vision-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ef832a;
}

.mission-vision-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* inner page about us section end  */


/* single products section start  */

.single-product-section {
    padding: 60px 0;
}

.single-product-image-box {
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.single-product-detail-img {
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.single-product-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-description-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.single-btn-product-enquiry {
    background: #111;
    color: #fff;
    padding: 15px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 10px;
}

.single-btn-product-enquiry:hover {
    background: #ef832a;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.related-products-section {
    padding: 60px 0;
}

.related-products-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.related-products-slider .related-products-slide {
    padding: 0 12px;
}

.related-products-slider .slick-list {
    margin: 0 -12px;
}

.related-products-card {
    background: #F6F6F6;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 11%);
    transition: all 0.3s ease;
}

.related-products-image-wrap {
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-products-image {
    width: 100%;
    height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-products-card:hover .related-products-image {
    transform: scale(1.05);
}

.related-products-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-products-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.related-products-description {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.related-products-btn {
    display: inline-block;
    padding: 10px 50px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: center;
}

.related-products-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Slick arrows */
.related-products-slider .slick-arrow {
    background: #111;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    z-index: 2;
}

.related-products-slider .slick-arrow:before {
    color: #fff;
    font-size: 16px;
}

.related-products-slider .slick-prev {
    left: -45px;
}

.related-products-slider .slick-next {
    right: -45px;
}




/* single products section end  */


/* inner page projects section start  */

.inner-projects-wrap {
  padding: 80px 0;
}

.inner-projects-col {
    margin-bottom: 20px;
}

.inner-projects-card {
    background: #fff;
    box-shadow: 8px 5px 12px #0000002b;
}

.inner-projects-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.inner-projects-content {
  padding: 15px;
}

.inner-projects-title {
    max-width: 80%;
    position: relative;
    z-index: 2;
    margin-top: -40px;
    padding: 10px;
    left: -15px;
    background: #ffffff;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.inner-projects-title a {
    color: #000000;
    font-size: 18px;
    text-decoration: none !important;
}

.inner-projects-excerpt {
    font-size: 14px;
    color: #00000099;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.inner-projects-readmore {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #000;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.4s ease;
}

.inner-projects-readmore .readmore-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.13);
    border-radius: 8px;
    color: #000000cc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    will-change: transform, background, color;
    transition: 0.5s all ease-in-out;
}

.inner-projects-readmore .readmore-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.3, 1),
    background 0.8s,
    color 0.8s,
    border-radius 0.8s;
}

.inner-projects-readmore:hover .readmore-text  {
    transform: translateX(-40px);
}

.inner-projects-readmore:hover .readmore-icon {
    transform: translateX(90px);
    background: #ef832a;
    color: #fff;
    border-radius: 50%;
}

.inner-projects-readmore:hover, .inner-projects-title a:hover {
    color: #ef832a;
}

/* inner page projects section end  */


/* single page project section start  */


.single-project-wrap {
  padding: 60px 0;
}

.single-project-header {
  margin-bottom: 20px;
}

.single-project-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
}

.single-project-image {
  margin-bottom: 40px;
}

.single-project-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.single-project-content {
  margin-bottom: 20px;
}

.single-project-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #00000099;
    margin-bottom: 10px;
}

/* single page project section end  */


/* inner page testimonial section start  */

.inner-testimonial-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.inner-testimonial-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 50px;
}

.inner-testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.inner-testimonial-quote {
    font-size: 32px;
    color: #ff8c31;
    opacity: 0.3;
    margin-bottom: 20px;
}

.inner-testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.inner-testimonial-readmore {
    background: none;
    border: none;
    color: #ff8c31;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.inner-testimonial-readmore:hover {
    text-decoration: none;
    color: #000000;
}

.inner-testimonial-user {
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

.inner-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.inner-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-testimonial-name {
    font-size: 18px;
    margin: 0 0 10px;
}

.inner-testimonial-designation {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
}

/* Popup */
.inner-testimonial-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.inner-testimonial-popup-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.inner-testimonial-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.inner-testimonial-popup-user {
    margin-bottom: 20px;
}

.popup-name {
    font-size: 20px;
    margin: 0 0 10px;
}

.popup-designation {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
}

.popup-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.popup-content-wrapper {
    max-height: 400px;
    overflow: auto;
}


/* inner page testimonial section end  */


/* inner page blog section start  */

.inner-blog-section {
    padding: 60px 0;
}

.inner-blog-header {
    margin-bottom: 50px;
}

.inner-blog-title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
}

.inner-blog-viewall {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid;
    text-decoration: none;
}

.inner-blog-col {
    margin-bottom: 20px;
}

.inner-blog-card {
    margin-bottom: 30px;
}

.inner-blog-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 15px;
}

.inner-blog-image video {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.inner-blog-post-title {
    margin: 15px 0;
    font-size: 24px;
    font-family: "sf-pro-display-medium";
    color: #000;
}

.inner-blog-content {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.inner-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid;
}

.inner-blog-link:hover {
    text-decoration: underline;
    color: #ef832a;
    transition: 0.3s ease-in-out;
}

/* inner page blog section end  */


/* single page blog section start  */

.single-blog-section {
    padding: 80px 0;
}

.single-blog-media {
    margin-bottom: 40px;
    overflow: hidden;
}

.single-blog-media img,
.single-blog-media video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.single-blog-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.single-blog-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.single-blog-text p {
    margin-bottom: 18px;
}

.single-blog-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}


/* single page blog section end  */


/* inner contact us start */

.inner-getintouch-wrap {
    padding: 60px 0;
    background: #f3f3f3;
}

.inner-getintouch-wrap .container {
    max-width: 1200px;
    margin: auto;
}

.inner-getintouch-header {
    text-align: left;
    margin-bottom: 40px;
    max-width: 800px;
}

.inner-getintouch-header-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 15px;
}

.inner-getintouch-header-subtitle {
    font-size: 18px;
    color: #00000099;
    line-height: 1.6;
}

.inner-getintouch-row {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #00000040;
    border-radius: 20px;
    padding: 20px;
}

.inner-getintouch-col {
    padding: 0 !important;
    margin-bottom: 20px;
}

.inner-getintouch-col-bottom {
    padding: 0 !important;
}

.inner-getintouch-content {
    padding: 20px 20px 0px 0;
    flex: 1;
}

.inner-getintouch-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.inner-getintouch-form-wrap p {
    margin: 0;
}

.inner-getintouch-wrap label {
    font-size: 16px;
    color: #000;
    margin-bottom: 6px;
}

.inner-getintouch-wrap input[type="text"],
.inner-getintouch-wrap input[type="tel"],
.inner-getintouch-wrap input[type="email"],
.inner-getintouch-wrap textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #fff;
    color: #000;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.inner-getintouch-wrap input[type="text"]:focus,
.inner-getintouch-wrap input[type="tel"]:focus,
.inner-getintouch-wrap input[type="email"]:focus,
.inner-getintouch-wrap textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.inner-getintouch-wrap textarea {
    resize: vertical;
    max-height: 150px;
}

.inner-getintouch-wrap input[type="submit"], .inner-getintouch-wrap .wpcf7-submit {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.inner-getintouch-wrap input[type="submit"]:hover,
.inner-getintouch-wrap .wpcf7-submit:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

.inner-getintouch-note {
    margin-top: 12px;
    font-size: 14px;
    color: #000000;
}

.inner-getintouch-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.inner-getintouch-iframe p {
    margin: 0;
}

.inner-getintouch-iframe iframe {
    width: 100%;
    height: 400px;
    border: 5px solid #00000020 !important;
    border-radius: 12px;
}

.wpcf7-spinner {
    visibility: hidden;
    display: none !important;
}

/* inner contact us ends */








@media only screen and (min-width: 300px) and (max-width: 575.5px) {

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

p {
    text-align: center;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #000000 !important;
    font-size: 16px !important;
    padding: 0px 16px 0px 45px !important;
    position: relative !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("./assets/img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
}

.cont-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    font-size: 15px;
}

.cont-head a {
    font-size: 10px;
}

.cont-head i {
    font-size: 12px;
}

.cont-head-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
}

.header-logo img {
    width: 70px;
    object-fit: cover;
    height: auto;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 60px;
}

.header-search {
    display: none;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/* banner section start */

.banner-section {
    padding: 125px 0 0;
    overflow: hidden;
}

.banner-slider .banner {
    height: 85vh;
}

.banner-content {
    max-width: 85%;
    text-align: center;
}

.banner-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 14px;
}

.banner-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* banner section end */



/* banner below section start  */

.banner-below-logo {
    width: 100px;
    height: auto;
}

.banner-below-title {
    font-size: 28px;
    margin-top: 30px;
}

.banner-below-desc {
    font-size: 14px;
}


/* banner below section end  */



/* about us section start  */

.about-banner-subtitle {
    font-size: 18px;
}

.about-banner-text h1 {
    font-size: 28px;
}

.about-banner-text p {
    font-size: 14px;
}

.about-banner-arrow {
    font-size: 18px;
}

.about-banner-content {
    position: relative;
    color: #fff;
    text-align: center;
}


/* about us section end  */


/* products section start  */

.mobile-products-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.mobile-products-header {
    display: unset;
}

.our-products-section {
    display: none;
}

.mobile-products-section {
    display: block;
}


/* products section end  */


/* Safety Promo Section start */

.promo-text-wrap {
    max-width: unset;
    padding-left: 30px;
    text-align: center;
}

.promo-subtitle {
    font-size: 14px;
    margin: 30px 0;
}

.promo-title {
    color: #ffffff;
    font-size: 28px;
}

.promo-description {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: unset;
}

.promo-enquiry-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    margin-bottom: 20px;
}


/* Safety Promo Section end */


/* testimonial section start */

.testimonial-heading {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-card {
    display: block;
}

.testimonial-image {
    width: 100%;
    position: unset;
}

.testimonial-image img {
    position: unset !important;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testimonial-para {
    margin-bottom: 25px;
}

.testimonial-arrows button {
    font-size: 18px;
}

.testimonial-slider .slick-track {
    min-height: unset;
}

.slick-center .testimonial-image img {
    height: 180px !important;
    top: 0;
    object-position: top;
}

.slick-center .testimonial-image {
    width: 100%;
}

.slick-center .testimonial-scale {
    transform: unset;
    transform-origin: top center;
    padding: 10px;
}

.slick-center .testimonial-card {
    margin-top: 0;
}

.slick-center .testimonial-image img {
    height: 240px !important;
    top: 0;
}

.testimonial-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: all 0.6s cubic-bezier(.2,.9,.3,1);
}


/* testimonial section ends */


/* blog section start  */

.blog-news-title {
    font-size: 28px;
    margin: 0;
}

.blog-news-card {
    margin-bottom: 30px;
    text-align: center;
}

.blog-news-viewall {
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid;
}

.blog-news-image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.blog-news-post-title a {
    font-size: 16px;
}

.blog-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 14px;
}

/* blog section end  */



/* enquiry section start  */

.enquiry-title {
    font-size: 28px;
}

.enquiry-form-wrapper input[type="submit"] {
    float: unset;
}


/* enquiry section end  */


/* client section start  */

.client-section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.mobile-client-title {
    font-size: 28px;
}

.mobile-client-subtitle {
    font-size: 14px;
    color: #444;
    margin-bottom: 60px;
    line-height: 1.5;
}

.client-section-subtitle {
    font-size: 14px;
}

.clients-section {
    display: none;
}

.mobile-client-section {
    display: block;
}

/* client section end  */


/* footer section start  */

.footerwrapper h4 {
    font-size: 16px;
    text-align: left;
}

.footer-tagline {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact p {
    font-size: 14px;
}

/* footer section end  */



/* inner banner header section start  */

.pageheading-middle h2 {
    font-size: 18px;
}

.pageheading-middle a {
    font-size: 14px;
}

.pageheading-middle span {
    font-size: 14px;
}


/* inner banner header section end  */


/* inner page about us section start */

.inner-about-right-image {
    width: 100%;
    height: 250px;
}

.inner-about-image-left img {
    width: 100%;
    height: 250px;
}

.inner-about-content h2 {
    font-size: 18px;
    margin: 20px 0;
}

.inner-about-text h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.inner-about-text p {
    font-size: 14px;
    line-height: 1.7;
}

.mission-vision-icon img {
    width: 50px;
    margin-bottom: 15px;
}

.mission-vision-title {
    font-size: 22px;
}

.mission-vision-content {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* inner page about us section end */


/* single page products section start  */

.single-product-detail-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.single-product-title {
    font-size: 25px;
    margin: 20px 0;
}

.product-description-content p {
    font-size: 14px;
    margin-bottom: 30px;
}

.related-products-title {
    font-size: 24px;
    margin-bottom: 40px;
}

.related-products-btn {
    display: inline-block;
    padding: 10px 25px;
}


/* single page products section end  */


/* inner page project section start  */

.products-title {
    font-size: 28px;
}

.inner-projects-title a {
    font-size: 16px;
}

/* inner page project section end  */


/* single project section start  */

.single-project-title {
    font-size: 26px;
}

.single-project-content p {
    font-size: 14px;
}

/* single project section end  */


/* inner page testimonial section start  */

.inner-testimonial-title {
    font-size: 28px;
    margin-bottom: 50px;
}

.inner-testimonial-quote {
    font-size: 26px;
    margin-bottom: 20px;
}

.inner-testimonial-content {
    font-size: 14px;
    margin-bottom: 10px;
}

.inner-testimonial-name {
    font-size: 12px;
    margin: 0 0 10px;
}  

.inner-testimonial-avatar {
    width: 50px;
    height: 50px;
}

.inner-testimonial-designation {
    font-size: 10px;
}

.inner-testimonial-readmore {
    font-size: 14px;
}

.popup-name {
    font-size: 16px;
    margin: 0 0 10px;
}

.popup-designation {
    font-size: 10px;
}

.popup-content {
    font-size: 14px;
}


/* inner page testimonial section end  */



/* inner page blog section start  */


.inner-blog-title {
    font-size: 28px;
}

.inner-blog-image img {
    width: 100%;
    height: 100%;
}

.inner-blog-post-title {
    margin: 15px 0;
    font-size: 18px;
}

.inner-blog-content {
    font-size: 14px;
}

/* inner page blog section end  */


/* single page blog section start  */

.single-blog-media img, .single-blog-media video {
    width: 100%;
    height: 100%;
}

.single-blog-title {
    font-size: 28px;
}

.single-blog-text p {
    font-size: 14px;
    margin-bottom: 18px;
}

/* single page blog section end  */



/* inner page contact section end  */

.inner-getintouch-header-title {
    font-size: 28px;
}

.inner-getintouch-header-subtitle {
    font-size: 14px;
}

.inner-getintouch-title {
    font-size: 18px;
}

.inner-getintouch-wrap label {
    font-size: 14px;
}

.inner-getintouch-wrap input[type="submit"], .inner-getintouch-wrap .wpcf7-submit {
    font-size: 14px;
}


/* inner page contact section end  */



}



@media only screen and (min-width: 576px) and (max-width: 991.5px) {

  

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #000000 !important;
    font-size: 16px !important;
    padding: 0px 16px 0px 45px !important;
    position: relative !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("./assets/img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
}

.cont-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    font-size: 15px;
}

.cont-head a {
    font-size: 14px;
}

.cont-head i {
    font-size: 16px;
}

.cont-head-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.header-logo img {
    width: 75px;
    object-fit: cover;
    height: auto;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 65px;
}

.header-search {
    display: none;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/* banner section start */

.banner-section {
    padding: 125px 0 0;
    overflow: hidden;
}

.banner-slider .banner {
    height: 85vh;
}

.banner-content {
    max-width: 85%;
}

.banner-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
}

.banner-btn {
    padding: 10px 20px;
    font-size: 16px;
}

/* banner section end */



/* banner below section start  */

.banner-below-logo {
    width: 120px;
    height: auto;
}

.banner-below-title {
    font-size: 38px;
    margin-top: 30px;
}

.banner-below-desc {
    font-size: 16px;
}


/* banner below section end  */



/* about us section start  */

.about-banner-subtitle {
    font-size: 22px;
}

.about-banner-text h1 {
    font-size: 38px;
}

.about-banner-text p {
    font-size: 16px;
}

.about-banner-arrow {
    font-size: 20px;
}


/* about us section end  */


/* products section start  */

.products-title {
    font-size: 36px;
}


/* products section end  */


/* Safety Promo Section start */

.promo-text-wrap {
    max-width: unset;
    padding-left: 30px;
}

.promo-subtitle {
    font-size: 16px;
    margin: 30px 0;
}

.promo-title {
    color: #ffffff;
    font-size: 36px;
}

.promo-description {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: unset;
}

.promo-enquiry-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    margin-bottom: 20px;
}


/* Safety Promo Section end */


/* testimonial section start */

.testimonial-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

.testimonial-card {
    display: block;
    margin-top: 0;
}

.testimonial-image {
    width: 100%;
    position: unset;
}

.testimonial-image img {
    position: unset !important;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testimonial-para {
    margin-bottom: 25px;
}

.testimonial-arrows button {
    font-size: 18px;
}

.testimonial-slider .slick-track {
    min-height: unset;
}

.testimonial-arrows {
    margin-top: 0px;
}

.slick-center .testimonial-image img {
    height: 180px !important;
    top: 0;
    object-position: top;
}

.slick-center .testimonial-image {
    width: 100%;
}

.slick-center .testimonial-scale {
    transform: unset;
    transform-origin: top center;
    padding: 10px;
}

.slick-center .testimonial-card {
    margin-top: 0;
}

.slick-center .testimonial-image img {
    height: 240px !important;
    top: 0;
}

.testimonial-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: all 0.6s cubic-bezier(.2,.9,.3,1);
}


/* testimonial section ends */


/* blog section start  */

.blog-news-title {
    font-size: 36px;
    margin: 0;
}

.blog-news-viewall {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid;
}

.blog-news-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.blog-news-post-title a {
    font-size: 20px;
}

.blog-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 16px;
}

/* blog section end  */



/* enquiry section start  */

.enquiry-title {
    font-size: 36px;
}


/* enquiry section end  */


/* client section start  */

.client-section-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.client-section-subtitle {
    font-size: 16px;
}

/* client section end  */


/* footer section start  */

.footer-tagline {
    color: #ccc;
    font-size: 22px;
    line-height: 1.6;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
}

.footer-contact p {
    font-size: 16px;
}

/* footer section end  */



/* inner banner header section start  */

.pageheading-middle h2 {
    font-size: 24px;
}

.pageheading-middle a {
    font-size: 16px;
}

.pageheading-middle span {
    font-size: 16px;
}


/* inner banner header section end  */


/* inner page about us section start */

.inner-about-right-image {
    width: 100%;
    height: 250px;
}

.inner-about-image-left img {
    width: 100%;
    height: 250px;
}

.inner-about-content h2 {
    font-size: 24px;
    margin: 20px 0;
}

.inner-about-text h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.inner-about-text p {
    font-size: 16px;
    line-height: 1.7;
}

.mission-vision-icon img {
    width: 50px;
    margin-bottom: 15px;
}

.mission-vision-title {
    font-size: 26px;
}

.mission-vision-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* inner page about us section end */


/* single page products section start  */

.single-product-detail-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.single-product-title {
    font-size: 30px;
    margin: 20px 0;
}

.product-description-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.related-products-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.related-products-btn {
    display: inline-block;
    padding: 10px 25px;
}


/* single page products section end  */


/* inner page project section start  */

.inner-projects-title a {
    font-size: 18px;
}

/* inner page project section end  */


/* single project section start  */

.single-project-title {
    font-size: 32px;
}

.single-project-content p {
    font-size: 16px;
}

/* single project section end  */


/* inner page testimonial section start  */

.inner-testimonial-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.inner-testimonial-quote {
    font-size: 30px;
    margin-bottom: 20px;
}

.inner-testimonial-content {
    font-size: 16px;
    margin-bottom: 10px;
}

.inner-testimonial-name {
    font-size: 16px;
    margin: 0 0 10px;
}

.inner-testimonial-avatar {
    width: 60px;
    height: 60px;
}

.inner-testimonial-designation {
    font-size: 12px;
    margin: 0;
}

.inner-testimonial-readmore {
    font-size: 16px;
}

.popup-name {
    font-size: 16px;
    margin: 0 0 10px;
}

.popup-designation {
    font-size: 10px;
}

.popup-content {
    font-size: 16px;
}


/* inner page testimonial section end  */



/* inner page blog section start  */


.inner-blog-title {
    font-size: 16px6
}

.inner-blog-image img {
    width: 100%;
    height: 290px;
}

.inner-blog-post-title {
    margin: 15px 0;
    font-size: 22px;
}

.inner-blog-content {
    font-size: 16px;
}

/* inner page blog section end  */


/* single page blog section start  */

.single-blog-media img, .single-blog-media video {
    width: 100%;
    height: 100%;
}

.single-blog-title {
    font-size: 36px;
}

.single-blog-text p {
    font-size: 16px;
    margin-bottom: 18px;
}

/* single page blog section end  */



/* inner page contact section end  */

.inner-getintouch-header-title {
    font-size: 36px;
}

.inner-getintouch-header-subtitle {
    font-size: 16px;
}

.inner-getintouch-title {
    font-size: 22px;
}

.inner-getintouch-wrap label {
    font-size: 16px;
}

.inner-getintouch-wrap input[type="submit"], .inner-getintouch-wrap .wpcf7-submit {
    font-size: 16px;
}


}



@media only screen and (min-width: 992px) and (max-width: 1200.5px) {

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #000000 !important;
    font-size: 16px !important;
    padding: 0px 16px 0px 45px !important;
    position: relative !important;
}

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("./assets/img/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
    background: #ffffff !important;
}

.cont-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    font-size: 15px;
}

.cont-head a {
    font-size: 14px;
}

.cont-head i {
    font-size: 16px;
}

.cont-head-address {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.header-logo img {
    width: 75px;
    object-fit: cover;
    height: auto;
}

.f-nav .header-wrapper .header-logo img {
    height: auto;
    width: 65px;
}

.header-search {
    display: none;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/* banner section start */

.banner-section {
    padding: 125px 0 0;
    overflow: hidden;
}

.banner-slider .banner {
    height: 85vh;
}

.banner-content {
    max-width: 85%;
}

.banner-title {
    font-size: 44px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
}

.banner-btn {
    padding: 10px 20px;
    font-size: 16px;
}

/* banner section end */



/* banner below section start  */

.banner-below-logo {
    width: 120px;
    height: auto;
}

.banner-below-title {
    font-size: 38px;
    margin-top: 30px;
}

.banner-below-desc {
    font-size: 16px;
}


/* banner below section end  */



/* about us section start  */

.about-banner-subtitle {
    font-size: 22px;
}

.about-banner-text h1 {
    font-size: 38px;
}

.about-banner-text p {
    font-size: 16px;
}

.about-banner-arrow {
    font-size: 20px;
}


/* about us section end  */


/* products section start  */

.products-title {
    font-size: 36px;
}


/* products section end  */


/* Safety Promo Section start */

.promo-text-wrap {
    max-width: unset;
    padding-left: 30px;
}

.promo-subtitle {
    font-size: 16px;
    margin: 30px 0;
}

.promo-title {
    color: #ffffff;
    font-size: 36px;
}

.promo-description {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: unset;
}

.promo-enquiry-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    margin-bottom: 20px;
}


/* Safety Promo Section end */


/* testimonial section start */

.testimonial-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

.testimonial-card {
    display: block;
    margin-top: 0;
}

.testimonial-image {
    width: 100%;
    position: unset;
}

.testimonial-image img {
    position: unset !important;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.testimonial-para {
    margin-bottom: 25px;
}

.testimonial-arrows button {
    font-size: 18px;
}

.testimonial-slider .slick-track {
    min-height: unset;
}

.testimonial-arrows {
    margin-top: 0px;
}

.slick-center .testimonial-image img {
    height: 180px !important;
    top: 0;
    object-position: top;
}

.slick-center .testimonial-image {
    width: 100%;
}

.slick-center .testimonial-scale {
    transform: unset;
    transform-origin: top center;
    padding: 10px;
}

.slick-center .testimonial-card {
    margin-top: 0;
}

.slick-center .testimonial-image img {
    height: 240px !important;
    top: 0;
}

.testimonial-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: all 0.6s cubic-bezier(.2,.9,.3,1);
}


/* testimonial section ends */


/* blog section start  */

.blog-news-title {
    font-size: 36px;
    margin: 0;
}

.blog-news-viewall {
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid;
}

.blog-news-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.blog-news-post-title a {
    font-size: 20px;
}

.blog-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 16px;
}

/* blog section end  */



/* enquiry section start  */

.enquiry-title {
    font-size: 36px;
}


/* enquiry section end  */


/* client section start  */

.client-section-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.client-section-subtitle {
    font-size: 16px;
}

/* client section end  */


/* footer section start  */

.footer-tagline {
    color: #ccc;
    font-size: 22px;
    line-height: 1.6;
}

.footer-menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
}

.footer-contact p {
    font-size: 16px;
}

/* footer section end  */



/* inner banner header section start  */

.pageheading-middle h2 {
    font-size: 24px;
}

.pageheading-middle a {
    font-size: 16px;
}

.pageheading-middle span {
    font-size: 16px;
}


/* inner banner header section end  */


/* inner page about us section start */

.inner-about-right-image {
    width: 100%;
    height: 250px;
}

.inner-about-image-left img {
    width: 100%;
    height: 250px;
}

.inner-about-content h2 {
    font-size: 24px;
    margin: 20px 0;
}

.inner-about-text h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.inner-about-text p {
    font-size: 16px;
    line-height: 1.7;
}

.mission-vision-icon img {
    width: 50px;
    margin-bottom: 15px;
}

.mission-vision-title {
    font-size: 26px;
}

.mission-vision-content {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* inner page about us section end */


/* single page products section start  */

.single-product-detail-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.single-product-title {
    font-size: 30px;
    margin: 20px 0;
}

.product-description-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.related-products-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.related-products-btn {
    display: inline-block;
    padding: 10px 25px;
}


/* single page products section end  */


/* inner page project section start  */

.inner-projects-title a {
    font-size: 18px;
}

/* inner page project section end  */


/* single project section start  */

.single-project-title {
    font-size: 32px;
}

.single-project-content p {
    font-size: 16px;
}

/* single project section end  */


/* inner page testimonial section start  */

.inner-testimonial-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.inner-testimonial-quote {
    font-size: 30px;
    margin-bottom: 20px;
}

.inner-testimonial-content {
    font-size: 16px;
    margin-bottom: 10px;
}

.inner-testimonial-name {
    font-size: 16px;
    margin: 0 0 10px;
}

.inner-testimonial-avatar {
    width: 60px;
    height: 60px;
}

.inner-testimonial-designation {
    font-size: 12px;
    margin: 0;
}

.inner-testimonial-readmore {
    font-size: 16px;
}

.popup-name {
    font-size: 16px;
    margin: 0 0 10px;
}

.popup-designation {
    font-size: 10px;
}

.popup-content {
    font-size: 16px;
}


/* inner page testimonial section end  */



/* inner page blog section start  */


.inner-blog-title {
    font-size: 16px6
}

.inner-blog-image img {
    width: 100%;
    height: 290px;
}

.inner-blog-post-title {
    margin: 15px 0;
    font-size: 22px;
}

.inner-blog-content {
    font-size: 16px;
}

/* inner page blog section end  */


/* single page blog section start  */

.single-blog-media img, .single-blog-media video {
    width: 100%;
    height: 100%;
}

.single-blog-title {
    font-size: 36px;
}

.single-blog-text p {
    font-size: 16px;
    margin-bottom: 18px;
}

/* single page blog section end  */



/* inner page contact section end  */

.inner-getintouch-header-title {
    font-size: 36px;
}

.inner-getintouch-header-subtitle {
    font-size: 16px;
}

.inner-getintouch-title {
    font-size: 22px;
}

.inner-getintouch-wrap label {
    font-size: 16px;
}

.inner-getintouch-wrap input[type="submit"], .inner-getintouch-wrap .wpcf7-submit {
    font-size: 16px;
}

    

}


@media only screen and (min-width: 1200px) and (max-width: 1391.5px) {

#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #000000 !important;
    font-size: 15px !important;
    padding: 0px 10px 0px 10px !important;
}

}



