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

:root {
    --primary-blue: #79c77f;
    --dark-blue: #43c44d;
    --light-blue: #6bb371;
    --accent-blue: #0da123;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

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


.dark-section {
    background-color: var(--light-blue);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-blue);
    line-height: 1;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1;
}

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

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 136, 229, 0.8), rgba(21, 101, 192, 0.9)), url('images/drone-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.hero-overlay {
    width: 100%;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    min-width: 150px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
}


        /* GLOBAL RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Arial, sans-serif;
        }

        /* ================= HEADER ================= */
        .top-header {
            width: 100%;
            background-color: #5bc253;
            padding: 12px 40px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-bar {
            display: flex;
            justify-content: center;
        }

        .nav-bar ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .nav-bar ul li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            padding: 6px 4px;
            transition: 0.3s;
        }

        .nav-bar ul li a:hover,
        .nav-bar ul li a.active {
            border-bottom: 2px solid #ffffff;
        }


        /* ================= Products Section ================= */
        .section {
            padding: 90px 40px;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }
        /* ================= Products Section ================= */
        .logo_container {
            max-width: 1200px;
            margin: auto;
            text-align: left;
        }

        .section-title {
            font-size: 36px;
            color: #5bc253;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 16px;
            color: #cbd5e1;
        }

        .product-subtitle {
            margin: 10px 0 40px;
            font-size: 15px;
            color: #94a3b8;
        }

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

        .product-card {
            background-color: #020617;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
        }

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

        .product-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-content {
            padding: 20px;
        }

        .product-content h4 {
            color: #5bc253;
            margin-bottom: 10px;
        }

        /* ================= CTA ================= */
        .text-center {
            margin-top: 60px;
        }

        .cta-button {
            display: inline-block;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 30px;
            background-color: #5bc253;
            color: #fff;
            font-size: 15px;
            transition: 0.3s;
        }

        .cta-button:hover {
            opacity: 0.85;
        }

        /* ================= HEADER ================= */
        .top-header {
            width: 100%;
            background-color: #5bc253;
            padding: 12px 40px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-bar {
            display: flex;
            justify-content: center;
        }

        .nav-bar ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .nav-bar ul li a {
            text-decoration: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            padding: 6px 4px;
            transition: 0.3s;
        }

        .nav-bar ul li a:hover,
        .nav-bar ul li a.active {
            border-bottom: 2px solid #ffffff;
        }

        @media (max-width: 768px) {
            .nav-bar ul {
                flex-wrap: wrap;
                gap: 18px;
            }
        }

        /* ================= ABOUT SECTION ================= */
        .about-section {
            padding: 80px 40px;
            background: #f7fbff;
        }

        .about-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            color: #242b23;
            margin-bottom: 20px;
        }

        .about-text p {
            line-height: 1.8;
            color: #333;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .stat-box {
            background: #fff;
            border-left: 4px solid #5bc253;
            padding: 15px 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .stat-box h3 {
            color: #5bc253;
        }

        .about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* ================= EWALL SERVICES ================= */
        .ewall-section {
            padding: 70px 40px;
            background: #eef3f9;
            font-family: 'Segoe UI', sans-serif;
        }

        .ewall-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .ewall-left {
            background: #0f172a;
            color: #fff;
            padding: 40px;
            border-radius: 14px;
        }

        .section-tag {
            color: #6ee7b7;
            font-size: 14px;
            text-transform: uppercase;
        }

        .offer-list {
            list-style: none;
            margin-top: 20px;
        }

        .offer-list li {
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
        }

        .production-box {
            margin-top: 25px;
            background: #020617;
            padding: 15px;
            border-left: 4px solid #6ee7b7;
        }

        .ewall-right {
            background: #fff;
            padding: 40px;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .facility {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #e5e7eb;
        }

      


/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.achievements {
    background-color: var(--light-blue);
    padding: 25px;
    border-radius: 10px;
    margin-top: 2rem;
}

.achievements h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.achievements ul {
    list-style-type: none;
}

.achievements li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
    position: relative;
    padding-left: 25px;
}

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

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-subtitle {
    color: var(--primary-blue);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.specs {
    list-style-type: none;
}

.specs li {
    padding: 5px 0;
    border-bottom: 1px solid var(--gray);
    font-size: 0.9rem;
}

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

.specs strong {
    color: var(--text-dark);
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.facility-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.facility-card h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.facility-expansion {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.facility-expansion h3 {
    color: var(--accent-blue);
    margin-bottom: 30px;
}

.chart-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.chart-note {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-blue);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: calc(50% - 70px);
    margin: 0 20px;
}

.timeline-content h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--accent-blue);
    margin-bottom: 5px;
}

.contact-info .tagline {
    color: var(--primary-blue);
    font-style: italic;
    margin-bottom: 30px;
}

.address-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.address-block h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.address-block i {
    margin-right: 10px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-blue);
    width: 20px;
}

