/*!
Theme Name: Kova
Theme URI: http://kova.uk.com/
Author: Creare
Author URI: http://www.creare.co.uk
Tags: light, responsive-layout
Description: A bespoke theme designed and developed for Kova, based on the Creare Boilerplate.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: creare-boilerplate
Domain Path: /languages/

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Creare Boilerplate is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
*/

:root {
    --primary: #1FA3E4;
    --primary-dark: #0e85c5;
    --primary-light: #eef8fd;
    --primary-300: #7ccbf2;
    --primary-400: #36b1e8;
    --primary-800: #0f5a85;
    --secondary-green: #5cb85c;
    --secondary-green-hover: #4cae4c;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --black: #000000;
    
    --container-width: 1280px;
    --gutter: 20px;
    --radius-sm: 6px; /* Matched to rounded-md in React */
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --font-main: 'Inter', sans-serif;
}
@import url('./scss/style.min.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.hiddenself{
  display:none!important;
}
/* .animated-background{
  height: 100%;
	width:100%;
	background-image: url('img/back.jpg');
  background-repeat:repeat!important;
	animation: animatedBackground 0.7s linear infinite;
}
@keyframes animatedBackground {
    0 {
        background-position: 0 0
    }
    100% {
        background-position: -50px -50px
    }
} */
.part-preview-outer .part-preview{
    width: 100%;
    max-width: 425px;
}
.home #basket-area-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.single .parts-outer{
  text-align:right;
}
.home .form-group,
.single .form-group{
  padding-left:0;
}
.single .parts-outer{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}
.single #top-summ-wrap{
  padding:0 10px;
}
@media(min-width:1100px){
 .single #top-summ-wrap .price-with-vat{
    float: left;
    width: 60%;
 }
  .single #top-summ-wrap .price{
    float: right;
    width: 40%;
 }
.single .plug-area .parts-outer .part-thumb{
   width:80px;
 }
}
@media(min-width:1000px) and (max-width:1200px){
 .single .plug-area .basket-area .price-with-vat{
   font-size:22px;
 }
 .single .plug-area .proced-to-checkout a{
   font-size:17px;
 }
}
#partitioning{
  max-width:100%;
}


@media (min-width: 1100px){
  .col-foot:nth-child(2) {
    margin: 0;
    border-left: 1px solid #414141;
    padding-left: 15px;
    border-right: 1px solid #414141;
    
  }
  .col-foot {
    margin-right: 5px;
  }
  .footer-col1 div > ul{
    -moz-column-count: 2; 
    -webkit-column-count: 2;
    column-count: 2;
  }
  .footer-col1,
  .footer-col2{
    flex-grow:1;
  }
  .site-footer .cols{
    display:flex;
    justify-content: space-around;
  }
  .site-footer .logo-footer{
    float:left!important;
    margin-top: 40px;
    margin-left:15px;
  }
  .site-footer .social-links{
    clear:left!important;
    margin-top: 40px;
    max-width: 40%;
    text-align: left; 
  }
  .tab-content .part-preview-outer img,
  .tab-content .parts-outer img{
       
  }
  .greyscale-anim{
   opacity:0; 
   transition: all 0.5s ease-out;
  }
  .noborders{
    border:none!important;
  }
}




@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
  }

  100% {
    -moz-transform: translateY(0);
  }
}

