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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.4;
    letter-spacing: -.2px;
    color: #212121;
    background-color: #F8F9FA;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: .5rem;
    font-size: 1.1rem;
    letter-spacing: -.2px;
}

.bengali-text {
    font-size: 0.9rem;
    color: #00695C;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: #2E7D32;
    border: 2px solid #2E7D32;
}

.btn-outline:hover {
    background: #2E7D32;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(248, 249, 250, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2E7D32;
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #37474F;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2E7D32;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2E7D32; /* Overlay color */
    opacity: 0.5; /* Adjust the opacity to control the transparency of the overlay */
    z-index: 1; /* Ensures the overlay is above the background image */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 5rem 2rem; /* Added padding for better spacing */
}

.hero-title {
    font-size: 6rem; /* Further increased font size */
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem; /* Further increased font size */
    margin-bottom: 2rem;
    max-width: 800px; /* Increased max-width for better readability */
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

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

/* About Preview */
.about-preview {
    background: white;
    padding: 2rem; /* Add some padding for better spacing */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ensures both columns take equal space */
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left; /* Aligns text to the left */
}

.about-text h3 {
    color: #2E7D32;
    margin-bottom: .9rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6F00;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #37474F;
    font-weight: 500;
}

.circular-diagram {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Additional styles for better alignment */
.about-text, .circular-diagram {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
}

.about-text p {
    margin-top: 1rem; /* Adds space between the heading and paragraph */
}

/* Services Grid */
.services {
    background: #F8F9FA;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.service-card h3 {
    color: #2E7D32;
    font-size: 1.3em;
    margin-bottom: .5rem;
}

/* Industries Carousel */
.industries {
    background: white;
}

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

.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.05);
}

