/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0071BC;
}

.logo {
    height: 80px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0071BC;
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #0071BC;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #9E1B32, #9E1B32);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0071BC, #9E1B32);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(158, 27, 50, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/*  Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0071BC, #9E1B32);
    color: #ffffff;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/landing-page.png');
     
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {*/
    position: absolute;*/
    top: 0;*/
    left: 0;*/
    right: 0;*/
    bottom: 0;*/
    background: rgba(0, 113, 188, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    background: #ffffff;
    color: #0071BC;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #2071a9;
	position: relative;
    z-index: 2;
}
.section-title2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffff;
	position: relative;
    z-index: 2;
}

/* Core Offerings */
.core-offerings {
    padding: 5rem 0;
    background: #f8f9fa;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.offering-icon {
    font-size: 3rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.offering-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.offering-card p {
    color: #666;
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.product-image {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #9d0130;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 1rem 1.5rem;
    color: #333;
}

.product-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.learn-more-btn,
.view-details-btn {
    background: #9d0130;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: calc(100% - 3rem);
}

.learn-more-btn:hover,
.view-details-btn:hover {
    background: #2071a9;
    transform: translateY(-2px);
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #9E1B32;
}

.testimonial-content p {
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Knowledge Preview */
.knowledge-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #ffffffcf;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-icon {
    font-size: 2rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.article-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.article-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #9E1B32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0071BC;
}

/* Contact Summary */
.contact-summary {
    padding: 5rem 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: #9E1B32;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #0071BC;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0071BC;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255);
    border-radius: 50%;
    color: #9d0130;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0071BC, #9E1B32);
    color: #ffffff;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Product Filters */
.product-filters {
    padding: 2rem 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #9E1B32;
    border-color: #9E1B32;
    color: #ffffff;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
}
/*watersolution*/

.products-section-water1{
	padding: 3rem 0;
  background-image: url('../assets/water.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px; /* optional padding */
  position: relative;
  z-index: 1;
}

/*Irrigation*/
/*crop monitoring*/
/*Solar Equipment*/
/*Farm Tools*/

.product-info {
    padding: 1.5rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-specs span {
    font-size: 0.9rem;
    color: #666;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #9E1B32;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-icon {
    font-size: 3rem;
    color: #9d0130;;
    margin-right: 1.5rem;
}

.service-title h2 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase !important;
}

.service-title p {
    color: #666;
    font-size: 1.1rem;
}

.service-content {
    padding: 2rem;
}

.service-details,
.service-benefits {
    margin-bottom: 2rem;
}

.service-details h3,
.service-benefits h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 1rem;
}

.process-list,
.service-benefits ul {
    list-style: none;
    padding-left: 0;
}

.process-list li,
.service-benefits ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-list li:before,
.service-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9E1B32;
    font-weight: bold;
}

.case-study {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.case-study h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 1rem;
}

.case-study-content h4 {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #9E1B32;
}

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

.service-cta-btn {
    background: #9E1B32;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background: #0071BC;
    transform: translateY(-2px);
}

.financing-options {
    margin-bottom: 2rem;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.financing-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 1rem;
    border-radius: 8px;
}

.financing-card h4 {
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 0.5rem;
}

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

/* Knowledge Hub Styles */
.knowledge-categories {
    padding: 3rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.featured-articles {
    padding: 3rem 0;
}

.article-card.featured {
    border-left: 4px solid #9E1B32;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-category {
    background: #9E1B32;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-highlights {
    margin: 1.5rem 0;
}

.article-highlights h4 {
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 0.75rem;
}

.article-highlights ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.article-highlights li {
    margin-bottom: 0.5rem;
    color: #666;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.download-btn {
    background: #9E1B32;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #0071BC;
}

.reading-time {
    color: #666;
    font-size: 0.9rem;
}

/* Guides Section */
.guides-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guide-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.guide-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.guide-details {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.download-guide-btn {
    background: #9E1B32;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.download-guide-btn:hover {
    background: #0071BC;
    transform: translateY(-2px);
}

/* Events Section */
.events-section {
    padding: 3rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.event-date {
    background: #9E1B32;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 80px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-details {
    padding: 1.5rem;
    flex: 1;
}

.event-details h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.event-info {
    margin-bottom: 1rem;
}

.event-info span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.event-info i {
    margin-right: 0.5rem;
    color: #0071BC;
}

.register-btn {
    background: #9E1B32;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #0071BC;
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0071BC, #9E1B32);
    color: #ffffff;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase !important;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.subscribe-btn {
    background: #9d0130;
    color: #ffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #ffffff;
    color: black;;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.benefit-item i {
    color: #ffffff;
}

/* About Page Styles */
.our-story {
    padding: 3rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 1.5rem;
    text-transform: uppercase !important;
}

.story-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #9E1B32;
    display: block;
}

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

.mission-vision {
    padding: 3rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon,
.vision-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.values-section {
    padding: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ffffffc7;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
	z-index:1;
}

.value-icon {
    font-size: 2rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.team-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-photo {
    margin-bottom: 1rem;
    color: #9d0130;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #9E1B32;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #e9ecef;
    color: #0071BC;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.zimbabwe-commitment {
    padding: 3rem 0;
}

.commitment-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #0071BC;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase !important;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.commitment-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.partnerships-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.partners-content p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0071BC;
    margin-bottom: 1rem;
}

.partner-card ul {
    list-style: none;
}

.partner-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.partner-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0071BC;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    color: #9d0130;
    margin-top: 0.5rem;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 3rem 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2071a9;
    margin-bottom: 1rem;
    text-transform: uppercase !important;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.main-contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

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

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.map-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.map-placeholder {
    background: #e9ecef;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #666;
}

.map-content i {
    color: #2c5530;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.quick-contact {
    padding: 3rem 0;
}

.quick-contact h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #2071a9;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase !important;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-option {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quick-icon {
    font-size: 2.5rem;
    color: #9d0130;
    margin-bottom: 1rem;
}

.quick-option h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.quick-option p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-btn {
    background: #9d0130;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.schedule-form {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cancel-btn {
    background: #6c757d;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #5a6268;
}

/* Product Detail Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.breadcrumb-nav a {
    color: #2c5530;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav i {
    font-size: 0.8rem;
}

.product-detail {
    padding: 3rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.main-product-image {
    font-size: 8rem;
    color: #2c5530;
    margin-bottom: 2rem;
}

.product-info-detail h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.product-specs-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-specs-detail h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #666;
}

.product-price-detail {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-btn {
    background: #2c5530;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.primary-btn:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.secondary-btn {
    background: #ffffff;
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.secondary-btn:hover {
    background: #2c5530;
    color: #ffffff;
}

.product-enquiry {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    border-radius: 10px;
}

.product-enquiry h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 1rem;
}

.related-products {
    padding: 3rem 0;
    background: #f8f9fa;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 2rem 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f8f9fa;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .main-product-image {
        font-size: 5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
        padding: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .offerings-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-contact-options {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offering-card,
.product-card,
.feature-card,
.testimonial-card,
.article-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button,
    .hero-cta,
    .learn-more-btn,
    .view-details-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
}



/*Background*/
.values-section {
  position: relative;
  background: url('../assets/hero1.jpg') center center/cover no-repeat;
  z-index: 0;
}

.values-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Adjust overlay opacity as needed */
  z-index: 1;
  pointer-events: none;
}

.featured-articles {
  background-image: url('../assets/section1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


/*core offerings 5th section css*/