@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-100%);
  }

  100% {
    -o-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.animated.slideDown {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
  }

  100% {
    -moz-transform: translateY(-100%);
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translateY(0);
  }

  100% {
    -o-transform: translateY(-100%);
  }
  
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

.animated.slideUp {
  -webkit-animation-name: slideUp;
  -moz-animation-name: slideUp;
  -o-animation-name: slideUp;
  animation-name: slideUp;
  
}
.animated {
    -webkit-animation-duration: .8s;
    -moz-animation-duration: .8s;
    -o-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform,opacity;
}
.request-call.expandedcall {
    top: 120px;
    z-index: 9999999;
}
#mobile_total_box{
  display:none;
}
@media (max-width: 500px){
 #mobile_total_box{
   display:block!important;
 }  
 #desktop_total_box{
   display:none!important;
 }
}
.expand-form {

 padding: 0!important;

}
.welcome-msg{
  width:100%;
  color:#fff;
  background-color:#000;
  text-align:center;
  display: block;
}
.tab-content .parts-outer{
    display: flex;
    flex-wrap: wrap;
}
.filters__button {
margin: 0px 5px;
}
.doors-preview,
.manifistation-preview{
    max-height:200px;

    object-fit: cover;
}
.display-block{
  display:block!important;
}
@media (max-width: 467px){
  .home-parts-outer .part-thumb {
      width: 20%;
      max-width: 80px;
      margin: 5px;
      flex-grow: 1;
  }
}
.flexslider .flex-viewport.slides img {
    object-fit: scale-down;
}
#fx-slider {
    max-height: 235px;
    overflow: hidden;
}
.single-product-partition-icons-wrap .slick-track{
	min-width:85px!important;
}
.single-product-partition-icons-wrap .slick-slide{
	min-width:80px!important;
}
.single-post .single-product-partition-icons-wrap .slick-slide{
	min-width:69px!important;
}
.single-post .single-product-wrap p {
    font-size: 13px !important;
}.single.single-post .entry-content ul li {
    font-weight: normal !important;
    color: #414141;
}
/* .single-post .single-product-wrap .plug-area > .row {
    margin: 0 -25px;
} */
.single-post .single-product-wrap .form-group {
    padding-inline: 0;
}
.grecaptcha-badge{
    display:none!important;
}
.b24-widget-button-position-bottom-right {
    bottom: 75px!important;
    right: 15px!important;
}
.ctc_cta{
    font-weight: 600;
    color: #024762;
}
.s4_img{
    transform: scale(1.9)!important;
}
#ht-ctc-chat:hover .s4_img{
  filter: hue-rotate(270deg);
}
#ht-ctc-chat:hover .ctc_cta{
  color: #e38833; 
}

/** popup **/
.pum-container {
    padding: 40px;
    background: #333F48;
}

.pum-theme-default-theme .pum-container{
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    height: auto !important;
    margin-bottom: 0;
    padding: 0 !important;
    width: 70% !important;
    margin-left: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pum-content.popmake-content {
    padding: 40px;
    background: #333F48;
}

html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, .6);
}

p#get-an-instant-estimate {
    color: #fff;
    line-height: 46px;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px !important;
}
.pum-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    color: #fff;
    margin: 0;
}
.pum-content .intro__item-form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
.pum-content .input-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-basis: 100%;
    margin-bottom: 20px;
}
.pum-content .input-wrap span {
    margin: 0;
    flex-basis: calc(33.34% - 14px);
}
.pum-content .input-wrap span input, .pum-content .input-wrap span textarea {
    padding: 14px 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #272727;
    width: 100%;
    display: block;
    font-family: "Barlow", sans-serif !important;
    min-height: 56px;
}
.pum-content .input-wrap span textarea {
    height: 130px;
}
.pum-content .input-wrap span[data-name="Message"] {
    flex-basis: 100%;
}
.pum-container .pum-content button {
    background: #01AEF0;
    font-weight: 600;
    font-size: 18px;
    line-height: 135%;
    color: #fff;
    padding: 17px 32px;
    border: 2px solid transparent;
    border-radius: 9px !important;
    min-width: 240px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s ease-in-out;
}
.pum-container .pum-content button:hover {
    border-color: #01AEF0;
    background: transparent !important;
}
.pum-container .pum-content button:focus {
    outline: none;
}
button.pum-close.popmake-close {
    background-color: transparent !important;
    font-size: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: center / contain no-repeat url(/wp-content/themes/kova/img/close-button-mob-menu.svg);
    width: 32px !important;
    height: 32px !important;
    right: 48px !important;
    top: 48px !important;
}
button.pum-close.popmake-close:hover {
    background: center / contain no-repeat url(/wp-content/themes/kova/img/close-button-mob-menu.svg);
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}
.pum-content .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450
}
.pum-content .wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}
.pum-content .input-wrap span.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: 400;
    margin: 5px 0 0;
    display: block;
}
.pum-content .wpcf7-not-valid {
    border: 1px solid #FD4646 !important;
}
.pum-content .wpcf7-response-output {
    padding-block: 10px 14px;
    line-height: 18px;
    margin-inline: 0;
    margin: 2em .5em 1em;
    border: 2px solid #00a0d2;
    text-align: center;
    color: #fff;
}
.pum-content .wpcf7 form.invalid .wpcf7-response-output {
    border-color: #ffb900;
}
div#popmake-12894 .pum-content .input-wrap span {
    flex-basis: calc(50% - 10px);
}
div#popmake-12894 .pum-content .input-wrap span[data-name="Message"] {
    flex-basis: 100%;
}
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-thumb {
	background: #A9A9A9;
	border-radius: 4px;
}
::-webkit-scrollbar-track {
	background:  transparent;
	border-radius: 4px;
}
@media (max-width:767px){
  
 .single-post .single-product-partition-icons-wrap .slick-slide {
    max-width: 70px !important;
}
.single-post .single-product-partition-icons .part-thumb {
    margin: 5px !important;
    max-width: 70px;
}
.single-post .parts-outer-wrap .part-preview-outer{
  padding-inline: 0 !important;
}
/* .single-post .parts-outer {
    padding-left: 0 !important ;
} */
  .pum-content.popmake-content {
      padding: 32px 20px;
      border: 0;
  }
  p#get-an-instant-estimate{
    max-width: 250px;
  }
  .pum-theme-default-theme .pum-container {
      width: 92% !important;
      border: 0;
      box-shadow: none;
      
  }
  .pum-theme-default-theme .pum-content + button.pum-close.popmake-close {
      right: 14px !important;
      top: 32px !important;
      left: unset !important;
  }
  .pum-content .input-wrap span,
  div#popmake-12894 .pum-content .input-wrap span {
      flex-basis: 100%;
  }
}





