/* assets/css/style.css */

/* --- CSS VARIABLES --- */
:root {
    --primary: #1f4f82;      /* Steel Blue */
    --dark: #1e1e1e;         /* Charcoal */
    --light: #f4f6f8;        /* Industrial Light Grey */
    --text: #333333;         /* Body Text */
    --accent: #f57c00;       /* Safety Orange */

    /* Legacy aliases for existing styles */
    --primary-green: var(--primary);
    --accent-yellow: var(--accent);
    --text-dark: var(--text);
    --text-light: var(--light);
    --bg-light: var(--light);
    --bg-dark-green: color-mix(in srgb, var(--primary) 80%, var(--dark) 20%);
}

/* --- GLOBAL RESETS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    min-height: 44px;
}

.btn:hover {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-yellow {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: color-mix(in srgb, var(--accent) 85%, var(--dark) 15%);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-bar-flex {
    display: flex;
    justify-content: space-between;
}

/* --- NAVIGATION --- */
header {
    background: var(--light);
    box-shadow: 0 2px 10px color-mix(in srgb, var(--dark) 15%, transparent);
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 8px;
    color: color-mix(in srgb, var(--text) 70%, transparent);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 18px 30px color-mix(in srgb, var(--dark) 15%, transparent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 20;
}

.dropdown-menu a {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: color-mix(in srgb, var(--accent) 10%, var(--light) 90%);
    color: var(--primary);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-links a {
    font-weight: 500;
    color: var(--text);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 4px;
    padding: 10px 12px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle:hover {
    background: var(--accent);
    color: var(--dark);
}

/* --- PAGE HEADER (COMMON) --- */
.page-header {
    background: linear-gradient(135deg, color-mix(in srgb, var(--light) 90%, var(--primary) 10%) 0%, var(--light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    text-align: left;
}

.page-header h1 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 0.6rem;
    color: color-mix(in srgb, var(--text) 60%, transparent);
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 600;
}

/* Page Header Decorations */
.page-header-decoration-left {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    opacity: 0.6;
}

.page-header-decoration-left i {
    font-size: 8px;
    color: var(--accent);
}

.page-header-decoration-right {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    opacity: 0.5;
}

.page-header-decoration-right svg {
    width: 100%;
    height: auto;
}

/* --- PRODUCT DETAIL PAGE --- */
.product-detail-section {
    background: var(--light);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-menu,
.brochure-card,
.contact-card {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--dark) 8%, transparent);
}

.product-menu h4,
.brochure-card h4,
.contact-card h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.product-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid color-mix(in srgb, var(--dark) 12%, transparent);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text);
    background: color-mix(in srgb, var(--light) 75%, transparent);
    transition: all 0.2s ease;
}

.product-menu a:last-child {
    margin-bottom: 0;
}

.product-menu a:hover,
.product-menu a.active {
    border-color: var(--accent);
    color: var(--primary);
    background: color-mix(in srgb, var(--accent) 8%, var(--light) 92%);
}

.brochure-card p,
.contact-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text);
}

.brochure-card .btn,
.contact-card .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-card {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 88%, var(--dark) 12%), var(--primary));
    color: var(--light);
    border-color: transparent;
}

.contact-card p,
.contact-card h4 {
    color: var(--light);
}

.contact-card .btn {
    background: var(--accent);
    color: var(--dark);
}

.product-main {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--dark) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--dark) 8%, transparent);
}

.product-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.product-hero-media img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
    background: var(--light);
}

.product-hero-content h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.product-description {
    margin-bottom: 20px;
}

.product-main p {
    margin-bottom: 16px;
}

.product-main p:last-child {
    margin-bottom: 0;
}

.product-specs h3,
.product-features h3 {
    margin: 18px 0 12px;
    font-size: 1.2rem;
    color: var(--primary);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.specs-table th,
.specs-table td {
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--dark) 12%, transparent);
}

.specs-table th {
    text-align: left;
    width: 40%;
    background: color-mix(in srgb, var(--primary) 6%, var(--light) 94%);
    color: var(--primary);
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    margin-top: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    color: var(--text);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}

