/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
	font-family: "Urbanist", sans-serif;
	font-size: 20px;
	line-height: 25px;
	font-weight:400;
    background-color: #fff;
    color: #333;
}
.container{
	max-width:1220px;
	margin-left:auto;
	margin-right:auto;
	padding-left:30px;
	padding-right:30px;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}


/* Navigation styles */
#page-header{
	z-index: 999;
	position:absolute;
	width:100%;
}

#page-header .container {
	max-width: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background-color: transparent;
    width: 100%;
}

.logo img {
    height: 114px;
}

.nav-links {
    display: flex;
	list-style-type: none;
    justify-content: space-between;
	align-items: center;
}

.pageNavCollaspe{
	width: 100%;
	margin: 0 auto;
}

.nav-links a {
	text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
	padding-bottom: 33px;
}

#menu-item-71 a:hover {
	border: 0;
}

.nav-links a:hover {
    border-bottom:1px solid #fff;
}

.products-btn {
	border: 1px solid rgb(255, 255, 255);
	padding: 8px 10px;
	border-radius: 25px;
	min-width: 149px;
	text-align: center;
	letter-spacing: 2px;
}

.products-btn a {
	padding-bottom: 0;
}

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

.products-btn:hover a {
	color: #a5a5a5;
}

.user-icon {
    color: #fff;
    font-size: 1.2rem;
}

/* Hero section styles */
.hero {
    background-color: #a5a5a5;
    display: flex;
	padding-block:200px;
    align-items: center;
    position: relative;
	z-index: 1;
}

.banner-video {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.banner-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
    color: #fff;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
	margin-bottom: 2.6rem;
	max-width: 523px;
	line-height: 30px;
}

.cta-button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight:800;
    transition:all 0.3s ease;
	font-size: 20px;
	position: relative;
	padding-bottom: 13px;
}

.cta-button:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.cta-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-content-wrapper {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.info-sec-img {
	width: 100%;
	height: 492px;
}

.product-mobile-btn {
	margin-top: 30px;
}

.product-mobile-text {
	margin-top: 20px;
}

@media (min-width: 768px) {
	.hero {
		height: 100vh;
	}
	
	#page-header.scroll {
		background: #fff;
		position: fixed;
		box-shadow: 0 0px 6px -2px;
	}
	
	#page-header.scroll .logo img {
		height: 54px;
	}
	
	#page-header.scroll .navbar {
		padding: 8px 0;
	}
	
	#page-header.scroll .nav-links a {
		padding-bottom: 8px;
		color: #042c66;
	}
	
	#page-header.scroll .nav-links a:hover {
		border-bottom: 1px solid #042c66;
	}
	
	#page-header.scroll .products-btn {
		border: 1px solid #042c66;
	}
	
	#page-header.scroll .products-btn:hover {
		background-color: #042c66;
	}
	#page-header.scroll li.products-btn a {
		color: #042c66;
	}
	
	#page-header.scroll .products-btn:hover a {
		color: #fff;
	}
	
	#page-header.scroll .user-icon {
		color: #042c66;
	}
	
	.product-mobile-btn,
	.product-mobile-text {
		display: none;
	}
}

@media (max-width: 767px) {
	.hero-content p{
		font-size: 22px;
		line-height: 30px;
		margin-bottom: 1.2rem;
		max-width: 100%;
	}
	
	.info-sec-img {
		display: none;
	}
	
	.hero-content{
		max-width: 100%;
		margin-bottom: 20px;
	}
	
	.hero-content-wrapper{
		flex-direction: column;
		row-gap: 20px;
		align-items: start;
	}
	
	.hero-content-wrapper .cta-button{
		font-size: 16px;
	}
	
	.slide-text a,
	.slide-text p {
		display: none;
	}
}

.cta-button:before {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 7.5px 0 7.5px 7px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(0deg);
	right: -31px;
	top: 5px;
}

.social-links {
    color: #fff;
    text-align: right;
}

.social-links h3 {
    margin-bottom: 1rem;
    font-size: 20px;
	font-weight:800;
}

.hero-content-wrapper .social-links{
	display: none;
}