/* hero section hom page */
.page-template-page-home h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
}
/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 700px;
    background-color: var(--slate-900);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-section .video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .video-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-text-wrapper {
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    color: #e0f2fe;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}
.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.hero-title span {
  background: linear-gradient(to right, var(--primary), #bae6fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 20px;
  color: var(--slate-300);
  max-width: 650px;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-section a.pum-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-size: 16px;
}.btn-glass{
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}.btn-glass:focus {
    color: #fff;
}.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}.has-icon {
  gap: 10px;
}.hero-section .btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(31, 163, 228, 0.2);
}.hero-section .btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(31, 163, 228, 0.3);
}
.hero-buttons {
  display: flex;
  gap: 16px;
}
@media (max-width:767px){
    .page-template-page-home h2 {
        font-size: 30px !important;
    }
    .hero-title {
        font-size: 36px;
    }.hero-section a.pum-trigger {
        padding: 12px 12px;
        font-size: 14px;
        line-height: normal;
        gap: 5px;
    }.hero-badge {
        padding: 10px 12px;
        line-height: normal;
    }

    /* logo slider */
        .home .brands-logo-slider-block {
        margin-top: 0;
    }
}

/* --- USP SECTION --- */
.usp-section {
    padding: 96px 0;
    background-color: var(--slate-50);
}

.usp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.usp-section h2.sub-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    text-align: center;
    text-transform: capitalize;
}.usp-section .title-underline {
    width: 120px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    margin: 15px auto 64px;
    display: block;
}
.usp-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    flex: 1 1 382px;
    max-width: 382px;
    box-sizing: border-box;
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: rgba(31, 163, 228, 0.2);
}

.icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.usp-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}
.usp-card:hover .icon-box img {
    filter: brightness(0) invert(1);
}
.usp-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.usp-card:hover h3 {
    color: var(--primary);
}

.usp-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}
@media screen and (max-width:767px) {
    .usp-section h2.sub-title {
        font-size: 30px;
    }.usp-section {
        padding: 60px 0;
    }    
}

/* logo section */
.brands-swiper {
    width: 100%;
    box-sizing: border-box
}
.brands-logo-slider-block h2.brands-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 162%;
    margin-bottom: 49px !important;
    text-transform: capitalize;
    color: #000;
}
.brands-slider button.slick-arrow {
        top: 50%;
    }
    .brands-slider button.slick-arrow:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-size: 12px !important;
        padding: 10px 6px;
    }/* Prevent broken slick layout */
.brands-slider,
.our-projectsliders,
.industries-grid,
.products-grid {
    opacity: 0;
    display: flex;
}