/* --- HERO SLIDER SECTION --- */
.hero-slider {
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--light) 70%, transparent) 0%, color-mix(in srgb, var(--light) 40%, transparent) 100%), url('assets/images/machine-hero.png') center/cover;
    background-attachment: fixed;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-slide .hero-content,
.hero-slide .hero-image {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active .hero-content,
.hero-slide.is-active .hero-image {
    opacity: 1;
    transform: translateY(0);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 60px 40px 60px 0;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 35px;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px color-mix(in srgb, var(--dark) 30%, transparent));
}

.hero-slider-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 3;
}

.hero-nav {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--dark) 15%, transparent);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-nav:hover {
    background: #fff;
    transform: scale(1.05);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: color-mix(in srgb, var(--primary) 25%, var(--light) 75%);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--dark) 50%, transparent);
    z-index: 18;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Sidebar */
.sidebar-toggle {
    position: fixed;
    right: 20px;
    top: 120px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--dark) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--dark) 20%, transparent);
}

.hero-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--light);
    padding: 60px 40px 40px;
    box-shadow: -5px 0 20px color-mix(in srgb, var(--dark) 15%, transparent);
    overflow-y: auto;
    z-index: 20;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.hero-sidebar.active {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark);
    z-index: 25;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--dark) 10%, transparent);
}

.sidebar-close:hover {
    background: color-mix(in srgb, var(--accent) 85%, var(--dark) 15%);
    transform: scale(1.05);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid color-mix(in srgb, var(--light) 80%, var(--dark) 20%);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.sidebar-logo-img {
    height: 50px;
    width: auto;
}

.sidebar-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.sidebar-section {
    margin-top: 10px;
}

.sidebar-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 8px;
    display: inline-block;
    color: var(--primary);
}

.sidebar-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    margin: 8px 0;
}

.sidebar-section a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-section a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-slider {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 20px 40px 0;
    }

    .sidebar-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
.about-intro {
    padding: 80px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h4 {
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.about-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* --- WHY US SECTION (Green Background) --- */
.why-us {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.why-us-list p {
    margin-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--light) 20%, transparent);
    padding-bottom: 5px;
}
.why-us-img img {
    width: 100%;
    border-radius: 8px;
    border: 5px solid color-mix(in srgb, var(--light) 20%, transparent);
}

/* --- STATS SECTION --- */
.stats-section {
    background-color: var(--light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 50px;
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.55;
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 25%, transparent);
}

.stats-section::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 18px;
    width: 220px;
    height: 90px;
    background-image: repeating-linear-gradient(
        -10deg,
        color-mix(in srgb, var(--accent) 45%, transparent) 0 2px,
        transparent 2px 12px
    );
    background-repeat: no-repeat;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 40px;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.stat-icon i {
    font-size: 2.2rem;
    color: var(--accent);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin: 0 0 6px;
}

.stat-item p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-section::after {
        left: 20px;
        top: 10px;
        transform: scale(0.8);
        transform-origin: top left;
    }
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: auto;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}
.footer-col h4 {
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    padding-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
}
.footer-col ul {
    margin: 0;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.footer-col a {
    color: var(--light);
    opacity: 0.95;
    transition: opacity 0.3s;
}
.footer-col a:hover {
    opacity: 1;
}

/* Footer Company Info Styling */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company-logo {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
}

.company-logo i {
    font-size: 1.5rem;
}
.company-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.6;
}
.company-detail i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.company-detail p {
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px color-mix(in srgb, var(--dark) 30%, transparent);
}

.copyright {
    text-align: center;
    border-top: 1px solid color-mix(in srgb, var(--light) 20%, transparent);
    padding-top: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* --- INDUSTRIES PAGE --- */
.industries-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-size: 2.2rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--light);
    border: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--dark) 8%, transparent);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -60%;
    width: 60%;
    height: 250%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        color-mix(in srgb, var(--light) 45%, transparent) 35%,
        transparent 70%
    );
    transform: translateX(-120%) rotate(10deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--dark) 15%, transparent);
    border-color: var(--primary);
}

.industry-card:hover::after {
    transform: translateX(220%) rotate(10deg);
}