.person-contact {
    background-color: var(--light-blue);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.person-contact h4 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--accent-blue);
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

/* Footer */
.footer {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 10px;
}


/* ================= PRODUCT POPUP ================= */
.image-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.popup-content {
    max-width: 1280px;
    width: 100%;
}

.popup-content img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.close-popup {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: #ffffff;
    cursor: pointer;
}
.close-popup:hover {
    color: #6ee7b7;
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* LEFT */
.ewall-left {
  background: linear-gradient(135deg, #111827, #1f2933);
  color: #fff;
  padding: 40px;
  border-radius: 14px;
}

.ewall-left h2 {
  margin: 15px 0 25px;
}

.section-tag {
  color: #6ee7b7;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.offer-list {
  list-style: none;
  padding: 0;
}

.offer-list li {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: start;
}

.offer-list i {
  color: #6ee7b7;
  margin-top: 3px;
}

.production-box {
  margin-top: 30px;
  padding: 18px;
  background: #020617;
  border-left: 4px solid #6ee7b7;
  border-radius: 8px;
}

.production-box span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
}

.production-box strong {
  font-size: 22px;
  color: #6ee7b7;
}

/* RIGHT */
.ewall-right {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.facility {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: 0.3s;
}

.facility:last-child {
  border-bottom: none;
}

.facility i {
  font-size: 22px;
  color: #10b981;
}

.facility:hover {
  transform: translateX(6px);
}


/* ================= EWALL FOOTER ================= */
.ewall-footer {
    background: #eef3f9;
    padding: 70px 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Card style */
.footer-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    color: #020617;
}

.footer-brand h3 {
    color: #0f172a;
}

.footer-tagline {
    color: #6ee7b7;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    color: #334155;
}

/* Titles */
.footer-title {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #334155;
}

.footer-links a:hover {
    color: #6ee7b7;
    padding-left: 6px;
}

/* Contact */
.footer-card i {
    color: #6ee7b7;
    margin-right: 8px;
}

/* Bottom bar */
.footer-bottom {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    font-size: 13px;
    padding: 18px 10px;
}



/* ================= LOGO BAR ================= */
.logo-bar {
    justify-content: center;
}

.logo-bar .logo img {
    height: 100px;
    margin-top: 4px;
}



/* ===== CONTACT FORM POPUP ===== */
.form-popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0f172a;
    color: #6ee7b7;
    padding: 16px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    font-size: 14px;
    z-index: 9999;
}
.popup-content h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
    letter-spacing: 0.5px;
}
.product-card {
    cursor: pointer;
}
.popup-content img {
    user-select: none;
    pointer-events: none;
}
/* ================= PRODUCT AUTO CAROUSEL ================= */

.product-carousel-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.product-carousel-track {
    display: flex;
    flex-wrap: nowrap;               /* NEVER wrap */
    gap: 26px;
    width: max-content;
    animation: scrollProducts 30s linear infinite;
    will-change: transform;
}

.carousel-item {
    min-width: 260px;                /* for desktop */
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    flex: 0 0 auto;                  /* NEVER shrink */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.carousel-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;             /* PREVENT FLATTENING */
    object-fit: cover;
    display: block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.carousel-item span {
    display: block;
    padding: 14px;
    font-size: 14px;
    color: #0f172a;
    font-weight: 500;
}

/* Pause on hover (desktop) */
.product-carousel-section:hover .product-carousel-track {
    animation-play-state: paused;
}


/* =====================================================
   CLEAN AEROSPACE / ENGINEERING THEME – EWALL
   ===================================================== */

/* ---------- GLOBAL ---------- */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f6f8fb;
    overflow-x: hidden;
}


