/* CSS Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


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

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('Roboto-SemiBold.woff2') format('woff2'),
        url('Roboto-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;

}

a{
    text-decoration: none;
    outline: none;
    border: none;
    color: inherit;
    transition: all .3s ease-in-out;
}

a:hover{
    text-decoration: none;
    outline: none;
    border: none;
    color: inherit;
    transition: all .3s ease-in-out;
}
html {
    scroll-behavior: smooth;
}
h2 {
    color: #464858;
    font-size: 2rem;
	font-weight: 400;}

h3 {
  color: #6A6B78;
    font-size: 1.2rem;
    font-weight: 500;
}
.site-logo{
    width: 250px;
    img{
        max-width: 100% !important;
        width: 100% !important;
		height:auto !important;
    }
}
.custom-logo{
	 max-width: 100% !important;
        width: 100% !important;
		height:auto !important;
}
.topHdr{
    /* background-color: #3E3F4D; */
    background-color: #35397D;
    color: #fff;
     display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.socialLinks{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
font-size: .938rem;
    i{
        font-size:.85rem;
    }

 
}

.container,.about-container{
	max-width:1440px;
	margin: 0 auto;
}

.contact-info{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
font-size: .938rem;
     i{
        font-size:.85rem;
        margin-right: .15rem;
    }

    svg{
        width: .85rem;
        height: .85rem;
        margin-right: .15rem;
    }


    a{
        color: #fff;
        text-decoration: none;
        :hover{
            color: #FF8C00;
        }
    }
}


.socialLinks a{
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    :hover{
        color: #ff6f61;
    }
}

.facbook-link:hover {
    color: #3b5998;
}

.linkedin-link:hover {
    color: #0077b5;
}

.whatsapp-link {
    color: #25D366;
    font-size: 18px;
    display: none;
    
}

.whatsapp-link:hover {
    color: #1ebe5d;
}

ul#menu-header-menu{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

ul#menu-header-menu li.menu-item{
    margin-left: 2rem;
    position: relative;
   

    a{
        color: #fff;
         
    }
  a::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background-color: #FF8C00;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-in-out;
    }

    a:hover::after{
        transform: scaleX(1);
        transform-origin: left;
    }
  }
ul#menu-header-menu li.menu-item.current_page_item 
{
 a::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background-color: #FF8C00;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-in-out;
    }
a::after{
    transform: scaleX(1);
    transform-origin: left;
}}

.btnTgl{
	background:rgba(0,0,0,.15) !important;
	border:0px !important;
    transition:all .4s ease-in-out;
	i{
		color:#fff;
	}
	
}
.btnTgl:hover{
	 transition:all .4s ease-in-out;
	i{
		color:#FF8C00;
	}
}

.wpcf7-submit{
	border-radius:50px !important;
background:none;
font-size:18px !important;
border:2px solid #ffffff !important;
color:#fff !important;
width:180px !important;
	padding:.45rem 1rem !important;
}
.wpcf7-submit:hover{
	border-radius:50px !important;
background:#FF7D01;
font-size:18px !important;
border:2px solid #ffffff;
color:#fff !important;
width:180px !important;
transition: all .4s;
padding:.45rem 1rem !important;
}

/* Footer */

footer{
    background: #464858;
    color: #fff;
    font-size: .9rem;
 
    .footer-content{
        padding: 2rem 2rem;

		h4{
			font-size:1.2rem;
margin-bottom:.5rem;
		}
    }
    }

.footerLogo{
	img.custom-logo{
		width:240px !important;
		height:auto !important;
	}

	p{
		margin-left:4rem;
max-width:320px;color:#9395a8;
	}
}

.footerMenu{
	li{
		color:#9395a8
	}
	a{
		color:#9395a8;
		transition: all .4s ease-in-out;
	}
	a:hover{
		color:#fff;transition: all .4s ease-in-out;
	}
	li a:before{
		display:none
	}
}
.copyright{
margin-top:3rem;
	color:#f2f2f2;
	p{
		margin-left:4rem;color:#9395a8
	}
	.footer-disclaimer{
		font-size:.75rem;
	}
}
.footerMenu2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px 24px; 

	ul li, li a{
		color:#9395a8;transition: all .4s ease-in-out;
	}
	li a:hover{
		color:#ffffff;transition: all .4s ease-in-out;
	}
}



@media (min-width: 576px) {
  .footerMenu2 {
    grid-template-columns: repeat(1, 1fr);
  }
}


  /* Gradient CTA Button */