.brands-slider.slick-initialized,.our-projectsliders.slick-initialized,.industries-grid.slick-initialized,.products-grid.slick-initialized {
    opacity: 1;
}
.brands-logo-slider-main {
    background-color: #AAA7A733
}
.brands-logo-slider-block {
    padding-top: 108px;
    padding-bottom: 70px
}
.brands-slider {
            max-width: 996px;
            margin: 0 auto;
        }
        .brands-slider .slick-slide {
            margin: 0 50px; 
        }
        .brands-slider .slick-track {
            display: flex;
            align-items: center;
        }
        .brands-slider .slick-list {
            margin: 0 -50px; 
        }
        .brands-slider button.slick-arrow {
            font-size: 0;
            background-color: #fff;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex !important;
            justify-content: center;
            align-items: center;
            color: #fff;
            cursor: pointer;
            box-shadow: 0 0 8px 0 rgba(12, 178, 201, .6);
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            z-index: 10;
            border: 0;
        }
        .brands-slider button.slick-prev.slick-arrow {
            left: -105px;
        }
        .brands-slider button.slick-next.slick-arrow {
            right: -105px;
        }
        .brands-slider button.slick-prev.slick-arrow:before {
            background: url(./img/brand-slider-left-Icon.svg) no-repeat;
        }
        .brands-slider button.slick-next.slick-arrow:before {
            background: url(./img/brand-slider-right-Icon.svg) no-repeat;
        }
        .brand-logo img {
            max-width: 100%;
            height: auto;
            display: inline-block;
        }
@media screen and (max-width: 767px) {
    .brands-logo-slider-block {
        padding-top:54px!important;
        padding-bottom: 45px!important;
        padding-left: 15px!important;
        padding-right: 15px!important
    }.brands-slider button.slick-prev.slick-arrow {
        left: 0;
    }
    .brands-slider button.slick-next.slick-arrow {
        right: 0;
    }
    .brand-logo img {
        max-width: 60%;
        height: auto;
        margin: 0 auto;
        display: inline-block;
    }
    .home .brands-logo-slider-block {
        margin-top: 0
    }

    .brands-logo-slider-block h2.brands-title {
        font-size: 30px!important;
        line-height: 110%!important;
        margin-bottom: 38px!important;
        font-weight: 700!important
    }

    .brands-swiper .swiper-slide img {
        max-width: 60%
    }

    .swiper-button-prev,.swiper-button-next {
        width: 25px;
        height: 25px
    }

    .swiper-button-prev img,.swiper-button-next img {
        width: 12px;
        height: 12px
    }
}

@media (min-width: 768px) and (max-width:1024px) {
    .brands-logo-slider-block.tg-container {
        margin-top:-58px
    }
}
@media screen and (max-width:1200px) {
.brands-slider button.slick-prev.slick-arrow {
        left: 0;
    }
    .brands-slider button.slick-next.slick-arrow {
        right: 0;
    }
}
/* --- POPULAR PRODUCTS --- */
.products-section {
    padding: 96px 0;
    background-color: var(--slate-800);
    position: relative;
}
.products-section .section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.products-section .section-header-row.white-text h2 {
    color: var(--white);
    font-weight: bold;
        margin-bottom: 0;
        text-transform: capitalize;
}.frontpage-partitions-form-section .frontpage-partitions-form-title-wrap h2 {
    color: #000 !important;
}#desktop_total_price span.add-basket-btn {
    background: transparent;
}#desktop_total_price .add-basket-btn a {
    border-radius: 8px !important;
}
.products-grid .slick-slide {
    margin: 0 16px; /* 16px left + 16px right = 32px total gap */
}
.products-grid .slick-list {
    margin: 0 -16px; /* Prevents container overflow */
    padding: 5px 0;
}
.products-grid .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--slate-600);
    color: var(--slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-size: 0;
    position: absolute;
    top: -83px;
    background-size: 40px;
    background-position: center !important;
}.product-content a:active,.product-content a:focus,.product-content a:hover,.product-content a:visited,.learn-more:hover {
    color: #0e85c5 !important;
}
button.slick-arrow:hover {
    background-color: var(--white);
    border-color: var(--white);
}
button.slick-arrow:hover:before{
    filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(1134%) hue-rotate(191deg) brightness(95%) contrast(98%);
}
.product-card {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-direction: column;
    transition: 0.3s;
    display: flex !important;
    height: auto;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(31, 163, 228, 0.1);
    border-color: rgba(31, 163, 228, 0.5);
}
.product-img {
    height: 250px;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: calc(100% - 250px);
}
.product-content h3 {
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    min-height: 40px;
    line-height: normal;
    font-weight: bold;
}
.product-content p {
    color: var(--slate-300);
    font-size: 14px;
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}
.learn-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}.products-grid button.slick-next.slick-arrow {
    right: 0;
    
}
.products-grid button.slick-arrow:before{
  content: '';
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 24px !important;
  padding: 12px;
}
.products-grid button.slick-next.slick-arrow:before{
  background: url('./img/rightarow.svg') no-repeat;
}
.products-grid button.slick-prev.slick-arrow {
    left: calc(100% - 100px);
}
.products-grid button.slick-prev.slick-arrow:before {
    background: url('./img/left-arrow.svg') no-repeat;
}

