/* ===== GLOBAL RESET ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root{
	--theme-color: #0e7eb3;
	--btn-hover:#111;
}
.bg-primary{background-color:var(--theme-color) !important}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Montserrat", sans-serif;
	color: #222;
	background-color: #fff;
	line-height: 1.6;
	font-weight: 400;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1.3;
	color: #111;
	margin-bottom: 0.75em;
}

h1 { font-size: 2.25rem; }   /* ~36px */
h2 { font-size: 1.875rem; }  /* ~30px */
h3 { font-size: 1.5rem; }    /* ~24px */
h4 { font-size: 1.25rem; }   /* ~20px */
h5 { font-size: 1.125rem; }  /* ~18px */
h6 { font-size: 1rem; }      /* ~16px */

p {
	font-size: 1rem;           /* 16px */
	color: #444;
	margin-bottom: 1.2em;
}

a {
	color: #232532;
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover {
	color: #232532;
}
.text-primary{
	color:var(--theme-color) !important;
}
.btn-outline-primary{
	border-color:var(--theme-color) !important;
	color:var(--theme-color) !important;
}

.btn-outline-primary:hover{
	background-color:var(--theme-color) !important;
	color:#fff !important;
}
/* Header */
.main-header__lower .main-logo {
	width: 100px;
}
.menu-main-menu-container {
    height: 100%;
}
.navigation-menu ul#menu-main-menu {
	display: flex;
	align-items: center;
	margin-left: auto;
	justify-content: space-between;
	height:100%;
	padding:0;
}
.navigation-menu ul#menu-main-menu li {
	position: relative;
	list-style: none;
}
.navigation-menu ul#menu-main-menu li a {
	color: #000;
	font-size:14px;
	padding: 13px 10px;
	display: inline-block;
    width: 100%;
}
.navigation-menu ul#menu-main-menu li ul.sub-menu li a {
    border-bottom: 1px solid #ababab;
}
.navigation-menu ul#menu-main-menu li ul.sub-menu {
	position: absolute;
	width: 15rem;
	transform: perspective(300px) scaleY(0) translateZ(30px);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	padding: 0;
}
.navigation-menu ul#menu-main-menu li:hover ul.sub-menu {
	transform: perspective(300px) scaleY(1) translateZ(0);
	opacity: 1;
	visibility: visible;
	z-index:9;
}
.navigation-menu ul#menu-main-menu li ul.sub-menu li a:hover:before {
    width: 100%;
}
.navigation-menu{
    position: relative;
}
.navigation-menu ul#menu-main-menu li ul.sub-menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--theme-color);
    transition: .3s ease;
}
.navigation-menu ul#menu-main-menu li ul.sub-menu li a:hover {
    color: var(--theme-color);
    font-weight: 500;
}

.desktop-menu{
	display:block;
}
.mobile-menu{
	display:none;
}
.desktop-none{
	display:none;
}
@media only screen and (max-width: 1024px) {
	.desktop-menu{
		display:none;
	}
	.desktop-none{
		display:block;
	}
	.mobile-menu{
		display:block;
	}
	.offcanvas.offcanvas-start {
		width: 280px;
	}
	.offcanvas-body{
		padding: 1.2rem;
	}
	.offcanvas-body .header-top	{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: end;
		gap: 0px;
		margin: 3rem 0;
		margin-top: 0;
	}
	.mobile-header-nav-menu ul {
		list-style: none;
		padding: 0;
	}
	.mobile-header-nav-menu ul li a {
		font-weight: 500;
		font-size: 16px;
		line-height: 1.4;
		letter-spacing: -.75px;
		padding: 10px 0;
		display: block;
		border-bottom: 1px solid #d2d2d2;
	}
	.mobile-header-nav ul#menu-main-menu-1 li.menu-item-has-children {
		position: relative;
	}
	.mobile-header-nav ul#menu-main-menu-1 .fa.fa-angle-right.submenu-toogle {
		display: block !important;
		position: absolute;
		right: 0;
		top: 0;
		color: #000;
		background-color: transparent;
		z-index: 900;
		cursor: pointer;
		padding: 10px;
		font-size: 17px;
		line-height: 25px;
		width: 100%;
		text-align: right;
	}
	.mobile-header-nav ul#menu-main-menu-1 li.menu-item-has-children .sub-menu {
		display: none;
	}
	.mobile-header-nav ul#menu-main-menu-1 li.menu-item-has-children .sub-menu li a {
		font-size: 15px;
		color: #585858;
		padding-left: 20px;
	}
}