.cta-btn,.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    background: linear-gradient(90deg, #FF8C00, #FF6200);
    background-size: 200% 100%;
    background-position: left center;
    border: none;
    transition: background-position 0.5s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.cta-btn:hover, .hero-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 18px rgba(255, 98, 0, 0.35);
    color: #fff;
}

/* Feather icon inside CTA */
.cta-btn svg , .hero-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

/* Slight icon movement on hover */
.cta-btn:hover svg , .hero-btn:hover svg {
    transform: translateX(3px);
}
.cta-btn-outline , .hero-btn-outline{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    background: transparent;
    border: 1px solid #fff;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
/* Hover animation */
.cta-btn-outline:hover, .hero-btn-outline:hover {
    background-color: #FF8C00;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(255, 98, 0, 0.35);
        border: 1px solid #FF8C00;
}   
/* Feather icon inside CTA */
.cta-btn-outline svg, .hero-btn-outline svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
/* Slight icon movement on hover */
.cta-btn-outline:hover svg , .hero-btn-outline:hover svg {
    transform: translateX(3px);
}

.cta-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #FF8C00 !important;
    background: transparent;
    border: 1px solid #FF8C00;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
/* Hover animation */
.cta-outline:hover{
    background-color: #FF8C00;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(255, 98, 0, 0.35);
        border: 1px solid #FF8C00;
}   
/* Feather icon inside CTA */
.cta-outline svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
/* Slight icon movement on hover */
.cta-outline:hover svg  {
    transform: translateX(3px);
}

.banner-wrapper{
    background: #464858; 
	/****clip-path: polygon(
        0 0,
        100% 0,
        100% 95%,
        0 100%
    );****/
}
.header-wrapper{
    position: relative;
transition: background-color 0.3s ease-in-out;
    z-index: 999;
}

.scrolled{
    position: fixed;
    background-color: rgb(43, 45, 58);
    top: 0;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}
.hero {
    position: relative;
  
    background-size: cover;
    background-position: center;
    
    /*** clip-path: polygon(
        0 0,
        100% 0,
        100% 95%,
        0 100%
    );***/
}

.hero {
    min-height: 95vh;
}

.hero-inner {
    min-height: 50vh; /* inner pages */
}

.hero-inner .scroll-down-indicator{
	display:none
}

 .default-hero {
    background-image: url('assets/images/default-hero.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(57, 59, 72, 0.85);
    z-index: 1;clip-path: inherit;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 680px;
    padding: 7rem 2rem;
   
}

.hero-inner .hero-content{
padding: 3rem 2rem;
}


.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
    line-height: normal;
}

.hero-content p {
    font-size: 1.2rem;
    width: 94%;
}
.hero-inner .hero-content  h1{
	font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 10px;
    line-height: normal;
}

.hero-content-inner{
    padding-left:   3rem;
}

.hero-content a.hero-btn,
.hero-content a.hero-btn-outline {
    margin-top: 25px;
}


.hero {
    position: relative;
    overflow: hidden;
}

/* Home page background video */
.hero-home .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay above video */
.hero-home .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.50);
}

/* Keep header and content above video */
.hero-home .header-wrapper,
.hero-home .hero-content,
.hero-home .scroll-down-indicator {
    position: relative;
    z-index: 2;
}




.breadcrumb-block{
    padding: 0 3rem;
    position: absolute;
    bottom: 0px;
}

/* breadcrumb */
    .hero-breadcrumb {
  margin: 12px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero-breadcrumb a {
  color: #ff9800;
  text-decoration: none;
}

.hero-breadcrumb span {
  margin: 0 6px;
}
.hero-breadcrumb a:hover {
  text-decoration: underline;
}
/* HERO ANIMATION */
.animate-hero .fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-hero .delay-1 { animation-delay: 0.2s; }
.animate-hero .delay-2 { animation-delay: 0.4s; }
.animate-hero .delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== MAIN NAV ===== */


/* ===== MENU BASE ===== */
.menu-products {
  position: relative;
}

/* ===== CARET ICON ===== */
.menu-products > a {
  position: relative;
  padding-right: 18px;
}

.menu-products > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
}

/* Rotate caret */
.menu-products:hover > a::before,
.menu-products.open > a::before {
  transform: translateY(-40%) rotate(-135deg);
}

/* ===== MEGA MENU ===== */
.products-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 992px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-43%, 45px);
  transition: all 0.35s ease;
  z-index: 99999;
}
.products-mega{
	h6{
		font-weight:600;
	}
	ul li{
		font-size:.85rem;
	}
	a.more-link{
		color:#ff9800 !important;font-size:.85rem;
			border-bottom:2px solid #fff;
padding-bottom.25rem;
transition:all .4s ease-in-out;
	}

a:hover.more-link{
		color:#ff9800 !important;font-size:.85rem;
			border-bottom:2px solid #ff9800;
padding-bottom.25rem;
transition:all .4s ease-in-out;
	}
	a::after, a:hover::after{
		display:none;
	}
}
/* Desktop hover */
.menu-products:hover > .products-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-43%, 15px);
}

