/* Global Styles */
* {
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	color: #333;
}

.l-canvas {
	width: 100%;
	overflow-x: hidden;
}

/* Header Styles */
.l-header {
	background: #fff;
	border-bottom: 1px solid #e6e6e6;
	padding: 10px 0;
}

.l-subheader {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.l-subheader-h {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 60px;
}

.l-subheader-cell.at_left {
	flex: 0 0 auto;
}

.l-subheader-cell.at_right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.w-text {
	display: flex;
	align-items: center;
}

.w-text-h {
	display: block;
	line-height: 0;
}

.w-text-value {
	font-size: 24px;
	font-weight: bold;
	color: #333;
}

/* Navigation Menu */
.w-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}

.menu-item {
	position: relative;
}

.menu-item a {
	display: block;
	padding: 15px 20px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
}

.menu-item a:hover,
.menu-item.current a {
	color: #e91e63;
}

/* Main Content */
.l-main {
	width: 100%;
}

.l-section {
	padding: 0;
}

.l-section-h {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

/* Grid System */
.vc-row {
	width: 100%;
	margin: 0 auto;
}

.vc-row-inner {
	display: flex;
	flex-wrap: nowrap;
	margin: 0;
	align-items: flex-start;
	width: 100%;
}

.vc-column-inner {
	padding: 0 15px;
	flex: 1;
	box-sizing: border-box;
}

.vc-column-inner.width-half {
	flex: 0 0 50%;
	max-width: 50%;
	width: 50%;
}

.vc-column-inner.width-sixth {
	flex: 0 0 16.666%;
	max-width: 16.666%;
}

.vc-column-inner.width-two-thirds {
	flex: 0 0 66.666%;
	max-width: 66.666%;
}

.vc-column-inner.width-third {
	flex: 0 0 33.333%;
	max-width: 33.333%;
}

/* Typography */
.section-title {
	color: midnightblue;
	font-weight: 700;
	font-size: 60px;
	text-align: center;
	margin: 20px 0 0 0;
}

.conversational {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	margin-top: -15px;
}

.content-text {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.content-text p {
	margin: 15px 0;
}

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

/* Images */
.us-image {
	text-align: center;
}

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

/* Buttons */
.us-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #007bff;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s;
}

.us-btn:hover {
	background: #0056b3;
}

/* Spacers */
.spacer-15 { height: 15px; }
.spacer-20 { height: 20px; }
.spacer-25 { height: 25px; }
.spacer-50 { height: 50px; }
.spacer-70 { height: 70px; }

/* Background Colors */
.bg-fafafa {
	background: #fafafa;
	padding: 40px 0;
}

.bg-gray {
	background: #f8f8f8;
}

/* Client Logos */
.client-logo {
	border: 1px solid #e6e6e6;
	padding: 20px;
	margin: 10px;
	background: #fff;
}

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

/* Carousel */
.carousel-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.carousel-track {
	display: flex;
	animation: scroll 20s linear infinite;
	gap: 30px;
}

.carousel-item {
	flex: 0 0 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #fff;
	border: 3px solid rgb(235, 207, 207);
	border-radius: 8px;
}

.carousel-item img {
	max-width: 100%;
	height: auto;
	max-height: 80px;
	object-fit: contain;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.carousel-container:hover .carousel-track {
	animation-play-state: paused;
}

/* Quality & Infrastructure Page Styles */
.section-row {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 40px;
}

.section-row.reverse {
	flex-direction: row-reverse;
}

.section-col-half {
	flex: 1;
}

.section-col-third {
	flex: 0 0 33.333%;
}

.section-col-twothirds {
	flex: 0 0 66.666%;
}

.separator {
	width: 60px;
	height: 3px;
	background: #e91e63;
	margin: 0 0 20px 0;
}

.section-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
}

.section-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.quality-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.quality-grid img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

.cert-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
}

.cert-item {
	border: 1px solid #ebebeb;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
}

.cert-item img {
	max-width: 250px;
	height: auto;
}

/* Logo Styles */
.logo-link {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
}

.logo-img {
	height: 45px;
	width: auto;
}

.company-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}

.product-item {
	text-align: center;
}

.product-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Hero Slider Section */
.hero-slider {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.slide:nth-child(1) {
	background-image: url('../uploads/Slider-1.jpg');
}

.slide:nth-child(2) {
	background-image: url('../uploads/Slider-1.jpg');
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

.slide-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.slide-text {
	flex: 1;
	color: #fff;
	text-align: left;
	padding-right: 50px;
}

.slide-subtitle {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #fff;
}

.slide-title {
	font-size: 56px;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: #fff;
	line-height: 1.2;
}

.slide-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #fff;
}

.slide-btn {
	display: inline-block;
	padding: 10px 25px;
	background: #fff;
	color: #000;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
	border: 2px solid #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 15px 10px 50px;
}

.slide-btn:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	transform: translateY(-2px);
}