/*  footeer*/

footer.site-footer {
    background: #18222c;
}
.footer-top{
	padding: 50px 0;
}
footer.site-footer p {
    color: #ffffff;
}
.footer-bottom .foot-copyright p, .footer-bottom .foot-copyright p a {
    color: #fff;
}
.foot-socialLinks ul li a {
    background: #fff;
    margin: 5px;
    height: 40px;
    width: 40px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	transition: .3s ease
}
.foot-socialLinks ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.foot-socialLinks ul li a:hover {
    scale: 1.1;
}
.footer-top .foot-links h3:before,  .footer-top .foot-contactDetails h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100px;
    background: #fff;
}

.footer-top .foot-links h3, .footer-top .foot-contactDetails h3 {
    color: #fff;
    position: relative;
    padding-bottom: 6px;
}
.footer-top .foot-links ul li a,  .footer-top .foot-contactDetails ul li a {
    color: #fff;
}
.footer-top .foot-links ul,  .footer-top .foot-contactDetails ul {
    padding: 0;
    list-style: none;
}
/* .footer-top .foot-links.middle ul {
    columns: 2;
} */
.footer-top .foot-contactDetails ul li span.icon {
    height: 40px;
    width: 40px;
    background: #fff;
    margin-right: 10px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 50px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
	transition: .3s ease;
}
.footer-top .foot-contactDetails ul li:hover span.icon{
	scale: 1.1;
}
.footer-top .foot-contactDetails ul li{
    display: flex;
    align-items: baseline;
}
.footer-top .foot-contactDetails ul li a {
    width: calc(100% - 50px);
}