@media screen and (max-width:767px) {
    .products-section {
        padding: 70px 0;
    }.products-grid button.slick-prev.slick-arrow {
    left: calc(100% - 88px);
}.frontpage-partitions-form-section {
    padding: 70px 0 !important;
}
}

/* --- MANIFESTATION --- */
.manifestation-section {
    padding: 96px 0;
    /* Updated to Solid Dark Blue */
    background: #0e85c5;
    position: relative;
    overflow: hidden;
}
.manifestation-section a.btn-outline:hover {
    background: #fff;
    color: #0084c2;
}
.manifestation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: flex;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    backdrop-filter: blur(4px);
}

.manifest-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);    padding: 16px;
}
.manifestation-section a.btn-outline{
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 16px;
}
.manifest-content h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.divider {
    height: 4px;
    width: 80px;
    background: rgba(124, 203, 242, 0.8);
    border-radius: 4px;
    margin-bottom: 32px;
}

.manifest-content p {
    color: #f0f9ff;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
}section.manifestation-section:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ffffff 2px, transparent 2px);
    background-size: 24px 24px;
    position: absolute;
    top: 0;
    opacity: 0.1;
    bottom: 0;
}
@media screen and (max-width:767px) {
    .manifest-icon {
        transform: unset;
    }.manifest-content h2 {
        font-size: 30px;
        margin-top: 24px;
    }.manifestation-card {
        display: block;
        padding: 45px 30px;
    }.manifestation-section {
        padding: 70px 0;
    }
}
/* --- ABOUT US --- */
.about-section {
    padding: 96px 0;
    position: relative;
    margin: 100px 0;
}

.bg-shape {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 85%;
    background: #eaf8ff;
    border-radius: 100px 0 0 60px;
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}.about-text a.btn-primary.has-icon:hover {
    background: var(--primary-dark);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--slate-600);
}.about-section .btn-primary{
  background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(31, 163, 228, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s 
ease;
    font-size: 16px;
}.about-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
        text-transform: capitalize;
}.about-section .sub-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

@media screen and (max-width:767px) {
    .about-grid{
        display: block;
    }.about-image {
        margin-bottom: 30px;
    }.about-section .btn-primary {
      
        font-size: 14px;
        line-height: normal;
    }.about-section .section-title {
        font-size: 30px;
    }section#say-about-us-section {
        padding: 70px 0;
    }.about-section {
        margin: 70px 0;
    }.bg-shape {
        width: 100%;
        border-radius: 0;
    }.about-section {
        padding: 70px 0;
    }
    
}
/* industries section */
.square-box-slider button.slick-next.slick-arrow:before{
  background: url('./img/white-rightarow.svg') no-repeat;
}
.square-box-slider button.slick-prev.slick-arrow:before {
    background: url('./img/white-left-arrow.svg') no-repeat;
}
/* --- CONTACT --- */
.contact-section {
    padding: 96px 0;
    background: var(--slate-50);
        margin-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 40px;
}
.contact-section h2.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    text-transform: revert-layer;
    font-family: "Barlow", sans-serif !important;
    line-height: 1.5;
}.contact-section p.section-desc {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}.contact-section .contact-content span.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    font-size: 16px;
}

.detail-item {
    display: flex;
    gap: 16px;
}