.slide-image {
	flex: 1;
	text-align: right;
	position: relative;
}

.slide-image img {
	max-width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
}

.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
}

.dot.active {
	background: #fff;
	width: 30px;
	border-radius: 6px;
}

.slider-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23f5f5f5"/></svg>') no-repeat bottom;
	background-size: cover;
	pointer-events: none;
}

/* Welcome Section */
.welcome-label {
	color: midnightblue;
	font-weight: 700;
	font-size: 60px;
}

.about-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Floating Buttons */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #007bff;
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: all 0.3s;
	z-index: 1000;
}

.scroll-to-top:hover {
	background: #0056b3;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.scroll-to-top.show {
	display: flex;
}

.whatsapp-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background: #25D366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: all 0.3s;
	z-index: 1000;
	text-decoration: none;
}

.whatsapp-float img {
	width: 35px;
	height: 35px;
}

.whatsapp-float:hover {
	background: #128C7E;
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Footer */
.l-footer {
	margin-top: 0;
}

.footer-main {
	background: #2c3e50;
	color: #ecf0f1;
	padding: 15px 0 10px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	box-sizing: border-box;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-column h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	margin: 10px 0 25px 0;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: #e91e63;
}
/* .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
} */
.footer-logo-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.footer-logo-section img {
	height: 100px;
	width: auto;
}

.footer-company-name {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

.footer-social-icons {
	display: flex;
	gap: 12px;
	margin-top: -16px;
}

.social-icon-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 20px;
}

.social-icon-link.whatsapp {
	background: #25D366;
	color: #fff;
}

.social-icon-link.whatsapp:hover {
	background: #128C7E;
	transform: translateY(-3px);
}

.social-icon-link.facebook {
	background: #1877f2;
	color: #fff;
}

.social-icon-link.facebook:hover {
	background: #145dbf;
	transform: translateY(-3px);
}

.social-icon-link.instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
}

.social-icon-link.instagram:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-icon-link.twitter {
	background: #1DA1F2;
	color: #fff;
}

.social-icon-link.twitter:hover {
	background: #0d8bd9;
	transform: translateY(-3px);
}

.social-icon-link.linkedin {
	background: #0077b5;
	color: #fff;
}

.social-icon-link.linkedin:hover {
	background: #005885;
	transform: translateY(-3px);
}

.social-icon-link img {
	width: 22px;
	height: 22px;
}

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

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 15px;
	display: inline-block;
}

.footer-links a:hover {
	color: #e91e63;
	/* padding-left: 5px; */
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 18px;
	color: #bdc3c7;
	font-size: 15px;
	line-height: 1.6;
}

.footer-contact-item .icon {
	margin-right: 12px;
	color: #f7427a;
	font-size: 18px;
	min-width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.footer-contact-item a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s;
}

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

.footer-bottom {
	background: #1a252f;
	color: #95a5a6;
	padding: 7px 0;
	text-align: center;
	font-size: 14px;
}

.footer-section {
	background: url('../uploads/Footer.jpg') center center / cover no-repeat;
	color: #fff;
	padding: 60px 20px;
	text-align: center;
	position: relative;
}

.footer-content {
	position: relative;
	z-index: 1;
}

.footer-title {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 600px) {
	.vc-row-inner {
		flex-wrap: wrap;
	}
	
	.vc-column-inner.width-half,
	.vc-column-inner.width-sixth,
	.vc-column-inner.width-two-thirds,
	.vc-column-inner.width-third {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}
	
	.section-title {
		font-size: 40px;
	}
	
	.conversational {
		font-size: 32px;
	}
	
	.section-row {
		flex-direction: column;
	}
	
	.section-row.reverse {
		flex-direction: column;
	}
	
	.quality-grid {
		grid-template-columns: 1fr;
	}
	
	.cert-grid {
		flex-direction: column;
		align-items: center;
	}
	
	.product-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-slider {
		height: 400px;
	}
	
	.slide-content {
		flex-direction: column;
		padding: 30px 20px;
		text-align: center;
	}
	
	.slide-text {
		padding-right: 0;
		margin-bottom: 20px;
	}
	
	.slide-title {
		font-size: 32px;
	}
	
	.slide-subtitle {
		font-size: 18px;
	}
	
	.slide-image img {
		max-height: 200px;
	}
	
	.footer-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.whatsapp-float {
		width: 50px;
		height: 50px;
		font-size: 26px;
		left: 20px;
		bottom: 20px;
	}
	
	.scroll-to-top {
		width: 45px;
		height: 45px;
		font-size: 20px;
		right: 20px;
		bottom: 20px;
	}
}