.social-icons {
    display: flex;
	align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.hero .social-icons{
	gap: 1.4rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Info section styles */
.info-section {
    background-color: #0e4fbf;
    padding-top: 131px;
	padding-bottom: 100px;
    color: #fff;
}

.info-icon {
	margin-bottom: 8px;
}

.info-icon img {
	width: 55px;
}

.info-card h2 {
	color: #ffc10d;
	font-size: 40px;
	margin-bottom: 28px;
	line-height: 45px;
}

.info-card p {
    margin-bottom: 51px;
	font-size: 18px;
	line-height: 30px;
	max-width: 330px;
	margin-left: auto;
	margin-right: auto;
}

.info-button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-button:before {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 7.5px 0 7.5px 7px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(0deg);
	right: -31px;
	top: 13px;
}

.info-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ffd700;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.info-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Slider section styles */
.slider-section {
    background-color: #e1edff;
    padding-top: 50px;
	padding-bottom: 40px;
    overflow: hidden;
	padding-inline: 30px;
}

.page-header {
	font-size: 26px;
}

.product-slider {
    max-width: 870px;
    margin: 0 auto;
    position: relative;
}

.slide {
    outline: none;
}

.slide-content {
    display: flex;
    align-items: center;
	flex-wrap: wrap;
	margin-left: -50px;
	margin-right: -50px;
}

.slide-content .col {
	padding-left: 50px;
	padding-right: 50px;
}

.slide-content .col-5 {
	width: 40%;
}

.slide-content .col-7 {
	width: 60%;
}

.slide-text {
    flex: 1;
    max-width: 500px;
}

.slide-text h2 {
    font-size: 36px;
    color: #000;
    font-weight: 800;
	margin-bottom: 20px;
}

.slide-text h3 {
    font-size: 35px;
	font-weight: 800;
    color: #000;
    margin-bottom: 45px;
	line-height: 34px;
}

.slide-text p {
	font-size: 16px;
	color: #000;
	margin-bottom: 44px;
	max-width: 316px;
	line-height: 24px;
}

.slide-image img {
    width: 100%;
}

.view-product-btn {
    display: inline-block;
  padding: 11px 10px;
  border: 1px solid #0047cc;
  color: #0047cc;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  background-color: #fff;
  min-width: 217px;
  text-align: center;
  font-size: 19px;
}

.view-product-btn:hover {
    background-color: #003399;
	color:#fff;
}

/* Slick slider custom styles */
.slider-dots {
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slick-dots {
    position: relative !important;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem !important;
}

.slick-dots li {
    margin: 0 !important;
	padding: 0 !important;
	width: 9px !important;
	height: 9px !important;
}

.slick-dots li button {
    width: inherit !important;
    height: inherit !important;
    border-radius: 50%;
    background-color: #fff !important;
    border: none !important;
    padding: 0 !important;
    margin: 0;
    transition: background-color 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #c1c1c1 !important;
}

.slick-dots li button:before {
    display: none;
}

.info-container .row{
	gap: 30px;
	align-items: center;
}

.user-icon {
	text-decoration: none;
	transition: color 0.03s ease;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
}

.user-icon:hover {
	color: #ffc10d;
}

/* Responsive styles for slider */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column-reverse;
        padding: 0 2rem;
        gap: 2rem;
        text-align: center;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-text h3 {
        font-size: 30px;
		line-height: 35px;
    }

    .slide-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Responsive design */
@media (max-width: 576px) {
	.info-detail-list{
		flex-direction: column !important;
		row-gap: 20px;
	}
	.info-detail-list li{
		width: 100% !important;
	}
	
	.info-card p{
		max-width: 100%;
	}
}
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 30px !important;
		line-height: 35px !important;
		margin-bottom: 1rem;
    }
	
	.social-links {
		text-align: left;
	}

    .social-links {
        right: 2rem;
    }
	
	.info-detail-list{
		margin-left: -16px !important;
  		margin-right: -16px !important;
	}
	
	.info-detail-list li{
		padding-left: 16px !important;
        padding-right: 16px !important;
	}
	
	.slide-content .col{
		padding-left: 20px;
        padding-right: 20px;
	}
	
	.slide-content .col-7,
	.slide-content .col-5{
		width: 100%;
	}
	
	.slide-text p{
		max-width: 100%;
	}
	
	.slide-image{
		max-width: 93%;
	}
	
	.products-grid .col{
		width: 46%;
		padding-left: 5px;
  	    padding-right: 5px;
	}
	
	.products-grid{
		margin-left: -5px;
 	    margin-right: -5px;
	}
	
	.product-card h3{
		font-size: 16px !important;
	}
	
	.pgNavOpener {
		display: none;
	}
	
	.slide-text h2 {
		font-size: 30px;
		margin-bottom: 8px;
	}
	
	.join-network .join-descr-wrap::before{
		background-position: right !important;
	}

	.slide-text h3 {
		margin-bottom: 0;
	}
}

@media (max-width: 991px) {
	    .info-container {
        flex-direction: column;
        gap: 3rem;
    }
	
	.info-container .row{
		flex-direction: column;
		row-gap: 20px;
	}
	
	.info-section .col-7{
		width: 100% !important;
	}
	
	.info-section .col-5{
		width: 100% !important;
	}
	
	.hero-content h1{
		font-size: 46px;
		line-height: 48px;
		margin-bottom: 1rem;
	}
	
	.hero{
		padding-block: 180px 60px;
	}
	
	.info-section{
		padding-block: 60px;
	}
}

@media (max-width: 1199px) {
	 .info-card p{
		font-size: 18px;
	    line-height: 22px;
		margin-bottom: 15px;
	    max-width: 100%;
	 }
	
	 .info-card {
        max-width: 100% !important;
		max-width: calc(100% - 0px) !important;
    }
	
	.info-card h2{
		font-size: 26px;
		line-height: 26px;
		margin-bottom: 15px;
	}
	
	.info-button{
		font-size: 16px;
	}
	
	.info-card h2 br{
		display: none;
	}
}

@media (min-width: 768px) {
	.pageNavCollaspe{
		width: 1234px;
	}
	
	.user-icon {
		width: 388px;
		text-align: center;
	}
	
	.logo {
		width: 389px;
		text-align: center;
	}
	
	#page-header .container {
	  padding: 0;
	}
}

@media (min-width: 992px) {
	.pageNavCollaspe{
		width: 1214px;
	}
	
	.user-icon {
		width: 181px;
	}
	
	.logo {
		width: 186px;
	}
}

@media (min-width: 1790px) {
	.pageNavCollaspe{
		width: 1424px;
	}
	
	.user-icon {
		width: 388px;
	}
	
	.logo {
		width: 390px;
	}
}

@media (min-width: 1900px) {
	.pageNavCollaspe{
		width: 1234px;
	}
	
	.user-icon {
		width: 388px;
	}
	
	.logo {
		width: 389px;
	}
}

/* Featured Products Section */
.featured-products {
    padding-top: 62px;
	padding-bottom: 50px;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .icon {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
    margin-bottom: 3rem;
}

.products-grid .col {
	padding-left: 15px;
	padding-right: 15px;
	width: 25%;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    margin-bottom: 39px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
	color: #2d2d2d;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 8px;
}

.view-product {
    display: inline-block;
    color: #0e4fbf;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.view-product::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #0047cc;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.wpcf7-response-output {
	color: #fff;
	width: 380px;
	margin-bottom: 10px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin-left: -40px;
}

.view-product:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.view-all {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
  font-size: 19px;
  padding: 10px 10px;
  background-color: transparent;
  color: #0e4fbf;
  text-decoration: none;
  border: 2px solid #0047cc;
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
  min-width: 220px;
}

.view-all-btn:hover {
    background-color: #0e4fbf;
    color: #fff;
}

/* Responsive styles for Featured Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
		margin-bottom: 1rem;
    }
	
	.featured-products .section-header p{
		line-height: 26px;
	}

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }

	.products-grid .col{
		width: 46%;
		padding-left: 5px;
  	    padding-right: 5px;
	}
	
	.products-grid{
		margin-left: -5px;
 	    margin-right: -5px;
	}
	
	.product-card h3{
		font-size: 16px !important;
		line-height: 19px;
	}
}

/* Why Brands Trust Section */
.why-brands-trust {
    padding: 6rem 0;
    background-color: #fff;
}

.trust-content {
    display: flex;
	flex-wrap: wrap;
	margin-left: -35px;
	margin-right: -35px;
}

.trust-image {
	height: 500px;
}

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

.trust-text {
	margin-top: 30px;
}

.trust-text h2 {
  font-size: 40px;
  color: #2d2d2d;
  font-weight: 800;
  margin-bottom: 53px;
  line-height: 45px;
  max-width: 270px;
}

.trust-text p {
	font-size: 19px;
	color: #2d2d2d;
	line-height: 31px;
	margin-bottom: 55px;
}

.trust-text .info-button {
	color: #000;
	font-size: 17px;
	font-weight: 500;
}

.trust-text .info-button::before {
  border-color: transparent transparent transparent #000;
  top: 5px;
}

.why-brands-trust .col{
	width:50%;
	padding-left: 35px;
	padding-right: 35px;
}

.arrow-link {
    display: flex;
    align-items: center;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0047cc;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.arrow-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.learn-more:hover {
   transform: translateX(5px);
}

.learn-more:hover .arrow-icon {
    transform: translateX(3px);
}
/* Responsive styles for Why Brands Trust */
@media (max-width: 1024px) {
    .trust-text h2 {
        font-size: 2.2rem;
    }
	
	.why-brands-trust .container,
	.why-brands-trust .col{
		padding-left: 16px;
  		padding-right: 16px;
	}
	
	.trust-content{
		margin-left: -16px;
  		margin-right: -16px;
	}
}

@media (max-width: 768px) {
    .why-brands-trust {
        padding: 2rem 0;
    }

    .trust-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .trust-image,
    .trust-text {
        max-width: 100%;
    }

    .trust-text h2 {
        font-size: 2rem;
		margin-bottom: 18px;
		line-height: 35px;
    }

    .trust-text p {
        font-size: 1rem;
		margin-bottom: 18px;
		line-height: 22px;
    }
	
	.why-brands-trust .col{
		width: 100%;
	}
}

/* Join Network Section */
.join-network {
    padding-top: 53px;
	padding-bottom: 124px;
}

.join-network .join-descr-wrap {
    padding: 182px 100px 153px;
	position: relative;
	overflow: hidden;
}

.join-network .join-descr-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("/wp-content/uploads/2025/05/join.jpg");
	z-index: -1;
	background-color: #536e96;
    opacity: 70%;
	background-position: center;
}

.join-descr-wrap::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(14,79,191,0.49999999999999994) 0%, rgb(14, 79, 191) 100%);
  opacity: 28%;
  z-index: -1;
}