.mySwiper {
  width: 100%;
  height: fit-content;
}
.mainbanner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mainbanner .swiper-button-prev, .mainbanner .swiper-button-next {
    color: #fff;
}
.btn-primary{
	background: linear-gradient(73deg, var(--theme-color), #053f6c) !important;
	border:none;
	border-radius:2px !important;
	font-size:15px !important;
}
.btn-primary:hover{
	background-color:var(--btn-hover);
}

/* category css start */
.product-categories {
  background-color: #f8f9fa;
}

.category-item {
  transition: all 0.3s ease;
  background-color: #fff;
}

.category-item:hover {
  background-color: var(--theme-color);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-item:hover h6 {
  color: #fff;
}

.category-item img {
  transition: transform 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.1);
}

/* category css ends */

/*featured product css start*/
.featured-products-section .featured-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.featured-products-section .featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.featured-products-section .featured-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-products-section .featured-card:hover img {
  transform: scale(1.08);
}

.featured-products-section h5 {
  font-size: 1.1rem;
}

.featured-products-section .btn-outline-primary {
  border-width: 2px;
  transition: all 0.3s ease;
}

.featured-products-section .btn-outline-primary:hover {
  background-color: var(--theme-color);
  color: #fff;
	border:none;
}

/* featured product css end*/

/* client section css start */
.clients-section {
  background: var(--theme-color);
}

.clients-section h2 {
  font-size: 2rem;
}

.clients-section .client-logo {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section .client-logo img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-section .client-logo:hover {
  background: #f0f8ff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.clients-section .client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* client css ends */

/* blogs css start */
.latest-blogs .blog-card {
  transition: all 0.4s ease;
}

.latest-blogs .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.latest-blogs .blog-img {
  height: 200px;
}

.latest-blogs .blog-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-blogs .blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-category {
  top: 15px;
  left: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.latest-blogs h5 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.latest-blogs .btn-outline-primary {
  border-width: 2px;
  font-weight: 500;
}

.latest-blogs .btn-outline-primary:hover {
  background: var(--bs-primary);
  color: #fff;
}

/* blogs end */

/* about us page */
.hover-scale {
    transition: all 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonials-section .card {
    transition: all 0.3s ease;
}
.testimonials-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.testimonialSwiper{
	height:300px;
}
.faq-section .accordion-button {
    background-color: #fff;
    color: #18222c;
    transition: all 0.3s ease;
}
.faq-section .accordion-button:focus {
    box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: #18222c;
    color: #fff;
}
.faq-section .accordion-item {
    border-radius: 1rem;
}

/* blogs page */

.bg-theme { background-color: var(--theme-color) !important; }
.text-theme { color: var(--theme-color) !important; }
.blogs-archive .featured-blog {
	position: relative;
	max-height:500px;
}
.blogs-archive .featured-blog img {
  object-fit: contain;
  filter: brightness(70%);
}
.blogs-archive .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
.blog-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.pagination .page-link {
  border-radius: 50%;
  margin: 0 4px;
  color: var(--theme-color);
}
.pagination .active .page-link {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}
	.pagination-wrap a.page-link {
    min-width: 40px;
}

.why-choose-us {
  background: #f8f9fb;
}

.why-box {
  background: #fff;
  transition: all 0.3s ease;
}
.why-box:hover {
  background: #f1f5ff;
  transform: translateY(-5px);
}
.why-icon {
  font-size: 2rem;
  color: var(--theme-color);
  transition: all 0.3s ease;
}
.why-box:hover .why-icon {
  transform: scale(1.15);
  color: #000;
}

/* whatsapp float  */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: var(--theme-color);
  transform: scale(1.1);
  color:#fff;
}
/*  top header*/
.header-links ul li a {
    color: #fff;
}

/* product page desing  */
	
	/* NEW Modern Product Card (matches reference design) */
.product-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
/*   min-height:425px; */
}

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

/* Top curved section */
.product-top-bg {
	background: #cfe8ff;
	/* height: 300px; */
	border-bottom-left-radius: 60%;
	border-bottom-right-radius: 60%;
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	overflow: hidden;
}

/* Image container */
.product-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
/*   margin-top: 20px; */
}

/* Bottom area */
.product-bottom {
  padding: 18px;
  background: #fff;
/*   display: flex;
  justify-content: space-between;
  align-items: center; */
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #222;
}

.product-items {
  font-size: 13px;
  color: #7d7d7d;
  margin: 0;
}

/* Arrow button */
.product-arrow {
/*   width: 38px; */
  height: 38px;
  border-radius: 12px;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: 0.3s;
  text-decoration: none;
	gap:8px;
}

.product-arrow:hover {
  background: #dfe8ff;
}
.brandUseBox .icon {
    height: 80px;
    width: 80px;
    margin: 0 auto 10px auto;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 50px;
    box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 20%);
}
.brandUseBox {
    background: #fff;
    padding: 30px;
    color: #000;
    height: calc(100% - 20px);
    margin: 10px 0;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    text-align: center;
}
.brandFaqBlock .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #0e7eb3;
}
.brandFaqBlock .accordion-item .accordion-header button {
    background: #0e7eb3;
    color: #fff;
}
.brandUseBox .boxTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.brandFaqBlock .accordion-item .accordion-header button::after {
    filter: brightness(0) invert(1);
}
section.contactbtnBanner .contactTitle h3 {
    color: #fff;
    font-size: 31px;
    margin-bottom: 10px;
}
section.contactbtnBanner .contactTitle p {
    color: #fff;
    font-size: 18px;
}
section.contactbtnBanner .contactCTA a:hover {
    background: #fff;
    color: #0e7eb3;
}
section.contactbtnBanner {
    background: #0e7eb3;
    padding: 40px 0;
}
section.contactbtnBanner .contactCTA a {
    display: inline-block;
    border: 2px solid #fff;
    padding: 10px 20px;
    color: #fff;
    width: 200px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    transition: .3s ease;
}
.brand-logo {
    background: #fff;
    padding: 10px;
    width: fit-content;
    border-radius: 10px;
    margin: 20px auto;
}
.brand-logo img {
    width: 200px;
	max-height:100px;
	object-fit:contain;
}
