* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
}

.section {
	padding: 80px 0;
}

.section-title {
	font-size: 2.2rem;
	margin-bottom: 40px;
	text-align: center;
	color: #333;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #823383;
}

.section-subtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: #823383;
	border-left: 4px solid #823383;
	padding-left: 15px;
}

.product-section-subtitle {
	font-size: 1.5rem;
	margin-bottom: 30px;
	color: #823383;
	border-left: 4px solid #823383;
	padding-left: 15px;
}

.bg-light {
	background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

p {
    margin-bottom: 15px;
    color: #878787;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.top-bar {
	background-color: #222;
	color: #fff;
	padding: 10px 0;
	font-size: 0.9rem;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info {
	display: flex;
	gap: 20px;
}

.contact-info span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact-info i {
	color: #e7c6ff;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: #fff;
	transition: color 0.3s;
}

.social-links a:hover {
	color: #e7c6ff;
}

/* Navbar Styles */
.navbar {
	padding: 15px 0;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #823883;
	text-decoration: none;
}

.logo img {
  height: 50px;
  transition: all 0.3s;
}

.footer-logo{
	display: block;
	margin-bottom: 10px;
}

.footer-logo img {
  height: 100px;
  text-align: center;
}

.nav-links {
	display: flex;
	gap: 25px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #823883;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Slider */
.hero-slider {
	width: 100%;
	position: relative;
	height: 80vh;
	min-height: 500px;
	overflow: hidden;
}

.slides-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

/* Using background images with fallback colors */
.slide:nth-child(1) {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #1a5f7a;
	background-size: cover;
	background-position: center;
}

.slide:nth-child(2) {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #2d6a4f;
	background-size: cover;
	background-position: center;
}

.slide:nth-child(3) {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #b9770e;
	background-size: cover;
	background-position: center;
}

/* Using images as backgrounds */
.slide[data-bg="1"] {
    background: linear-gradient(rgb(71,21,86,0.9), rgb(71,21,86,0.7)), url('images/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide[data-bg="2"] {
    background: linear-gradient(rgba(71,21,86,0.9), rgba(71,21,86,0.7)), url('images/slide2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide[data-bg="3"] {
    background: linear-gradient(rgba(71,21,86,0.9), rgba(71,21,86,0.7)), url('images/slide3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
	position: relative;
	z-index: 2;
	padding: 20px;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-content h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
	font-size: clamp(1rem, 2vw, 1.5rem);
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
	display: inline-block;
	padding: 12px 30px;
	background: #823883;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: all 0.3s;
}

.cta-button:hover {
	background: #e7c6ff;
	color: #823883;
	transform: translateY(0px);
}

.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
}

.dot.active {
	background: #823883;
}

/* Product Card */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.product-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s;
}

.product-card:hover {
	transform: translateY(0px);
}

.product-image {
	height: 200px;
	background: #f5f5f5;
	position: relative;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-info {
	padding: 20px;
}

.product-category {
	color: #4CAF50;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.product-info h3 {
	margin-bottom: 10px;
}

.product-info p {
	color: #666;
	margin-bottom: 15px;
}

.product-price {
	font-weight: bold;
	color: #4CAF50;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.feature-card {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.feature-card i {
	font-size: 2.5rem;
	color: #4CAF50;
	margin-bottom: 20px;
}

/* Video Section */
.video-container {
	display: flex;
	align-items: center;
	gap: 40px;
}

.video-wrapper {
	flex: 1;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.video-content {
	flex: 1;
}

/* FAQ */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
	padding: 20px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question i {
	transition: transform 0.3s;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: #fff;
}

.faq-item.active .faq-answer {
	padding: 20px;
	max-height: 500px;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

/* Footer */
footer {
	background-color: #222;
	color: #fff;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.footer-column h3 {
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #823883;
}

.footer-column p {
	color: #ddd;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	color: white;
	transition: all 0.3s;
}

.footer-social a:hover {
	background: #823883;
	transform: translateY(-3px);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-column ul li a {
	color: #ddd;
	text-decoration: none;
}

.footer-column ul li i {
	color: #823883;
	width: 20px;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-section {
	background-image: linear-gradient(rgba(71,21,86,0.9), rgba(71,21,86,0.7)), url('images/slide1.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0;
}

.hero-section .container p{
	color: #fff;
}

.about-container{
	display: flex;
	gap: 2rem;
}

.about-image{
	flex: 1 1 45rem;
}

.about-content{
	flex: 1 1 45rem;
}

/* Future Plan Cards */
.future-plan-card {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}

.plan-icon i {
	font-size: 2rem;
	color: #823883;
}

/* Timeline */
.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	width: 2px;
	background: #4CAF50;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.timeline-item {
	padding: 20px 40px;
	position: relative;
	width: 50%;
}

.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-date {
	padding: 5px 15px;
	background: #4CAF50;
	color: white;
	border-radius: 20px;
	position: absolute;
	top: 20px;
}

.timeline-item:nth-child(odd) .timeline-date { right: -80px; }
.timeline-item:nth-child(even) .timeline-date { left: -80px; }

.timeline-content {
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Product Categories */
        .product-category {
            margin-bottom: 80px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .category-icon {
            width: 50px;
            height: 50px;
            background: #823883;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

  
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #4CAF50;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .product-info {
            padding: 25px;
        }

        .product-category-tag {
            color: #4CAF50;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }

        .product-description {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .product-specs {
            margin: 15px 0;
            padding-left: 20px;
        }

        .product-specs li {
            color: #555;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .product-specs i {
            color: #4CAF50;
            margin-right: 8px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #4CAF50;
        }

        .product-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .product-link:hover {
            color: #4CAF50;
        }

        /* Custom Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .solution-card {
            text-align: center;
            padding: 40px 30px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .solution-card:hover {
            transform: translateY(-5px);
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            background: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .solution-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .solution-card p {
            color: #666;
            font-size: 0.95rem;
        }
		
/* Sourcing Categories */
        .sourcing-categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .sourcing-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: 1px solid #f0f0f0;
        }

        .sourcing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
        }

        .sourcing-image {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .sourcing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .sourcing-card:hover .sourcing-image img {
            transform: scale(1.05);
        }

        .sourcing-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #4CAF50;
            color: white;
            padding: 5px 15px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        .sourcing-content {
            padding: 25px;
        }

        .sourcing-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #333;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 10px;
            display: inline-block;
        }

        .sourcing-description {
            color: #555;
            margin: 15px 0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .sourcing-specs {
            margin: 20px 0;
            list-style: none;
        }

        .sourcing-specs li {
            margin-bottom: 8px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sourcing-specs i {
            color: #4CAF50;
            width: 20px;
        }

        .sourcing-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .sourcing-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4CAF50;
        }

        .sourcing-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .sourcing-link:hover {
            color: #4CAF50;
        }
		
   /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .feature-item i {
            font-size: 2.5rem;
            color: #823883;
            margin-bottom: 15px;
        }

        .feature-item h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }

        .feature-item p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Quality Promise */
        .quality-promise {
            background: #823883;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .quality-promise h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .quality-promise p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .promise-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .promise-btn {
            display: inline-block;
            padding: 12px 30px;
            background: white;
            color: #823883;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .promise-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }


/* Responsive Design */
@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.video-container {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.top-bar-content {
		flex-direction: column;
		gap: 10px;
	}

	.contact-info {
		flex-direction: column;
		align-items: center;
	}

	.slide {
		height: 60vh;
	}

	.timeline::before {
		left: 40px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 70px;
		padding-right: 0;
	}

	.timeline-item:nth-child(even) {
		left: 0;
	}

	.timeline-item:nth-child(odd) .timeline-date,
	.timeline-item:nth-child(even) .timeline-date {
		left: 10px;
		right: auto;
	}
	
	.about-image{
		display: grid;
		grid-template-columns: 1fr;
	}
	.about-content{
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.footer-content {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 1.8rem;
	}
}