.join-content {
    max-width: 600px;
}

.join-text h2 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 55px;
	font-weight: 800;
}

.join-text p {
	font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 27px;
    margin-bottom: 36px;
    font-weight: 600;
    max-width: 516px;
}

.learn-more-btn {
	display: inline-block;
	font-size: 19px;
	padding: 10px 10px;
	background-color: #fff;
	color: #0e4fbf;
	text-decoration: none;
	border: 2px solid #0047cc;
	border-radius: 25px;
	font-weight: 400;
	transition: all 0.3s ease;
	min-width: 220px;
	text-align: center;
}

.learn-more-btn:hover {
    background-color:#0e4fbf;
	color:#fff;
}

/* Responsive styles for Join Network */
@media (max-width: 768px) {
    .join-network {
        padding: 3rem 0;
    }

    .join-network .container {
        padding: 16px 16px;
    }

    .join-text h2 {
        font-size: 2.2rem;
		margin-bottom: 30px;
    }

    .join-text p {
        font-size: 1.1rem;
		line-height: 27px;
		margin-bottom: 25px;
    }
	
	.join-content{
		padding-block: 60px;
	}
	
	.join-network .join-descr-wrap {
		padding: 2px 20px 2px;
	}
}

@media (max-width: 480px) {
    .join-text h2 {
        font-size: 2rem;
    }

    .join-text p {
        font-size: 1rem;
    }

    .join-network .container {
        padding: 2rem 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #042c66;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    margin-bottom: 95px;
	margin-inline:-25px;
}
.footer-content .col{
	padding-inline:25px
}
.footer-content .col-5{
	width:40%;
}
.footer-content .col-7{
	width:60%;
}
.footer-brand {
    max-width: 300px;
	position: relative;
}

.copyright {
	font-size: 20px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 12px;
}

.brand-description {
	font-size: 17px;
	line-height: 24px;
	margin-bottom: 18px;
	font-weight: 500;
	max-width: 277px;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
	left:0;
  	bottom: -2rem;
}

.footer .social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-link:hover {
    color: #ffd700;
}

.footer-nav {
	display: flex;
}

.footer-nav .nav-column {
	margin-top: 41px;
}

.footer-nav .nav-column:nth-child(1) {
	width: 21%;
}

.footer-nav .nav-column:nth-child(2) {
	width: 35%;
}

.footer-nav .nav-column:nth-child(3) {
	width: 44%;
}

.nav-column h3 {
    color: #fff;
	font-size: 20px;
	margin-bottom: 24px;
    font-weight: 700;
	text-transform: uppercase;
}

.nav-column ul {
    list-style: none;
    padding: 0;
}

.nav-column ul li {
    margin-bottom: 1.8rem;
	line-height: 16px;
}

.nav-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
	font-size: 20px;
}

.operating-hours {
	font-size: 19px;
}

.operating-hours li + li {
	margin-top: 10px;
}

.contact-info li i {
	font-size: 25px;
}

.contact-info li address {
	font-size: 18px;
}

.footer-menu li a{
	font-size: 14px;
	font-weight: 700;
} 

@media (max-width: 1200px) {
	.footer-content .col-7{
		width: 72%;
	}
	
	.footer-content .col-5 {
	   width: 28%;
	}
}

@media (max-width: 992px) {
	.footer-content .col-7{
		width: 100%;
	}
	
	.footer-content .col-5 {
	   width: 100%;
	}
	
	.footer-content.row{
		flex-direction: column;
		row-gap: 20px;
	}
	
	.brand-description{
		margin: 0 auto;
	}
}

.nav-column ul li a:hover {
    color: #ffd700;
}

.operating-hours li {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    margin-top: 0.3rem;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffd700;
}

.contact-info address {
    font-style: normal;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    align-items: center;
	font-weight:700;
	font-size: 14px;
}

.copyright {
    color: #fff;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
	margin-left: 27px;
	font-size: 20px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffd700;
}

.separator {
    color: #fff;
}

.operating-hours li {
	margin-bottom: 10px !important;
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
	
	.nav-column h3,
	.contact-info li address,
	.nav-column ul li a,
	.nav-column ul li{
		font-size: 16px;
	}
	
	.contact-info li i{
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.footer-nav{
		flex-direction: column;
		row-gap: 20px;
	}
	
	.footer-nav .nav-column:nth-child(1),
	.footer-nav .nav-column:nth-child(2),
	.footer-nav .nav-column:nth-child(3){
		width: 100%;
	}
}

/* Legacy Hero Section Styles */
.legacy-hero {
    background-image: url(/wp-content/uploads/2025/05/about-banner.jpg);
    display: flex;
    align-items: center;
    padding-top: 269px;
	padding-bottom: 173px;
    position: relative;
    overflow: hidden;
	background-repeat: no-repeat;
  	background-size: cover;
	padding-inline: 30px;
	background-position: center;
}

.page-template-privacy-policy .legacy-hero,
.page-template-term-condition .legacy-hero {
	padding-top: 189px;
	padding-bottom: 63px;
}

.page-id-61 .legacy-hero {
    background-image: url(/wp-content/uploads/2025/05/partners-hero-scaled.jpg);
}

.page-id-63 .legacy-hero {
    background-image: url(/wp-content/uploads/2025/05/contact-banner.jpg);
}

.legacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(14,79,191,0.49999999999999994) 0%, rgb(14, 79, 191) 100%);
    opacity: 80%;
}

.legacy-content {
    max-width: 1182px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
	position: relative;
	z-index: 1;
	width:100%;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.5px;
}

.legacy-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.legacy-content p {
    margin-bottom: 2.5rem;
    max-width: 673px;
}