.section {
    padding: 30px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #0f172a;
}

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

/* ---------- HERO ---------- */
.hero-section {
    background: linear-gradient(180deg, #ffffff, #f6f8fb);
    padding: 100px 0 70px;
}

.hero-text {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.85;
    color: #374151;
    text-align: center;
}

.hero-tags {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-tags span {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    color: #02b025;
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 20px;
}

/* ---------- ABOUT / EWALL ---------- */
.about-ewall p {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* ---------- PRODUCT CAROUSEL ---------- */
.product-carousel-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
}

.product-carousel-track {
    display: flex;
    gap: 26px;
    width: max-content;
    animation: scrollProducts 32s linear infinite;
}

.carousel-item {
    min-width: 250px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.carousel-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.carousel-item span {
    display: block;
    padding: 14px;
    text-align: center;
    font-size: 14px;
    color: #0f172a;
    font-weight: 500;
}


/* ---------- CAPABILITIES ---------- */
.capabilities {
    background: #f6f8fb;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.capability-card {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    padding: 30px;
    border-radius: 12px;
}

.capability-card h4 {
    color: #02b025;
    margin-bottom: 12px;
    font-weight: 600;
}

.capability-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

/* ---------- PHILOSOPHY ---------- */
.philosophy-list {
    max-width: 600px;
    margin: 30px auto 0;
    list-style: none;
}

.philosophy-list li {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 15px;
}

/* ---------- FACILITIES ---------- */
.facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.facilities-list span {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* ---------- EXPERIENCE ---------- */
.experience {
    background: #ffffff;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 34px;
    color: #02b025;
}

.stat p {
    font-size: 14px;
    color: #374151;
}

/* ---------- CTA ---------- */
.cta-home {
    background: linear-gradient(180deg, #f6f8fb, #ffffff);
    text-align: center;
}

.cta-home p {
    max-width: 650px;
    margin: 0 auto 20px;
}

.cta-button {
    display: inline-block;
    margin: 15px 10px 0;
    padding: 13px 30px;
    border-radius: 30px;
    background: #02b025;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s ease;
}

.cta-button.secondary {
    background: #ffffff;
    color: #02b025;
    border: 1px solid #02b025;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ---------- POPUP ---------- */
.image-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #ffffff;
    max-width: 1200px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.popup-content h3 {
    margin-bottom: 18px;
    color: #02b025;
}

.popup-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}


/* Reduce excessive hero spacing */
.hero-section {
    padding: 0px 0 10px; /* was ~100px+ */
}

.hero-text {
    margin-bottom: 10px; /* reduce gap before tags */
}

.hero-tags {
    margin-top: 15px;
}
.product-carousel-section {
    padding-top: 40px; /* was ~60px */
}
.about-section {
    padding-bottom: 10px;
}


@keyframes scrollProducts {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 768px) {

    /* ================= CAROUSEL ================= */
    .product-carousel-track {
        gap: 18px;
    }
    .carousel-item {
        max-width: 180px;
        max-height: 160px;
    }
    .carousel-item img {
        object-fit: contain !important;  /* SHOW FULL IMAGE */
        background-color: #ffffff;        /* clean padding space */
    }
    /* ================= HEADER / NAV ================= */
    .logo-bar {
        padding: 10px 20px;
    }

    .logo-bar .logo img {
        height: 48px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* ================= HERO ================= */
    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    /* ================= LAYOUT GRIDS ================= */
    .products-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-container {
        flex-direction: column;
    }

    /* ================= STATS ================= */
    .stats {
        gap: 15px;
    }

    .stat-item {
        min-width: calc(50% - 15px);
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* ================= POPUP ================= */
    .popup-content {
        max-width: 95%;
    }

    /* ================= FOOTER ================= */
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* ================= TIMELINE ================= */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-year {
        margin-right: 20px;
    }

    .timeline-content {
        width: calc(100% - 150px);
    }
    
    .ewall-container
    {
                grid-template-columns: 1fr;
    }



    
}