.icon-circle {
    width: 48px; height: 48px;
    background: rgba(31, 163, 228, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-item h4 { font-weight: 700; margin-bottom: 0; color: var(--slate-900); }

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-100);
}
.contact-section .section-title span {
    color: var(--primary);
}.contact-address {
    DISPLAY: FLEX;
    justify-content: space-between;
    margin-top: 50px;
    font-size: 16px;
    color: #475569;
    flex-wrap: wrap;
}.contact-address strong {
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}
.contact-address p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #475569;
    max-width: 700px;
}.contact-section textarea.wpcf7-form-control.wpcf7-textarea {
    height: 97px;
}
.detail-item a {
        color: #475569;
}
.contact-address div {
    flex-basis: 50%;
    margin-bottom: 20px;
}
.contact-form-7 input , .contact-form-7 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    font-family: inherit;
    font-size: 16px;
    line-height: normal;
}
.contact-form-7 label {
    flex-basis: 47%;
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--slate-700);
}.submit-btn {
    width: 100%;
    position: relative;
}.submit-btn input {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(31, 163, 228, 0.2);
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    gap: 7px;
    font-weight: bold;
}
.contact-form-7 label.flex-100 {
    flex-basis: 100%;
}.contact-content {
    width: 582px;
}.submit-btn svg.lucide.lucide-send {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.contact-form-7 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.center-content { display: flex; justify-content: center; }
.contact-content span.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.contact-section .screen-reader-response {
      display: none;
}.wpcf7-response-output {
    padding: 10px 10px;
    border: 3px solid var(--primary);
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width:1024px) {
    .contact-content {
        width: 100%;
    }.contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }.contact-form-7 label {
        flex-basis: 100%;
    }.submit-btn svg.lucide.lucide-send {
        position: absolute;
        top: 50%;
        left: 26%;
        transform: translate(-50%, -50%);
        color: #fff;
    }
    .contact-form-card {
        padding: 20px;
        margin-top: 30px;
    }.contact-grid {
        display: block;
    }.contact-address {
        margin-top: 20px;
        flex-direction: column;
    }.contact-section h2.section-title {
        font-size: 30px;
        line-height: normal;
    }.contact-section {
        padding: 70px 0;
        margin-top: 70px;
    }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .contact-form-7 {
        display: block;
    }
}
/** new css**/
section.industries-section {
    padding: 96px 0;
}
section.industries-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    text-transform: capitalize;
margin-bottom: 25px;
}.gallery-card.slick-slide {
    margin: 0 16px;
}
.industries-grid .slick-list {
    margin: 0 -16px;
    padding: 5px 0;
}
section.industries-section .section-header-row.white-text {
    max-width: 60%;
}.industries-section .section-header-row.white-text p {
    color: var(--slate-500);
}
.industries-section span.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.industries-section .square-box-slider button.slick-arrow {
    top: -80px;
}
.square-box-slider button.slick-arrow {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0;
    background: var(--primary);
    color: var(--white);
    border: 0;
    position: absolute;
    top: -75px;
}
.square-box-slider button.slick-next.slick-arrow {
    right: 0;
}
.square-box-slider button.slick-prev.slick-arrow {
    left: calc(100% - 125px);
    background: rgba(31, 163, 228, 0.2);
}
section.industries-section .section-header-row {
    margin: 0 0 32px;
}
.square-box-slider button.slick-arrow:before{
  content: '';
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 24px !important;
  padding: 12px;
}
.square-box-slider button.slick-arrow:hover {
    background: rgba(31, 163, 228, 0.2);
}
.square-box-slider button.slick-arrow:hover:before {
    filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(1134%) hue-rotate(191deg) brightness(95%) contrast(98%);
    filter: brightness(0) saturate(100%) invert(48%) sepia(85%) saturate(500%) hue-rotate(170deg) opacity(1);
}
.square-box-slider button.slick-prev.slick-arrow:hover:before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(85%) saturate(500%) hue-rotate(170deg) opacity(1);
}.square-box-slider button.slick-prev.slick-arrow:hover {
    background: var(--primary);
}
.square-box-slider button.slick-arrow:hover {
    background: rgba(31, 163, 228, 0.2);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}
.gallery-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #000;
}
.gallery-overlay p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
        color: var(--slate-500);
}
.gallery-overlay {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: calc(100% - 250px);
    background: #fff;
}