.legacy-buttons {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.legacy-buttons .info-button + .info-button {
	margin-left: 81px;
}

/* Responsive styles for Legacy Hero */
@media (max-width: 768px) {
    .legacy-hero {
        padding: 180px 32px 60px;
        text-align: center;
    }

    .legacy-content h1 {
        font-size: 2.5rem;
		margin-bottom: 10px;
    }

    .partners-sec .legacy-content p {
        font-size: 1.1rem;
		margin-bottom: 0.7rem;
    }

    .legacy-buttons {
        gap: 0.2rem;
    }

    .legacy-btn {
        width: 100%;
        justify-content: center;
    }
	
	.legacy-buttons .info-button{
		font-size: 14px;
	}
	
	.legacy-buttons .info-button::before{
		right: -28px;
 		top: 12px;
	}
	
	.legacy-hero.partners-sec .legacy-buttons .cta-button.legacy-btn{
		width: 116px;
	} 
}

@media (max-width: 480px) {
    .legacy-content h1 {
        font-size: 2rem;
    }

    .legacy-content p {
        font-size: 1rem;
		line-height: 21px;
    }
}

/* Brief History Section Styles */
.brief-history {
    padding-top: 105px;
	padding-bottom: 112px;
    background-color: #fff;
}

.brief-history .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

.history-content {
	display: flex;
	flex-wrap: wrap;
	margin-left: -25px;
	margin-right: -25px;
}

.history-content .col {
	padding-left: 25px;
	padding-right: 25px;
	width: 50%;
}

.history-text h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 65px;
    font-weight: bold;
}


.timeline-item {
    position: relative;
    margin-bottom: 49px;
}

.timeline-item:last-child {
    margin-bottom: 3rem;
}

.timeline-slider-wrapper .timeline-nav .slick-list{
	padding: 0 !important;
}

.timeline-nav .slick-track{
	margin-left: 0;
	margin-right: 0;
}

.timeline-nav .nav-slide img{
	height: 162px;
}

.timeline-item p {
    font-size: 20px;
    line-height: 35px;
    color: #2d2d2d;
    margin: 0;
}

.founder-signature {
	margin-top: 2rem;
	font-size: 22px;
	text-align: right;
	color: #2d2d2d;
	font-style: italic;
}

.founder-signature span {
    font-style: italic;
}

.founder-signature .title {
    margin-top: 0.25rem;
}

.social-links {
	display: none !important;
}