/* Keyboard focus */
.menu-products:focus-within > .products-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-43%, 15px);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .products-mega {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    display: none;
  }

  .menu-products.open > .products-mega {
    display: block;
  }
}
/* ===== MEGA MENU END ===== */



.scroll-down-indicator{
    position: absolute;
    bottom: 60px;
    right:auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    
     background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px; 
   z-index: 999;
   width: 42px;
   height: 42px;
   
}

/****home Page - About Section*******/

.about-liftswyse{
	padding:3rem 0
}
.about-content{
	h2{ color:#464858;
		font-size:2rem;
		font-weight:500;
		
	}
	h4{ color:#6A6B78;
		font-size:1.2rem;
		font-weight:500;
		
	}
}
.about-image{
	max-width:92%;
	margin:0 auto;

	
	img{
		max-width:100%;
		height:auto;	border-radius:40px;
	}
}
.about-text{
	margin-top:1rem;
	p{
		font-size:1rem;
		color:#464858;
		margin:1rem 0
	}
}
.about-btn{
	color:#FF6200;
	position:relative;
	padding-bottom.5rem;
		transition: padding-right .4s  ease;
	background:url(../images/arrow-right.png) no-repeat 100% 50% / 16px auto;
	padding-right:20px;
	
	
}
.about-btn::after{
	content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: #FF8C00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
	}

.about-btn:hover{
	color:#FF6200;
	position:relative;
	padding-bottom.5rem;
	transition: padding-right .4s  ease;
	padding-right:30px;
	

}
	.about-btn:hover::after{
		content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: #FF8C00;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
	}

/**********Home Page - Product Section Start********/
.products{
    background:#F9FAFC url(../images/product-bg.png) no-repeat 100% 100%;
    height: auto;
}

.card{
    border-radius: 12px;
    border: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     transition: box-shadow 0.3s ease-in-out;
}
.card:hover{
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease-in-out;
}

.card img{
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-body{
    ul{
        margin: .5rem 0px;
        padding: 0px;
    }
    ul li{
        list-style: none;
        padding-left: 1.2rem;
        position: relative;
        background: url('../images/arrow-next.png') no-repeat 0px 5px / 16px auto;
    }
}

.btnBlock{
    margin-top: 1.2rem;
}



/**********Home Page - Product Section End********/


/**********Home Page - KPI Block Start**********/
.kpiBlock{
background-color: #464858;  
padding: 2.5rem 0rem 4rem 0;
	text-align: center;
	h2, h3{
    color: #fff;
}
}

.kpiContent{
    text-align: left;
    margin-top: 2rem;
    border-left: 4px solid #FF8C00;
    padding-left: 1.2rem;
	
h2{
    color: #fff;
	font-weight:600;
	font-size:2.5rem;
}

p{
    color: #7c7d82;
	margin-bottom:1rem;
}
img{
    width: 40px;
}
}
/****client logo css****/
.clintsLogo{
    background-color: #F4F2EA;
    padding: 2.5rem 0rem 4rem 0;
    text-align: center;

   
}
.clients-gallery{
	margin-top:2rem;
}
#gallery-1 img{
border:0px solid transparent !important;
	
}

/* Outer container */
.logo-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
	/* Fade effect */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
	br{
		display:none;
	}
}

/* Gallery track */
.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 40s linear infinite alternate;
}

/* Force gallery items inline */
.logo-track .gallery {
    display: flex;
    gap: 0px;
}

/* Individual logo item */
.logo-track .gallery-item {
    float: none !important;
    width: auto !important;
}

/* Image style */
.logo-track img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.gallery-loader {
    display: none;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    clear: both;
}

.gallery-spinner {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    border: 4px solid #e5e5e5;
    border-top-color: #333;
    border-radius: 50%;
    animation: gallerySpinner 0.7s linear infinite;
}

.gallery-loader span {
    display: block;
    font-size: 14px;
    color: #555;
}

@keyframes gallerySpinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/*******testimonial css *****/
.testimonialBlock{
    background: url('../images/testi-bg.png') no-repeat 0% 100% / 70% auto ;
 padding: 2.5rem 0rem 4rem 0;


   
}