.gallery-card {
    border: 1px solid rgb(213 216 221 / 2%);
	position:relative;
}
.gallery-plus {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 10px;
}.gallery-plus img {
   
    filter: brightness(0) saturate(100%) invert(48%) sepia(85%) saturate(500%) hue-rotate(170deg) opacity(1);
    transition: 0.7s;
}
.learn-more:hover{
	    color: var(--primary);
}
.gallery-overlay .learn-more {
    margin-top: 30px;
}
.our-project-slide.slick-slide {
    margin: 0 16px;
}
.square-box-slider .slick-list {
    margin: 0 -16px;
    padding: 5px 0;
}
.our-project-slider h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0;
    text-transform: capitalize;
}
.our-project-top-left {
    margin: 0 0 32px;
}
.featured-card {
    aspect-ratio: 1;
    position: relative;
    background: var(--slate-100);
}
.project-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 30px;
    z-index: 1;
}
.project-desc span {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 15px;
}
.our-project-slide a {
    position: relative;
}
.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-desc .title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}
.project-desc-wrap {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 5;
    transition: all 0.25s ease-in;
}
.our-project-slide a:hover .project-desc-wrap {
    bottom: 80px;
}
.our-project-slide a:hover span {
    color: #08b9d1;
}
.sticky-cta-inner {
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    background: rgb(0 76 140 / 95%);
    padding: 10.5px 21px;
    backdrop-filter: blur(12px);
    display: flex;
    gap: 28px;
    justify-content: space-between;
}
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    z-index: 11111111111;
}
.sticky-cta-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sticky-cta-left p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}
.cta-icon svg {
    width: 14px;
    height: 14px;
}
.cta-icon {
    background: rgb(0 163 224);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.sticky-cta-btn {
    background: rgb(0 163 224);
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    padding: 10.5px 21px;
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.sticky-cta-btn svg{
    width: 14px;
    height: 14px;
    margin-left: 7px;
    margin-right: -1px;
}
.sticky-cta-btn:hover{
    transform: scale(1.05);
    color: #fff;
}
.single-industry-section{
    padding: 84px 0;
}
.single-industry-section h2{
     text-transform: none;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #0f172a;
}

@media screen and (max-width:767px) {
    .hero-section {
        height: fit-content;
        padding: 60px 0;
    }
    .single-industry-section{
       padding: 60px 0;
    }
    .single-industry-section h2{
         font-size: 30px;
    }
    .sticky-cta-btn {
        padding: 9px 21px;
        font-size: 13px;
    }
    .sticky-cta-left p {
        font-size: 14px;
        line-height: 22px;
    }
    section.industries-section .section-header-row.white-text {
        max-width: 100%;
        margin: 0 0 35px;
    }section.industries-section h2 {
        font-size: 30px;
    }.industries-section span.sub-title {
        font-size: 12px;
    }section.industries-section {
        padding: 70px 0 50px;
    }.our-project-slider h2 {
        font-size: 30px;
    }.our-project-slider .square-box-slider button.slick-prev.slick-arrow {
       left: calc(100% - 88px);
    }    .our-project-slider .square-box-slider button.slick-arrow {
        top: -63px;
        bottom: -100px;
    }section.our-project-slider .square-box-slider button.slick-arrow {
        width: 40px;
        height: 40px;
    }

    .industries-section .square-box-slider button.slick-prev.slick-arrow {
        left: calc(100% - 90px);
    }.industries-section .square-box-slider button.slick-arrow {
        top: -250px;
         width: 40px;
        height: 40px;
    }.our-project-top-left {
        margin: 0 0 27px;
    }
}
@media screen and (max-width:575px) {
    .cta-icon{
        display: none;
    }
    .sticky-cta-inner {
        flex-direction: column;
        gap: 11px;
        justify-content: center;
        align-items: center;
        padding: 9px 21px;
    }
    .sticky-cta-btn {
        padding: 9px 21px;
        font-size: 13px;
    }
    .sticky-cta-left p {
        text-align: center;
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (min-width:768px) and (max-width:1024px){
    .single-industry-section h2 {
        font-size: 32px;
        line-height: 1.1;
    }
    .single-industry-section {padding: 65px 0;}

}