/* Responsive styles for Brief History */
@media (max-width: 1200px) {
	.timeline-item p{
		font-size: 20px;
        line-height: 30px;
	}
}
@media (max-width: 992px) {
	.history-text h2{
		margin-bottom: 36px;
	}
	
	.timeline-item p{
		font-size: 16px;
  		line-height: 24px;
	}
	
	.timeline-item{
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {
    .brief-history {
        padding: 4rem 0;
    }

    .history-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .timeline-item p {
        font-size: 1rem;
    }

    .timeline-item::before {
        left: -1.5rem;
        width: 10px;
        height: 10px;
    }

    .founder-signature {
        margin-top: 2rem;
    }
	
	.history-content{
		flex-direction: column;
		row-gap: 20px;
	}
	
	.history-content .col{
		width: 100%;
	}
}

@media (max-width: 480px) {
    .brief-history .container {
        padding: 0 1.5rem;
    }

    .history-text h2 {
        font-size: 1.8rem;
    }

    .timeline-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Journey Timeline Slider Styles */
.journey-timeline {
    padding: 4rem 0;
    background-color: #f5f8ff;
}

.journey-timeline .container {
    max-width: 1244px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.journey-timeline .section-header{
	text-align: start;
}
.journey-timeline .section-header{
	margin-bottom: 2.2rem;
}

.section-header h2 {
    font-size: 40px;
    color: #333;
    margin-bottom: 24px;
	color: #ffc10d;
}
.journey-timeline .section-header h2{
	color: #2d2d2d;
}

.featured-products .section-header p {
    font-size: 18px;
	line-height:34px;
    color: #2d2d2d;
    margin: 0 auto;
}
.journey-timeline .section-header p{
	margin: 0;
	font-size: 23px;
	line-height: 39px;
	max-width: 500px;
 	padding-left: 7px;
  	letter-spacing: -0.6px;
}

.timeline-slider-wrapper {
    position: relative;
    margin: 0 auto;
}

/* Main Slider Styles */
.timeline-slider {
    margin-bottom: 2rem;
}

.timeline-slider .slide {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
}

.timeline-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnail Navigation Styles */
.timeline-nav {
    max-width: 100%;
    margin: 0 auto;
}

.nav-slide {
    position: relative;
    cursor: pointer;
    padding: 1rem 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-slide.slick-current {
    opacity: 1;
}

.nav-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.nav-slide .year {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0047cc;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-slide.slick-current .year {
    opacity: 1;
}

/* Slick Slider Custom Styles */
/* .timeline-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
} */

.timeline-slider .slick-prev {
    left: 20px;
	display:none;
}

.timeline-slider .slick-next {
    right: 20px;
	display:none;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .journey-timeline {
        padding-block: 4rem 2rem;
    }

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

    .section-header p {
        font-size: 1rem;
		line-height: 26px;
    }

    .timeline-nav {
        max-width: 100%;
    }

    .nav-slide img {
        height: 60px;
    }

    .nav-slide .year {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .journey-timeline .container {
        padding: 0 1rem;
    }

	.section-header h2 {
		font-size: 30px;
		margin-bottom: 13px;
		line-height: 35px;
    }

    .timeline-slider .slick-arrow {
        width: 30px;
        height: 30px;
    }
	
	.featured-products .section-header p {
		line-height: 25px;
	}
}

/* Our Strengths Section */
.our-strengths {
    padding: 6rem 0;
    background-color: #f5f8ff;
}

.our-strengths .container {
    max-width: 1365px;
    margin: 0 auto;
    padding: 4.7rem 5.4rem 5.6rem 5.4rem;
    background-color: #0047cc;
    border-radius: 20px;
    color: #fff;
}

.our-strengths h2 {
    font-size: 48px;
	line-height:48px;
	font-weight:800;
    margin-bottom: 2.2rem;
    color: #fff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
	row-gap: 2.3rem;
}

.strength-card {
    padding: 1.3rem 0.3rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.strength-card:hover {
/*     transform: translateY(-5px); */
}

.strength-card .icon {
    font-size: 6rem;
    color: #ffd700;
    margin-bottom: 0.4rem;
	width: 40px;
}

.strength-card h3 {
    font-size: 26px;
	line-height: 26px;
    margin-bottom: 1.7rem;
    color: #fff;
    font-weight: 800;
}

.strength-card p {
    font-size: 22px;
    line-height: 31px;
    color: rgba(255, 255, 255, 0.9);
	letter-spacing: -0.1px;
}

/* Regulatory Issues Section */
.regulatory-issues {
    padding: 6rem 0;
    background-color: #fff;
	z-index: 1;
	position: relative;
}

.regulatory-image-holder {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.regulatory-image-holder:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: #ffffff;
	background: linear-gradient(283deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
}

.regulatory-image-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.regulatory-issues .container {
	max-width: 1250px;
    margin: 0 auto;
   	padding: 0 2rem;
    width: 100%;
}

.regulatory-content {
    max-width: 1043px;
}

.regulatory-content h2 {
    font-size: 40px;
    line-height: 40px;
    color: #2d2d2d;
    margin-bottom: 2.3rem;
    font-weight: bold;
}

.regulatory-content p {
	font-size: 20px;
    line-height: 38px;
    color: #2d2d2d;
    margin-bottom: 2rem;
    letter-spacing: -0.1px;
}

.regulatory-content p:nth-child(3){
	margin-bottom: 64px;
}

.contact-details {
    padding-top: 0.7rem;
}

.contact-details p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
	color: #2d2d2d;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.contact-item i {
    color: #0047cc;
    font-size: 1.2rem;
    width: 24px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
	font-size: 20px;
	color: #2d2d2d;
}

.contact-item a:hover {
    color: #003399;
}

.contact-item address {
    font-style: normal;
    color: #2d2d2d;
    line-height: 30px;
	font-size: 20px;
    max-width: 300px;
}

/* Responsive styles for Regulatory Issues */
@media (max-width: 768px) {
    .regulatory-issues {
        padding: 3rem 0;
    }

    .regulatory-content h2 {
        font-size: 2rem;
    }

    .regulatory-content p {
        font-size: 1rem;
		line-height: 28px;
    }

    .contact-details {
        padding-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .regulatory-issues .container {
        padding: 0 1.5rem;
    }

    .regulatory-content h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        gap: 0.8rem;
    }
	
	.contact-item a,
	.contact-item address{
		font-size: 16px;
		line-height: 26px;
	}
	
	.contact-item{
		margin-bottom: 0.7rem;
	}
}

/* Responsive styles for Our Strengths */
@media (min-width: 1200px) {
	.strength-card p {
		 font-size: 20px;
		 line-height: 27px;
	}
	.strength-card h3 {
		 font-size: 26px;
		 line-height: 26px;
	}
}

@media (max-width: 1200px) {
		.strength-card p {
		 font-size: 18px;
		 line-height: 24px;
	}
	
	.strength-card h3 {
		 font-size: 22px;
		 line-height: 22px;
	}
}
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .our-strengths .container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .our-strengths {
        padding: 4rem 1rem;
    }

    .our-strengths .container {
        padding: 2rem;
    }

    .our-strengths h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .strength-card {
        padding: 1.5rem;
    }

    .strength-card .icon {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
		
	.strength-card p{
		font-size: 15px;
 	    line-height: 22px;
	}
	
	.strength-card h3{
		font-size: 20px;
  		line-height: 20px;
	}
	
	.strengths-grid {
        margin-inline: -0.5rem;
    }
	
	.strength-card{
		padding: 0.5rem;
	}
}

@media (max-width: 576px) {
	 .strengths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .our-strengths .container {
        padding: 1.5rem;
    }

    .our-strengths h2 {
        font-size: 1.8rem;
    }

    .strength-card {
        padding: 1rem;
    }
}

/* Partners Section Styles */
.partners-section {
    margin-top: -148px;
    position: relative;
    z-index: 10;
	padding-bottom: 4rem;
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

.partners-text{
	margin-top: 97px;
}

.partners-text {
    flex: 1;
}

.partners-text h1 {
    font-size: 40px;
    color: #2d2d2d;
	font-weight:800;
    margin-bottom: 31px;
    line-height: 45px;
}

.partners-text p {
    font-size: 20px;
    color: #2d2d2d;
    line-height: 35px;
    margin-bottom: 20px;
    letter-spacing: -0.1px;
	max-width: 570px;
}

.partners-sec .cta-button::before{
	top: 12px;
}

.partners-image {
    flex: 1;
	height: 833px;
}

.partners-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 1240px) {	
	.partners-section{
		margin-top: -70px;
	}
	
	.partners-text{
		margin-left: 0;
	}
	
	.partners-text h1 {
	  font-size: 38px;
	  line-height: 43px;
	}
	
	.partners-text p {
	  font-size: 18px;
	  line-height: 30px;
	}
	
	.partners-image{
		height: 600px;
	}
}

@media screen and (max-width: 968px) {
	.partners-section{
		margin-top: 0;
	}
	
    .partners-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .partners-text h1 {
        font-size: 2rem;
    }

    .partners-text p {
        font-size: 1rem;
		margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-text h1 {
        font-size: 1.8rem;
		line-height: 35px;
    }
	
	 .partners-text {
		 text-align: left;
	}
}

/* Global Partnerships Section */
.partners-sec .legacy-content p{
	max-width: 640px;
	padding: 10px 0;
	line-height: 30px;
	letter-spacing: 0;
}
.partners-sec .legacy-btn{
	border-radius:0;
}
.global-partnerships {
    padding: 80px 0;
}

.global-partnerships-content {
    display: flex;
    align-items: center;
    gap: 144px;
    margin: 0 auto;
}

.global-map {
   width:50%;
}

.global-map img {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.global-partnerships .container{
	max-width: 1320px;
}

.global-text {
	width:50%;
}

.global-text h2 {
    font-size: 40px;
    color: #2d2d2d;
    margin-bottom: 64px;
    line-height: 40px;
    font-weight: 800;
}

.global-text p {
    font-size: 20px;
    color: #2d2d2d;
    line-height: 35px;
    margin-bottom: 40px;
	letter-spacing: -0.1px;
    max-width: 530px;
}

/* Responsive Design for Global Partnerships */
@media screen and (max-width: 1200px) {
	.global-text p {
		 font-size: 18px;
		 line-height: 28px;
		 margin-bottom: 18px;
	}
	
	.global-text h2 {
		 font-size: 40px;
		 margin-bottom: 25px;
		 line-height: 48px;
	}
}
@media screen and (max-width: 968px) {
    .global-partnerships-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .global-text {
        padding-right: 0;
        text-align: center;
    }

    .global-text h2 {
        font-size: 2rem;
    }

    .global-map {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
	
	.global-text{
		width:100%;
	}
	
	.global-text p{
		max-width: 700px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 480px) {
    .global-partnerships {
        padding: 40px 0;
    }

    .global-text h2 {
        font-size: 1.8rem;
		line-height: 35px;
    }

    .global-text p {
        font-size: 1rem;
    }
	
	.partners-sec .legacy-content p{
		line-height: 30px !important;
	}
	
	.global-text {
		text-align: left;
	}
}

/* Contact Section Styles */
.legacy-hero.contact-form-sec{
	padding: 8rem 4rem 10rem!important;
	min-height: unset!important;
	height: 560px
}
.contact-form-sec .legacy-content h1{
	font-size: 40px;
	text-align:center;
} 
.contact-section {
    padding: 20px 30px;
   	margin-top: -144px;
    display: flex;
    align-items: center;
	position:relative;
}

.contact-section .container {
    max-width: 1090px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #0047cc 0%, #2563eb 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.contact-section .container:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	background-image: url(/wp-content/uploads/2025/05/partners-img2-scaled.png);
	background-repeat: no-repeat;
	z-index: -1;
	width: 340px;
	height: 410px;
	background-position: left;
	background-size: cover;
	opacity: 40%;
}

.contact-form-container h1 {
    color: #ffffff;
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 48px;
	font-weight:800;
}

.contact-form-container .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 26px;
	line-height:40px;
    margin-bottom: 40px;
}
.contact-header{
	display:flex;
	gap: 47px;
    margin-bottom: 39px;
    align-items: baseline;
}
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    margin-bottom: 20px;
}

li.current-menu-item a {
  border-bottom: 1px solid #fff;
}

li.products-btn a {
  border-bottom: 0;
}

.contact-form-container .form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 27px;
    border: 1px solid #e1e1e1;
    font-size: 15px;
	line-height:13px;
    transition: border-color 0.3s ease;
	font-weight: 600;
  	letter-spacing: 1.7px;
	height: 75px;
}

.form-group textarea {
    min-height: 120px;
}
.contact-form-container .form-group textarea{
	height: 139px!important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0047cc;
}

.source-group p {
    margin-bottom: 1px;
    color: #fff;
    font-weight: 800;
	font-size: 26px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
	text-align: start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
	width: 19px;
}

.wpcf7-form-control {
	display: flex;
	flex-wrap: wrap;
}
.contact-form-container .wpcf7-list-item{
	margin: 0 0 15px 0!important;
	width: 27%;
}
.submit-btn {
	background-color: #fff;
	color: #0e4fbf;
	padding:5px 74px;
	border:1px solid #0e4fbf;
	border-radius:25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition:all 0.3s ease;
	display: block;
	float: right;
	min-width: 285px;
   height: 54px;
	margin-top: 60px;
}

.submit-btn:hover {
    background-color: #003399;
	color:#fff;
}

/* Responsive styles for Contact Section */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
		margin-top: -230px;
    }

    .contact-section .container {
        padding: 30px 20px;
    }

    .contact-form-container h1 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.contact-form-container .wpcf7-list-item{
		width: 25%;
	}
	
	.contact-header{
		flex-direction: column;
  		row-gap: 20px;
	}
	
	.contact-form-container h1{
		margin-bottom: 0;
	}
}

@media screen and (max-width: 576px) {
    .contact-form-container h1 {
        font-size: 1.8rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
		min-width: unset;
    }
	
	.contact-form-container .wpcf7-list-item{
		width: 50%;
	}
	
	.contact-form-container .subtitle {
		line-height: 25px;
	}
}

/* Contact Info Section Styles */
.contact-info-section {
    padding: 80px 0 50px;
    background-color: #ffffff;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-text {
    text-align: center;
    max-width: 815px;
    margin: 0 auto 100px;
}

.contact-info-text p {
    font-size: 20px;
    color: #2d2d2d;
    line-height: 30px;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-card {
	text-align: center;
	width: 33.333%;
}

.info-detail-list .info-card {
	width: auto;
}

.info-card .icon{
	margin-bottom: 57px;
}
 .info-sec-img img {
	 width:100%;
	 height:100%;
	 object-fit: cover;
}

.info-section .col-7{
	width:60%;
}

.row{
	display:flex;
}

.info-section .col-5{
	width:40%;
}

img{
	max-width:100%;
	height:auto;
}

.info-card .icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Responsive styles for Contact Info Section */
@media screen and (max-width: 1200px) {
	.contact-form-container h1{
		font-size: 38px;
	    line-height: 44px;
	}
}

@media screen and (max-width: 992px) {
    .contact-info-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .info-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
	
	.contact-form-container h1{
		font-size: 28px;
	    line-height: 36px;
	}
	
	.contact-form-container .subtitle{
		font-size: 20px;
 	    line-height: 32px;
	}
	
	.contact-form-container .form-group input, .form-group textarea{
		height: 55px;
		font-size: 12px;
	}
	
	.source-group p{
		font-size: 16px;
	}
}

@media screen and (max-width: 576px) {
	.contact-form-container .form-group input{
		height: auto;
		padding: 12px;
	}
	
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-text {
        margin-bottom: 40px;
    }

	.info-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.contact-info-text p{
		font-size: 20px;
		line-height: 27px;
	}
	
	.info-card .icon {
		margin-bottom: 7px;
	}
} 
/* sing,e-product-section */
.single-product-sec{
	padding:15.4rem 0 6rem;
	position: relative;
	overflow:hidden;
}
.single-product-sec .product-archive-wrapper{
	margin-top:0!important;
	gap: 57px!important;
}

.single-product-sec .product-archive-wrapper ul{
	list-style-type:none;
}
.product-archive-wrapper ul li+ li{
	padding-top:5px;
}
.sidebar a,
.product-archive-wrapper .category-filter li a{
   font-weight: 600;
   text-decoration: none;
   color: #2d2d2d;
   font-size: 20px;
   margin-bottom: 16px;
   display: block;
   text-transform: capitalize;
}

.filter-product-wrapper{
	width: 27% !important;
	margin-top: 10px;
}

.sidebar{
	width: 100% !important;
}

.main-content{
	width:73% !important;
}

.product-archive-wrapper .main-content label{
	font-weight:600;
	color:#8c8c8c;
	font-size: 18px;
}
.product-archive-wrapper .main-content label + label{
	padding-left: 30px;
}
.product-archive-wrapper .main-content form select{
	text-align: center;
    border: 2px solid #8c8c8c;
    width: 75px;
    margin-left: 6px;
    height: 35px;
    border-radius: 4px;
    font-size: 21px;
    background-color: transparent;
    color: #8c8c8c;
}

.product-archive-wrapper .main-content form .newsletter-slect{
	width: 269px;
}

.listing-btn{
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.listing-btn button {
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

.listing-btn button img{
	width: 23px;
	height: 26px;
}
.product-archive-wrapper .main-content form{
	width:100%;
	margin-right: 43px;
}
.produvt-list-label{
	display:flex;
	justify-content: space-between;
}
.product-archive-wrapper .main-content .listing-btn{
	display:flex;
	justify-content: flex-end;
}
.product-archive-wrapper .main-content h4{
	font-weight:600;
	color:#2d2d2d;
	margin-top: 7px;
	font-size: 20px;
	line-height: 23px;
}

.list-view .product-item{
	width: 100% !important;
	text-align: center;
}

.product-archive-wrapper .main-content p{
	color:#2d2d2d;
	margin-top: 1px;
    font-size: 18px;
}

.product-archive-wrapper .main-content .product-listing{
	display: flex;
	flex-wrap:wrap;
	margin-inline: -10px;
}
.product-archive-wrapper .main-content .product-item{
	width: 33.33%;
	padding-inline: 10px;
}
.product-archive-wrapper .main-content .product-item img{
	max-width: 100%;
    width: 100%;
    height: 365px;
    object-fit: contain;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.2);
	box-shadow: 0px 0px 8px -6px #000;
}

.wpcf7-not-valid-tip {
  color: #fff;
}
.product-item a{
	text-decoration:none;
}
.single-product #page-header,
.page-template-templates #page-header{
	background-color: #fffdfd;
}

.single-product #page-header .nav-links a,
.single-product #page-header .user-icon,
.page-template-templates #page-header .nav-links a,
.page-template-templates #page-header .user-icon{
	color: #2d2d2d;
}

.single-product #page-header .products-btn,
.page-template-templates #page-header .products-btn{
	border: 1px solid #2d2d2d;
}
/* singlr-product-page */
.single-product-sec .single-product{
	display: flex; 
	gap:25px;
	margin-bottom: 60px;
}
.single-product-left{
	width:48%;
}
.single-product-right{
	width:50%;
}
.files-haed{
	margin-top: 13px;
	margin-left: 50px;
}
.single-product-left .slider-wrapper{
	display: flex;
	gap:10px;
	max-width: 100%;
	align-items: flex-start;
}

.single-product-left .slider-nav-thumbnails{
	width: 120px;
	max-height: 430px;
	overflow:hidden;
	display: flex;
	flex-direction: column;
	margin-top: 0;
}
.single-product-left .slider-nav-thumbnails .slick-list{
	height: 439.5px;
}
.single-product-left .slider-nav-thumbnails {
	opacity: 1;
	height: 440px;
}
.single-product-left .slider-nav-thumbnails .product-galler-img{
	width: 120px;
	margin:5px 0;
  	cursor: pointer;
	height: auto;
}
.single-product-right h2,
.single-product-right h1{
	font-size: 34px;
	font-weight:800;
	color:#000;
	line-height: 38px;
}

.error-page-sec {
	padding-top: 210px;
	padding-bottom: 200px;
	background: linear-gradient(180deg, rgba(14,79,191,0.49999999999999994) 0%, rgb(14, 79, 191) 100%);
	text-align: center;
}

.error-page-sec h1 {
	font-size: 45px;
	line-height: 48px;
	color: #fff;
	margin-bottom: 55px;
}

.error-page-sec .view-all-btn {
	color: #fff;
	border-color: #fff;
}

.single-product-right h2{
	font-size: 26px;
	margin-top: 25px;
}
.product-detail-text h3{
	font-size: 26px;
	font-weight:600;
	color:#8c8c8c;
	margin-bottom: 44px;
}
.product-detail-text p{
	font-size: 27px;
	font-weight: 600;
	color: #2d2d2d;
	line-height: 39px;
}
.page-header h1{
	font-size: 26px;
	color: #8c8c8c;
	font-weight:600;
}
.page-header{
	margin-top:30px;
	margin-bottom:50px;
}
.product-prop-holder{
	padding-top:57px;
	color:#2d2d2d;
	font-weight:600;
}
.product-prop-holder p{
	font-size: 26px;
    margin-bottom: 12px;
	color: #8c8c8c;
	line-height: 40px;
	max-width: 425px;
}
.product-prop-holder .brand-name{
	color: #2d2d2d;
	margin-left: 7px;
}

.single-page-detail .productgallerySlider{
	width: 570px;
    height: 627px;
}

.single-page-detail .productgallerySlider .slick-slide img{
	width: 100%;
    height: 100%;
	object-fit: cover;
}

.slider-nav-thumbnails img{
	height: 120px;
    width: 100px;
	object-fit: cover;
}

.single-page-detail .page-header{
	margin-bottom: 74px;
	font-size: 18px;
}

.info-detail-list {
	display: flex;
	padding: 0;
	list-style: none;
	margin-left: -24px;
	margin-right: -24px;
}

.info-section .row {
	margin-left: -18px;
	margin-right: -18px;
	flex-wrap: wrap;
}

.info-section .row .col {
	padding-right: 18px;
	padding-left: 18px;
}

.info-detail-list li {
	width: 50%;
	padding-left: 24px;
	padding-right: 24px;
}

.info-section .info-card{
	text-align:start;
	font-size: 26px;
  	line-height: 36px;
}
.single-page-detail .product-detail-text p{
	letter-spacing:0.4px;
}

.client-logo-section {
	padding-top: 103px;
	text-align: center;
	padding-bottom: 130px;
}

.client-logo-section h2{
	font-size: 26px;
	margin-bottom: 100px;
}

.client-logo-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin-right: -25px;
	margin-left: -25px;
}

.client-logo-list li {
	width: 25%;
	padding-left: 25px;
	padding-right: 25px;
}

.client-logo-list li img {
	width: 100%;
	height: 130px;
	object-fit: cover;
}

.filte-icon{
	display: none;
	cursor: pointer;
}

ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	font-size: 28px;
	line-height: 30px;
}

ul.page-numbers li + li {
	margin-left: 15px;
}

.parent-category.active a {
	color: #ffd700 !important;
}

.product-listing.list-view .product-item a {
	display: flex;
	align-items: center;
	text-align: left;
	gap: 20px;
}

.product-listing.list-view .product-item a img {
	width: 50%;
}

.product-listing.list-view .product-item a .product-text-wrap {
	width: 50%;
}

.product-listing.list-view .product-item a .product-text-wrap h4 {
	font-size: 20px;
}

@media screen and (min-width: 1260px) {
	.single-page-detail .productgallerySlider {
	  width: 460px !important;
	  height: 627px;
	}
	.product-galler-img{
		height: 497px;
	}
}
@media screen and (max-width: 1260px) {
	.single-page-detail .productgallerySlider {
	  width: 76%;
  	  height: 360px;
	}
	.product-galler-img,
	.single-product-left .slider-nav-thumbnails{
	   height: 360px;
	}
}

@media screen and (max-width: 1200px) {
	.client-logo-list li{
		width:28%;
	}
	.sidebar a, .product-archive-wrapper .category-filter li a{
		font-size: 20px;
	}
	.product-archive-wrapper .main-content label{
		font-size: 15px;
	}
	
	.product-archive-wrapper .main-content h4,
	.product-archive-wrapper .main-content p{
		font-size: 18px;
		margin-bottom: 4px;
	}
}
@media screen and (max-width: 992px) {
	.client-logo-list li{
		width:26%;
	}
	.product-archive-wrapper .main-content form select{
		width: 84px;
		font-size: 16px;
		height: 34px;
	}
	.sidebar a, .product-archive-wrapper .category-filter li a{
		font-size: 16px;
	}
	.product-archive-wrapper .main-content .product-item{
		width: 50%;
	}
	.product-archive-wrapper .main-content form .newsletter-slect{
		width: 125px;
	}
	.nav-links a{
		font-size: 14px;
	}
	.pageNavCollaspe{
		width: 68%;
	}
    .single-page-detail .productgallerySlider {
		  width: 68%;
		  height: 360px;
	}
	.product-prop-holder p{
		 font-size: 20px;
	}
	.single-product-right h1{
		font-size: 24px;
		line-height: 30px;
	}
	
	
	
}
@media screen and (max-width: 768px) {
	.client-logo-list li{
		width:42%;
	}
	
	.slider-nav-thumbnails.slick-vertical {
		flex-direction: row !important;
	}
	.slider-nav-thumbnails .slick-track {
		display: flex !important;
		flex-direction: row !important;
		height: auto !important;
		transform: none !important;
	}
	
	.single-product-left .slider-nav-thumbnails .product-galler-img {
		width: auto;
	}
	
	.product-prop-holder p {
		font-size: 16px;
		line-height: 17px;
	}
	
	.single-product-right h2 {
		font-size: 18px;
		margin-top: 2px;
	}
	
	.product-prop-holder {
	  padding-top: 27px;
	}
	
	.sidebar a {
		border: 1px solid #000;
		border-radius: 50px;
		padding: 4px 20px;
		text-align: center;
		display: inline-block !important;
	}
	
	.sidebar a,
	.sidebar a, .product-archive-wrapper .category-filter li a {
		margin-bottom: 0;
	}
	
	.sidebar {
		min-width: 1945px;
		display: flex;
	}
	
	.side-bar-wrapper {
		overflow: auto;
		padding-bottom: 20px;
	}
	
	.category-filter {
		display: flex;
	}
	
	.category-filter > li {
		margin-left: 15px;
	}
	
	.product-archive-wrapper ul li + li {
		padding-top: 0;
	}
	
	.filter-product-wrapper {
		width: 100% !important;
	}
	.filter-product-wrapper{
		position: relative;
	}
	
	.product-archive-wrapper{
		flex-direction: column !important;
	}
	
	.main-content {
	   width: 100% !important;
	}
	
   .pageNavCollaspe {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        transform: scaleY(0);
        transform-origin: 0 0 0;
        transition: transform .3s ease;
        text-align: left;
        padding-bottom: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    .pgNavOpener {
        display: block;
        position: absolute;
        top: 60px;
        right: 28px;
        color: #FFF;
        width: 24px;
        height: 28px;
        z-index: 999;
    }
    .pgNavOpener::before {
        content: "";
        position: absolute;
        top: 4px;
        right: 0;
        left: 0;
    }
    .pgNavOpener::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .pgNavOpener .icnBar {
        position: absolute;
        left: 0;
        top: 14px;
        right: 0;
    }
    .pgNavOpener::before,
    .pgNavOpener::after,
    .pgNavOpener .icnBar {
        height: 4px;
        background-color: currentColor;
        transition: all .3s ease;
        border-radius: 5px;
    }
    .pgNavActive .pageNavCollaspe {
        transform: scaleY(1);
    }
    .pgNavActive .pgNavOpener::before {
        transform: rotate(45deg) translate(8px, 6px);
    }
    .pgNavActive .pgNavOpener::after {
        transform: rotate(-45deg) translate(8px, -7px);
    }
    .pgNavActive .pgNavOpener .icnBar {
        display: none;
    }
	.nav-links{
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 30px;
		align-items: center;
		padding: 110px 30px 35px;
		background-color: #8c8c8c;
	}
	.nav-links a{
		font-size: 18px;
		padding-bottom: 15px;
		border-bottom: 1px solid #fff;
		width: 100%;
	    display: inline-block;
	}
	.menu-item{
		width: 100%;
  		text-align: center;
	}
	.navbar {
        padding: 1rem 0;
    }
	
	.user-icon{
		margin-right: 44px;
	}
	li.products-btn a{
		padding-block: 6px;
	}
	.nav-links a:hover{
		letter-spacing: 2px;
		color: #fff;
	}
	.single-product-left .slider-nav-thumbnails,
	.single-page-detail .productgallerySlider,
	.product-galler-img{
		height: auto;
	}
	
	.slider-nav-thumbnails .slick-track {
		width: 100%;
	}
	
	.single-product-left .slider-nav-thumbnails {
		width: 100%;
	}
	
	.product-galler-img {
		margin-bottom: 20px;
	}
	.single-product-sec .single-product{
		flex-direction: column;
		margin-bottom: 20px;
	}
	.single-product-left,
	.single-product-right{
		width: 100%;
	}
	.single-page-detail .productgallerySlider {
		 width: 100%;
		margin-bottom: 20px;
	}
	.slider-nav-thumbnails img {
	    height: 80px;
	 	width: 117px;
	}
	.page-id-65 .pgNavOpener .icnBar,
	.page-id-65 .pgNavOpener::before,
	.page-id-65 .pgNavOpener::after,
	.single-product .pgNavOpener .icnBar,
	.single-product .pgNavOpener::before,
	.single-product .pgNavOpener::after{
		background-color: #000;
	}
	.single-product #page-header .nav-links a, .single-product #page-header .user-icon, .page-template-templates #page-header .nav-links a, .page-template-templates #page-header .user-icon{
		color: #fff;
	}
	.single-product #page-header .products-btn, .page-template-templates #page-header .products-btn{
		border: 1px solid #fff;
	}
	.products-btn:hover{
		background-color: #B0B0B0;
	}
	.product-detail-text h3{
		font-size: 24px;
		margin-bottom: 15px;
	}
	.product-detail-text p{
		font-size: 17px;
		line-height: 26px;
	}
	.slider-nav-thumbnails .slick-slide{
		width: 122px !important;
	}
	.files-haed{
		margin-left: 0;
	}
	
	.timeline-nav .slick-arrow {
		position: absolute;
		top: 50%;
		transform: translatey(-50%);
		z-index: 2;
	}
	
	.timeline-nav .slick-arrow svg {
		width: 15px;
	}
	
	.timeline-nav .slick-arrow.slickPrev {
		left: 0;
	}
	
	.timeline-nav .slick-arrow.slickNext {
		right: 0;
	}
	
	.produvt-list-label {
		display: none;
	}
	
	.single-product-left .slider-wrapper {
		display: block;
	}
	
	.single-page-detail .page-header {
		margin-bottom: 44px;
	}
	
	.single-product-left .slider-nav-thumbnails .slick-list {
		height: auto;
	}
}
@media screen and (max-width: 576px) {
	.client-logo-list li{
		width:50%;
	}
	
	.product-archive-wrapper .main-content .product-item{
		width: 50%;
	}
	
	.produvt-list-label{
		flex-direction: column;
		row-gap: 15px;
	}
	
	.product-archive-wrapper .main-content label + label{
		padding-left: 0;
	}
	
	.product-archive-wrapper .main-content .listing-btn{
		margin-top: -40px;
	}
	.product-item a{
		text-align: center;
	}

	.single-product-sec {
		padding: 10.4rem 0 2rem;
	}
	.product-archive-wrapper .main-content label{
		justify-content: center;
		display: flex;
		flex-direction: row;
		gap: 10px;
	}
	.product-archive-wrapper .main-content form select{
		width: 46%;
	}
	.product-archive-wrapper .main-content form .newsletter-slect {
    	width: 61%;
  	}
	
	.contact-info {
		max-width: 230px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}
	
	.copyright {
		font-size: 15px;
	}
	
	.legal-links {
		font-size: 15px;
	}
	
	.slider-nav-thumbnails .slick-track {
		width: 100% !important;
	}
}

.logo img {
	width: 85px;
}

.social-icons img {
	width: 45px;
	height: 45px;
}

.privacy-content-wrap {
	padding-top: 70px;
	padding-bottom: 70px;
}

.privacy-text-descripion h2 {
	font-size: 40px;
	line-height: 45px;
	margin-bottom: 25px;
}

.privacy-text-descripion ul {
	padding-left: 45px;
	margin-bottom: 15px;
}

.privacy-text-descripion ul li + li {
	margin-top: 10px;
}

.privacy-text-descripion p {
	margin-bottom: 15px;
}

.privacy-text-descripion .content {
	margin-bottom: 40px;
}

.product-detail-text {
	display: none;
}

.regulatory-image-holder {
	display: none;
}

.listing-btn button {
	width: 30px;
	height: 30px;
	transition: all 0.3s ease;
}

.listing-btn button svg{
	width: 30px;
	height: 30px;
}

.listing-btn button:hover svg{
	color: #ffd700;
}

.listing-btn button[disabled=""] svg {
	color: #ffd700;
}