.testimonialCard{
    margin-top: 2rem;
   
    padding-left: 2.5rem;
 border-left: 4px solid #FF8C00;
     display: flex;
     justify-content: center;
     flex-direction: column;
     min-height: 280px;
}
.bdr{
    
    padding-top: 1.5rem;
    

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

    img{
        width: 60px;
    }
}

.gReviewBlock{ display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    img{
        width: 200px;
        margin: 1rem 0rem;
    }
}



.testHeader{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;

    img{
        border-radius: 50px;
        width: 80px;
    }

    .testContent{
        margin-left: 1rem;

        h4{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: .25rem;
        }

        p{
            color:#6A6B78;
            margin-bottom: 0; font-weight: 600;
        }

        span{
            font-size: .85rem;
            color: #6A6B78;
            font-weight: 500;

        }
    }

    .testDes{
        p{
            color: #6A6B78;
          
        }
    }
   
}
.testimonialNav{
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
flex-direction: row;
height: 100%;




 .prevBtn, .nextBtn{
        border: none;
        border-radius: 50px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
       box-shadow: 0 4px 10px rgba(0,0,0, .1) ;
             transition: all 0.3s ease-in-out;

        img{
            width: 22px;
        }
    }
    .prevBtn:hover, .nextBtn:hover{
        box-shadow: 0 6px 25px rgba(0,0,0, .15) ;
        transition: all 0.3s ease-in-out;
    }

}
/***********why us***********/

.whyusBlock{
    background: url('../images/blueBg.png') no-repeat 50% 100% / cover;
    padding: 2.5rem 0rem 4rem 0;
   
    color: #fff;  
}

.whyusheader{
 text-align: center;
	h2, h3{
		color:#fff
	}
}

.whyusContent{
    margin-bottom: 4rem;
    img{
        margin-bottom: 1rem;
        width: 40px;
    }
    h4{
        font-size: 1.2rem;
        margin-bottom: .5rem;
        font-weight: 500;
    }
    p{
        font-size: 1rem;
        font-weight: 300 !important;
    }
}


/*****cta css*****/

.ctaBlock{
    background: url('../images/ctaBg.png') no-repeat 100% 100% / cover;
    padding: 2.5rem 0rem;
    color: #fff;
	.cta-btn{
		padding:8px 28px;
		font-size:20px;
	}

    h2{
        font-weight: 500;
        margin-bottom:0rem;color: #fff;
    }
	
	h3{
		color:#fff;
	}
}

/*****form css*****/

.formBlock{
    background:url('../images/formBg.png') no-repeat 0% 100% / 100% auto ;
 
    min-height: 400px;
    display: flex;
    justify-content: flex-end;overflow: hidden;position: relative;

    h2{
        margin-bottom: 1.5rem;
    }
}


/* Orange tilted background */
.formBlock::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: #ff8c00; /* Orange */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Content stays above */
.formOverlay {
  position: relative;
  z-index: 2;
  width: 100%;

  color: #fff;

}
.form-content{
    position: relative;
    z-index: 2;
   
     padding: 2rem 0rem 2rem 4rem;

     h2{
      
        margin-bottom:0;
		 color:#fff;
     }

     h3{
        font-weight: 400;
        font-size: 1rem;
		color:#fff;
     }

     form{
        margin-top: 1.5rem;
     }

     input, textarea, select, .form-control{
        font-size: .85rem;
        border-radius:6px;
        padding: .65rem 1rem;
		 width:100%;
		 border:1px solid #f2f2f2;
     }

	
}
.form-fields{
	input, textarea{
		margin-bottom:1rem
	}
	textarea{
		height:80px;
	}
	
	button{
		font-size:20px;
		font-weight:500;
	}
	
	.wpcf7-not-valid-tip {
  color: #ffecd5;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: relative;
  top: -10px;
}
	.wpcf7 form .wpcf7-response-output {
  margin: 0em;
  padding: 0.5em 1em;
  border: 0px solid #00a0d2;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
background:transparent;
}
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .contact-section::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  }

  .contact-inner {
    width: 100%;
     padding: 2.5rem 0rem 4rem 3rem;
  }
}

