/*
Theme Name: TECHNOPLAST Industrial Theme
Theme URI: https://github.com/technoplast/industrial-theme
Author: Antigravity AI
Author URI: https://google.com/deepmind
Description: Core industrial theme foundation for TECHNOPLAST, an ISO certified plastic injection moulding manufacturer based in Kannur, Kerala.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: technoplast
*/

/* --- THEME BRAND COLORS (CSS VARIABLES) --- */
:root {
    --primary-blue: #0067b2;
    --accent-red: #ef3125;
    --dark-bg: #0b1622;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --border-glass: rgba(255, 255, 255, 0.08);
}

/* --- BASE RESET STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
