/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background: #f8f9fa;
    overflow-x: hidden;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.top-bar {
    background: #2d3436;
    color: #dfe6e9;
    padding: 8px 0;
    font-size: 0.9em;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7CC242;
    transition: width 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #7CC242;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #2d3436;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8em;
        padding: 6px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1em;
    }

    .nav-menu li a.active {
        color: #7CC242;
        font-weight: 600;
    }

    .nav-menu li a::after {
        display: none;
    }

    /* Overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* ===== SECTIONS ===== */
.page-header {
    background: linear-gradient(135deg, #7CC242 0%, #5a9c2e 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2em;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    color: #2d3436;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);;
    max-width: 800px;
    margin: 0 auto 40px;
}

.divider {
    width: 80px;
    height: 3px;
    background: #7CC242;
    margin: 0 auto 30px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #7CC242 0%, #5a9c2e 100%);
    padding: 80px 20px;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3em;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text .highlight {
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-visual {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #7CC242;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #fff;
    margin-right: 15px;
}

.btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #7CC242;
}

.btn.secondary {
    background: #7CC242;
    color: #fff;
    border: 2px solid #7CC242;
}

.btn.secondary:hover {
    background: #5a9c2e;
    border-color: #5a9c2e;
}

/* ===== ABOUT SECTION ===== */
.about-summary {
    padding: 80px 20px;
    background: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 20px;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.prod-thumb {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .prod-thumb img {
    transform: scale(1.1);
}

.prod-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-body h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #2d3436;
}

.prod-body p {
    color: #636e72;
    margin-bottom: 15px;
    flex: 1;
}

.specs {
    font-size: 0.9em;
    color: #888;
    padding: 10px 0;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

.actions {
    display: flex;
    gap: 10px;
}

/* ===== CAPABILITIES SECTION ===== */
.capabilities {
    padding: 80px 20px;
    background: #fff;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.capability-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.capability-item:hover {
    background: #7CC242;
    color: #fff;
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.capability-item h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* ===== CERTIFICATIONS ===== */
.certifications, .certifications-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.cert-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.cert-badge {
    background: #7CC242;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(124, 194, 66, 0.3);
    transition: all 0.3s;
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(124, 194, 66, 0.4);
}

.cert-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #636e72;
    font-size: 1.1em;
}

/* ===== NEWS SECTION ===== */
.news {
    padding: 80px 20px;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    background: #ddd;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #7CC242;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #2d3436;
}

.news-content p {
    color: #636e72;
    margin-bottom: 15px;
}

.product-link {
    color: #7CC242;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.product-link:hover {
    color: #5a9c2e;
}

/* ===== CTA SECTIONS ===== */
.cta, .cta-section {
    background: linear-gradient(135deg, #7CC242 0%, #5a9c2e 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta h2, .cta-section h2 {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta p, .cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-strip {
    background: #e8f5e9;
    padding: 40px 20px;
    text-align: center;
}

/* ===== COMPANY OVERVIEW ===== */
.company-overview {
    padding: 80px 20px;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.overview-card:hover {
    background: #7CC242;
    color: #fff;
    transform: translateY(-5px);
}

.overview-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #7CC242;
}

.overview-card:hover h3 {
    color: #fff;
}

/* ===== VISION MISSION VALUES ===== */
.vision-mission {
    padding: 80px 20px;
    background: #f8f9fa;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vmv-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.vmv-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.vmv-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #7CC242;
}

.vmv-card p {
    color: #636e72;
    line-height: 1.8;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 80px 20px;
    background: #fff;
}

.timeline {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #7CC242;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: 21px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #7CC242;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #7CC242;
}

.timeline-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s;
}

.timeline-content:hover {
    background: #e8f5e9;
    transform: translateX(10px);
}

.timeline-year {
    display: inline-block;
    background: #7CC242;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.timeline-content h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2d3436;
}

.timeline-content p {
    color: #636e72;
}

/* ===== FACILITIES ===== */
.facilities-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.facility-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-info {
    padding: 25px;
}

.facility-info h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #2d3436;
}

.facility-info p {
    color: #636e72;
}

/* ===== LEADERSHIP ===== */
.leadership-section {
    padding: 80px 20px;
    background: #fff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.leader-card:hover {
    background: #e8f5e9;
    transform: translateY(-5px);
}

.bod-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #7CC242;
}

.bod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: #2d3436;
}

.leader-position {
    color: #7CC242;
    font-weight: 500;
    margin-bottom: 15px;
}

.leader-info ul {
    text-align: left;
    color: #636e72;
    line-height: 1.8;
}

.leader-info li {
    margin-bottom: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-info p {
    margin-bottom: 10px;
    color: #636e72;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.col {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #2d3436;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #7CC242;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.success {
    display: none;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.map-placeholder {
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.filter-bar select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95em;
}

/* ===== FOOTER ===== */
footer {
    background: #2d3436;
    color: #dfe6e9;
    padding: 60px 20px 20px;
    margin-top: auto;
}

footer h3, footer h4 {
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 8px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2em;
    }

    .hero-visual {
        height: 300px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.6em;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar > div:last-child {
        margin-left: 0;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 6px;
    }

    .cta h2, .cta-section h2 {
        font-size: 1.8em;
    }

    .cta p, .cta-section p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-header {
        padding: 40px 15px;
    }

    .page-header h1 {
        font-size: 1.6em;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero-text h1 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .card {
        padding: 25px;
    }

    .cert-badge {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(90deg, rgba(111,191,69,0.05) 0%, rgba(255,255,255,1) 50%, rgba(111,191,69,0.05) 100%);
  overflow-x: hidden;
}

/* ===== PAGE SIDE GRADIENT ===== */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 70px;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #6DBE45, #4CAF50);
  opacity: 0.18;
}

body::before { left: 0; }
body::after { right: 0; }

header, main, footer, section {
  position: relative;
  z-index: 1;
}