/*****contact info css*****/
.locationBlock{
padding:2rem 0 ;
background: linear-gradient(135deg, #f5faff, #fff);
clear:both;
}

.locContent{
	margin-right:1rem;
	h4{
		font-weight:600;
		margin-top:.5rem;
margin-bottom:.5rem;
	}
	
	p{
		font-size:.938rem;
	}
}

.LocEmail{
	margin-top:1rem;
	a{color:#0056b3; transition: all .4s ease-in-out; display:flex; align-items:center}
	a:hover{
		color:#ff8300; transition: all .4s ease-in-out; display:flex; align-items:center
	}
}
.locInfo{
    border-left:#b2b5ca 1px solid;
    padding-left: 1.2rem;
    min-height: 420px;
h4{
		font-size:1.5rem;
		font-weight:600;
	}
	
}
.emailblk{
    a{
        font-size: .85rem;
    }
}
.conInfo{
	margin:.5rem 0 .5rem 0;
   
    h5{
        font-size: .938rem;
        margin-bottom: .5rem;
        font-weight: 600;
    }
    ul{
        padding: 0px;display: flex;
        align-items: center;

       
      gap: .5rem;
        flex-direction: row;
    }
    ul li{
        list-style: none;
       
        font-size: .85rem;

    }
    ul li a{
        color: #0056b3;
        text-decoration: none;
    }
 ul li a{color:#0056b3; transition: all .4s ease-in-out}
	 ul li a:hover{
		color:#ff8300; transition: all .4s ease-in-out
	}
}


.social-links{
	i{
	background: #e2eeff;
    padding: .5rem;
    border-radius: 50px;
    margin-right: .25rem;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
	}
}

.LocEmail{
	
	i{
	background: #e2eeff;
    padding: .5rem;
    border-radius: 50px;
    margin-right: .5rem;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
	}
}

.LocEmail 
	a{
		display:flex;
		align-items:center;
		
	}

/*******About Us Page********/
.ourTeam{
	background:rgba(57, 59, 72, 0.85);
	padding:4rem 0;
color:#fff;
	h2,h3{
color:#fff;		
	}
}
.TeamImg{
	img{
		width:180px;
		border-radius:12px;
	}
}
.tagLine{
	font-size:1.5rem;
	font-weight:600;
line-height:2rem;
}

.ourValues{
	background:#F6F2EE;
	padding:4rem 0;
	
}
.valueContent{
	background:#fff;
	border-radius:16px;
text-align:center;
	padding:2rem;
	margin-top:2rem;

	h3{
		color:#000;
		margin:.5rem 0;
		font-weight:600;
	}

}
.valueIcon{
	width:44px;
    height:44px;
	border-radius:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:linear-gradient(90deg, #FF8C00, #FF6200);
	margin:0 auto;
	margin-bottom:1.5rem;
	i{
		color:#fff;
font-size:1.5rem
	}
}

/****************Product Page***************/

.productPage{
	background:linear-gradient(0deg, #F6F2EE,#fff,#fff);
}


/****************Gallery Page**************/
.masonry-grid {
    margin: -10px;   /* important */
}

.gallery-item {
    padding: 10px;   /* equal spacing */
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}



.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.glightbox-container svg {
    display: block !important;
}


.toggleMenu{
	display:none
}

.card-title{

  font-weight: 600;
  font-size: 1rem;
}
.imgInner{
	img{
		max-width:90%;
		border-radius:40px
	}
}

/*************Category Page************/



.productRow{
	max-width: 768px;
  border-radius: 12px;
  background: #FBFBFC;
  margin: 0 auto;
  padding: 0;
  margin: 0;
height:208px;

}

.productRow h3 {
  color: #6A6B78 !important;
  font-size: 1rem;
  font-weight: 600;
	}
.product-spec-list{
		margin-top:.5rem;
	}
.product-spec-list li{
		font-size:.938rem;
		color:#76767e
	}

.tabBlock{
	display:flex;
	align-items:flex-start;
	gap:1.5rem;
	max-width: 992px;
  margin: 0 auto;
		
}

.tabBlock .tab-content{
	width:100%;
}

#productTab{
	display: flex;
  flex-direction: column;
  border-bottom: 0;
  background: #f6eee2;
  padding: .5rem 1rem 1rem 1rem;
  border-radius: 12px;
width:350px;
	position: sticky;
  top: 110px;
}

#productTab .nav-link {
 min-width: 100%;
 width:100%;
 border: none;
 border-radius: 6px;
 min-width: 100%;
 border-radius: 6px;
 border: none;
 font-size: 1rem;
 text-transform: capitalize;
 font-weight: 500;
 text-align: left;
color:#6d6e7b;
	margin-top:.5rem;
}

#productTab .nav-link.active{
  background: linear-gradient(90deg, #FF8C00, #FF6200);
  color: #fff;
  border: none;
}
#productTab .nav-link:focus,
#productTab .nav-link:hover {
 border:0px solid transparent;
 border-color:transparent;
}

.productDes{
	padding:0 1.2rem;
}

.productImg img{
	border-top-left-radius:12px;
border-bottom-left-radius:12px;

}
.card-body {
   ul {
    margin: .5rem 0px;
    padding: 0px;
    min-height: 140px;
  }
}