.industry-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.industry-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-media img {
    transform: scale(1.05);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-icon i {
    font-size: 2.5rem;
    color: var(--light);
}

.industry-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.industry-card p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- INDUSTRIES BENEFITS SECTION --- */
.benefits-section {
    background-color: var(--light);
}

.benefits-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--dark) 10%, transparent);
    text-align: left;
}

.benefit-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

/* --- EXHIBITIONS PAGE --- */
.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exhibition-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--dark) 10%, transparent);
    transition: all 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--dark) 15%, transparent);
}

.exhibition-header {
    padding: 30px 20px;
    color: var(--light);
    text-align: center;
}

.exhibition-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.exhibition-content {
    padding: 25px;
}

.exhibition-content p {
    margin: 15px 0;
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.exhibition-content strong {
    color: var(--primary);
}
@media (max-width: 768px) {
    .about-grid, .why-us-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Add this to the bottom of style.css --- */

/* 1. Smooth Fade-in Animation for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    /* Apply fade in to stats */
    animation: fadeInUp 1s ease-out;
}

/* 2. Pulse Animation for the "Years of Experience" Badge */
/* Add class="experience-badge" to a div to use this */
.experience-badge {
    animation: pulse 2s infinite;
}

/* --- CONTACT PAGE STYLES --- */
.contact-section {
    padding: 60px 0;
}

.contact-map {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--dark) 10%, transparent);
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Get In Touch Section */
.get-in-touch {
    padding-right: 20px;
}

.contact-heading {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtext {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--light);
    font-size: 1.3rem;
}

.contact-details h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text);
    line-height: 1.6;
    margin: 5px 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: color-mix(in srgb, var(--primary) 80%, var(--dark) 20%);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--dark) 8%, transparent);
}

.form-heading {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 1px solid color-mix(in srgb, var(--dark) 15%, transparent);
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}

.contact-form textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--accent);
    color: var(--dark);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: color-mix(in srgb, var(--accent) 85%, var(--dark) 15%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .get-in-touch {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* --- INDUSTRIES HOME SECTION --- */
.industries-home-section {
    background-color: var(--primary);
    padding: 80px 0;
}

/* --- PRODUCTS LISTING PAGE --- */
.products-listing {
    padding: 60px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--dark) 10%, transparent);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px color-mix(in srgb, var(--dark) 15%, transparent);
}

.product-card-media {
    background: color-mix(in srgb, var(--light) 70%, transparent);
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.04);
}

.product-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    flex-grow: 1;
}

.product-card-body h3 {
    font-size: 1.15rem;
    color: var(--primary);
}

.product-card-body p {
    color: var(--text);
    font-size: 0.95rem;
}

.product-card-body .btn {
    align-self: center;
    width: 100%;
    text-align: center;
}

.industries-home-title {
    color: var(--light);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.industries-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-home-card {
    background: color-mix(in srgb, var(--light) 12%, transparent);
    border: 2px solid color-mix(in srgb, var(--light) 25%, transparent);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-home-card:hover {
    background: color-mix(in srgb, var(--light) 20%, transparent);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.industry-home-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.industry-home-card p {
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 992px) {
    .industries-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-home-card {
        padding: 30px 15px;
    }

    .industry-home-card i {
        font-size: 2.5rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 70%, transparent);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px color-mix(in srgb, var(--primary) 0%, transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 0%, transparent);
    }
}

/* 3. Hover Lift Animation for Product Cards/Icons */
.stat-item:hover i, 
.industry-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 992px) {
    .top-bar-flex {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding-top: 12px;
        margin-top: 10px;
        border-top: 1px solid color-mix(in srgb, var(--dark) 10%, transparent);
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        padding: 8px 0 0;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: flex;
    }

    .dropdown-menu a {
        width: 100%;
        padding: 8px 12px;
        background: color-mix(in srgb, var(--light) 80%, transparent);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid,
    .why-us-grid,
    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 420px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 40px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .company-detail {
        justify-content: center;
    }

    .product-main {
        padding: 20px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .stats-grid,
    .industries-home-grid {
        grid-template-columns: 1fr;
    }

    .btn,
    .submit-btn,
    .hero-btn {
        width: 100%;
        text-align: center;
    }

    .navbar {
        gap: 10px;
    }
}