* {
	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;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #833882;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: purple;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 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;
}

.top-contact-info {
	display: flex;
	gap: 20px;
}

.top-contact-info span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top-contact-info i {
	color: #e7c6ff;
}

.top-social-links {
	display: flex;
	gap: 15px;
}

.top-social-links a {
	color: #fff;
	transition: color 0.3s;
}

.top-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: normal;
	color: #823883;
}

/* 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 Page Specific Styles */
.future-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/future-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    text-align: center;
}

.future-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.future-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.future-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.future-intro .lead {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Timeline Overview */
.timeline-overview {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #555;
    font-size: 0.9rem;
}

/* Future Cards */
.future-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.future-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.future-card:hover {
    transform: translateX(10px);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.card-year {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.card-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-details {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.card-details h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.card-details ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.card-details li {
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-details li i {
    color: #4CAF50;
}

.card-progress {
    margin-top: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
    transition: width 1s ease;
}

/* Detailed Timeline */
.detailed-timeline {
    margin-top: 50px;
}

.timeline-block {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.timeline-block-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-align: right;
    padding-top: 20px;
}

.timeline-block-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-milestone {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-milestone h4 {
    color: #4CAF50;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-milestone p {
    color: #555;
}

/* Investment Stats */
.investment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-card-large {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Growth Chart */
.growth-chart {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 50px;
}

.growth-chart h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 20px;
    height: 250px;
}

.chart-bar-item {
    flex: 1;
    text-align: center;
}

.bar-label {
    margin-top: 10px;
    color: #666;
}

.bar-container {
    height: 200px;
    display: flex;
    align-items: flex-end;
    background: #f5f5f5;
    border-radius: 4px 4px 0 0;
}

.bar-fill {
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

/* Partnership Grid */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partnership-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.partnership-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.partnership-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.partnership-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partnership-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.partnership-link:hover {
    gap: 10px;
}

/* Future CTA */
.future-cta {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.future-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.future-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-overview {
        flex-wrap: wrap;
    }
    
    .timeline-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .future-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto;
    }
    
    .card-details ul {
        grid-template-columns: 1fr;
    }
    
    .timeline-block {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .timeline-block-year {
        text-align: left;
        padding-top: 0;
    }
    
    .investment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .future-hero h1 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex: 0 0 100%;
    }
    
    .investment-stats {
        grid-template-columns: 1fr;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-bars {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .bar-container {
        height: 40px;
        width: 100%;
    }
    
    .bar-fill {
        height: 40px !important;
        width: auto;
    }
}

/* 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 */
.fp-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0;
}

.fp-timeline::before {
	content: '';
	position: absolute;
	width: 2px;
	background: #4CAF50;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.fp-timeline-item {
	padding: 20px 40px;
	position: relative;
	width: 50%;
}

.fp-timeline-item:nth-child(odd) { left: 0; }
.fp-timeline-item:nth-child(even) { left: 0%; }

.fp-timeline-date {
	padding: 5px 15px;
	background: #4CAF50;
	color: white;
	border-radius: 20px;
	position: absolute;
	top: 20px;
}

.fp-timeline-item:nth-child(odd) .timeline-date { right: -80px; }
.fp-timeline-item:nth-child(even) .timeline-date { left: -80px; }

.fp-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: 1rem;
            font-weight: normal;
            color: #823883;
        }

        .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 Page Specific Styles */
.sourcing-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text .lead {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
}

/* Sourcing Grid */
.sourcing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sourcing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.sourcing-card:hover {
    transform: translateY(0px);
    box-shadow: 0 8px 30px 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;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sourcing-content {
    padding: 25px;
}

.sourcing-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.sourcing-description {
    color: #555;
    margin: 10px 0 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sourcing-specs {
    list-style: none;
    margin: 15px 0;
}

.sourcing-specs li {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.sourcing-specs i {
    color: #4CAF50;
    width: 18px;
}

.sourcing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.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;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .sourcing-intro {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sourcing-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .intro-stats {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('assets/images/hero-blog.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #4CAF50;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #4CAF50;
}

.blog-excerpt {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.page-link.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.page-link.prev,
.page-link.next {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4CAF50;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.search-form button {
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #45a049;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
}

.categories-widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.categories-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-widget a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.categories-widget a:hover {
    color: #4CAF50;
}

.categories-widget span {
    color: #999;
    font-size: 0.9rem;
}

/* Popular Posts Widget */
.popular-post {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-post a {
    text-decoration: none;
}

.popular-post h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.popular-post a:hover h4 {
    color: #4CAF50;
}

.popular-post .post-date,
.popular-post .post-views {
    font-size: 0.8rem;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}

.popular-post i {
    color: #4CAF50;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud a {
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.tags-cloud a:hover {
    background: #4CAF50;
    color: white;
}

/* Newsletter Widget */
.newsletter-widget p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.subscribe-btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: #45a049;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('assets/images/slide1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-large-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-large-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-large-form .btn {
    padding: 15px 30px;
    background: white;
    color: #4CAF50;
    border: none;
}

.newsletter-large-form .btn:hover {
    background: #f5f5f5;
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.no-posts i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-posts h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.no-posts p {
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-large-form .form-group {
        flex-direction: column;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-link {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .blog-card-image {
        height: 180px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}
		
/* 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;
            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;
	}
}

/* Contact Form Styles */
.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(0px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #823883;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h3 {
    margin-bottom: 5px;
    color: #333;
}

.info-content p {
    color: #666;
    margin: 3px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: #823882;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #E087FA;
    transform: translateY(0px);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Container */
.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .info-card {
        padding: 15px;
    }
}

/* About Page Styles */
.page-hero {
    padding: 120px 0;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Story */
.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 10px;
}

.story-content {
    flex: 1;
}

.section-title-left {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.story-content .lead {
    font-size: 1.2rem;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.story-stats .stat {
    text-align: center;
}

.story-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
}

.story-stats .label {
    font-size: 0.9rem;
    color: #666;
}

/* Mission & Vision */
.mission-vision-container {
    display: flex;
    gap: 30px;
}

.mission-box, .vision-box {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mission-box h2, .vision-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.mission-box p, .vision-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-list li i {
    color: #4CAF50;
}

/* Leadership */
.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.leader-card:nth-child(even) {
    flex-direction: row-reverse;
}

.leader-image {
    flex: 1;
    max-width: 300px;
}

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

.leader-content {
    flex: 2;
    padding: 40px;
}

.leader-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #333;
}

.leader-title {
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #4CAF50;
}

.leader-message {
    position: relative;
    padding: 20px 0;
}

.leader-message i {
    font-size: 2rem;
    color: #4CAF50;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.leader-message p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    padding-left: 40px;
}

.leader-signature {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.leader-signature img {
    height: 50px;
    margin-bottom: 5px;
}

.leader-signature span {
    color: #666;
    font-size: 0.9rem;
}

/* Strength Grid */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.strength-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.strength-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.strength-icon i {
    font-size: 1.5rem;
    color: white;
}

.strength-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.strength-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.strength-details {
    list-style: none;
}

.strength-details li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength-details li::before {
    content: "•";
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.cert-card:hover {
    transform: translateY(0px);
}

.cert-card img {
    height: 120px;
	margin: 10px auto;
}

.cert-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.cert-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #4CAF50;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-date {
    position: absolute;
    top: 0;
    font-weight: bold;
    color: #4CAF50;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-date {
    left: calc(50% + 50px);
}

.timeline-content {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #555;
    margin: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto;
    border: 3px solid #4CAF50;
    padding: 5px;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.team-card p {
    color: #666;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

.team-social a:hover {
    background: #4CAF50;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-story {
        flex-direction: column;
    }
    
    .mission-vision-container {
        flex-direction: column;
    }
    
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-card {
        flex-direction: column !important;
    }
    
    .leader-image {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-dot {
        left: 40px;
    }
    
    .timeline-date {
        left: 80px !important;
        top: -25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}