.industry-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.industry-content h3 {
    margin-bottom: 0.5rem;
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-points {
    margin-top: 2rem;
}

.commitment-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.point-icon {
    font-size: 1.5rem;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card .stat-number {
    color: #FF6F00;
}

/* Contact CTA */
.contact-cta {
    background: #37474F;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: rgba(248, 249, 250, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    color: #2E7D32;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: #FF6F00;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #00695C;
}

.footer-bottom {
    border-top: 1px solid #37474F;
    padding-top: 1rem;
    text-align: center;
    color: #212121;
}

.footer-bottom a {
    color: #2E7D32;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(248, 249, 250, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card,
    .stat-card {
        padding: 1.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.our-story {
    padding: 5rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: -.2px;
    line-height: 1.8;
}

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

/* Mission & Vision */
.mission-vision {
    background: #F8F9FA;
    padding: 5rem 0;
}

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

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    color: #2E7D32;
        margin-bottom: .5rem;
    font-size: 1.3em;
}

/* Core Values */
.core-values {
    background: white;
    padding: 5rem 0;
}

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

.value-card {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: #2E7D32;
        margin-bottom: .5rem;
    font-size: 1.3em;
}

/* Team Section */
.team-section {
    background: #F8F9FA;
    padding: 5rem 0;
}

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

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.member-image {
    margin-bottom: 1.1rem;
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.placeholder-avatar img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.team-member h3 {
    color: #2E7D32;
        margin-bottom: .5rem;
    font-size: 1.3em;
}

.member-title {
    color: #FF6F00;
    font-weight: 600;
    margin-bottom: .2rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #37474F;
}

/* Global Presence */
.global-presence {
    background: white;
    padding: 5rem 0;
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.presence-text h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.presence-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.presence-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6F00;
    font-family: 'Inter', sans-serif;
}

.presence-stat .stat-label {
    font-size: 0.9rem;
    color: #37474F;
    font-weight: 500;
}

/* Product Page Styles */
.products-hero {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.product-categories {
    background: white;
    padding: 5rem 0;
}

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

.category-card {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-card h3 {
    color: #2E7D32;
    font-size: 1.3em;
    margin-bottom: .5rem;
}

.category-features {
    list-style: none;
    margin-top: 1.5rem;
}

.category-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #37474F;
}

.category-features li:last-child {
    border-bottom: none;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 5rem 0;
}

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

.contact-info h3 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.form-container {
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #37474F;
    font-weight: 500;
}

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

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

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #d32f2f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .mv-grid,
    .presence-content,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .presence-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .form-container {
        padding: 2rem;
    }
    
    .presence-stats {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Additional Styles for Products Page */
.quality-assurance {
    background: #F8F9FA;
    padding: 5rem 0;
}

.qa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.qa-text h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.certifications {
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-icon {
    width: 24px;
    height: 24px;
    background: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.process-overview {
    background: white;
    padding: 5rem 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #2E7D32;
    margin-bottom: .5rem;
    font-size: 1.3em;
}

/* Industries Page Styles */
.industries-section {
    background: white;
    padding: 5rem 0;
}

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

.industry-detail-card {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.industry-detail-card h3 {
    color: #2E7D32;
        margin-bottom: .5rem;
    font-size: 1.3em;
}

.industry-features {
    list-style: none;
    margin-top: 1.5rem;
}

.industry-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #37474F;
    position: relative;
    padding-left: 1.5rem;
}

.industry-features li:before {
    content: '•';
    color: #2E7D32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.industry-features li:last-child {
    border-bottom: none;
}

.success-stories {
    background: #F8F9FA;
    padding: 5rem 0;
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-stats {
    margin-bottom: 1.5rem;
}

.story-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.industry-benefits {
    background: white;
    padding: 5rem 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.benefit-item h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

/* References Page Styles */
.testimonials {
    background: white;
    padding: 5rem 0;
}

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

.testimonial-card {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #2E7D32;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.testimonial-author h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #FF6F00;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.case-studies {
    background: #F8F9FA;
    padding: 5rem 0;
}

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

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.case-study-header {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
    padding: 2rem;
}

.case-study-header h3 {
    color: white;
    margin-bottom: 1rem;
}

.case-study-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.case-study-content {
    padding: 2rem;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 1.5rem;
}

.case-study-content h4 {
    color: #2E7D32;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.results-stats {
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    margin-top: 1rem;
}

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

.result-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6F00;
    font-family: 'Inter', sans-serif;
}

.result-stat .stat-label {
    font-size: 0.8rem;
    color: #37474F;
    font-weight: 500;
}

.certifications-awards {
    background: white;
    padding: 5rem 0;
}

.cert-awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.cert-section h3,
.awards-section h3 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.cert-list,
.awards-list {
    space-y: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.cert-item .cert-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E7D32, #00695C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cert-info h4 {
    color: #2E7D32;
    margin-bottom: 0.25rem;
}

.cert-info p {
    color: #37474F;
    font-size: 0.9rem;
}

.award-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 10px;
}

.award-year {
    background: linear-gradient(135deg, #2E7D32, #00695C);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.award-info h4 {
    color: #2E7D32;
    margin-bottom: 0.25rem;
}

.award-info p {
    color: #37474F;
    font-size: 0.9rem;
}

.partnership-network {
    background: #F8F9FA;
    padding: 5rem 0;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-text h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.partnership-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.partnership-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6F00;
    font-family: 'Inter', sans-serif;
}

.partnership-stat .stat-label {
    font-size: 0.9rem;
    color: #37474F;
    font-weight: 500;
}

/* Contact Page Styles */
.regional-offices {
    background: #F8F9FA;
    padding: 5rem 0;
}

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

.office-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.office-card h3 {
    color: #2E7D32;
    margin-bottom: .5rem;
font-size: 1.3em;
}

.office-details p {
    margin-bottom: 0.5rem;
    color: #37474F;
}

.office-details p:first-child {
    font-weight: 600;
    color: #2E7D32;
}

.rfq-section {
    background: white;
    padding: 5rem 0;
}

.rfq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rfq-text h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.rfq-requirements {
    margin-top: 2rem;
}

.rfq-requirements h4 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.rfq-requirements ul {
    list-style: none;
    padding-left: 0;
}

.rfq-requirements li {
    padding: 0.5rem 0;
    color: #37474F;
    position: relative;
    padding-left: 1.5rem;
}

.rfq-requirements li:before {
    content: '•';
    color: #2E7D32;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.partnership-opportunities {
    background: #F8F9FA;
    padding: 5rem 0;
}

.partnership-opportunities h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
    text-align: center;
}

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

.partnership-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partnership-type h3 {
    color: #2E7D32;
    margin-bottom: .5rem;
font-size: 1.3em;
}

.partnership-cta {
    text-align: center;
    margin-top: 3rem;
}

.partnership-cta p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .qa-content,
    .benefits-content,
    .partnership-content,
    .rfq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cert-awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partnership-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .case-study-header,
    .case-study-content {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .office-card {
        padding: 2rem;
    }
    
    .partnership-type {
        padding: 1.5rem;
    }
}



.contact-form-element {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-element .form-group {
  margin-bottom: 15px;
}

.contact-form-element label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact-form-element input,
.contact-form-element select,
.contact-form-element textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form-element button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form-element button:hover {
  background: #0056b3;
}

sup{
    font-size: 10px;
}