/*
Theme Name: Janta Systems
Theme URI: http://jantasystem.com
Author: Janta Systems & Printers
Description: A custom WordPress theme for Janta Systems & Printers.com based on the 2025 Company Profile.
Version: 1.0
Text Domain: jantasystems
*/

:root {
    --primary-blue: #0E5A96;
    --light-bg: #f4f7f6;
    --text-dark: #333333;
    --text-light: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: var(--text-dark); line-height: 1.6; }

/* Navigation */
header { background: var(--primary-blue); color: var(--text-light); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; gap: 10px; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { color: var(--text-light); text-decoration: none; font-weight: 500; transition: 0.3s; }
nav a:hover { opacity: 0.8; }

/* Hero Section */
.hero { background: linear-gradient(rgba(14, 90, 150, 0.9), rgba(14, 90, 150, 0.7)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover; color: var(--text-light); padding: 100px 5%; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; }

/* Sections Layout */
section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
.bg-light { background-color: var(--light-bg); max-width: 100%; }
h2 { color: var(--primary-blue); text-align: center; margin-bottom: 40px; font-size: 2rem; text-transform: uppercase; }

/* Grid Layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-top: 4px solid var(--primary-blue); }
.card h3 { margin-bottom: 15px; color: var(--primary-blue); }

/* Clients List */
.client-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.client-tag { background: var(--primary-blue); color: #fff; padding: 10px 20px; border-radius: 20px; font-size: 0.9rem; }

/* Footer / Contact */
footer { background: #222; color: #fff; text-align: center; padding: 40px 5%; }
.contact-info { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-info div { display: flex; flex-direction: column; align-items: center; }
.contact-info strong { color: #4DA8DA; font-size: 1.2rem; margin-bottom: 5px;}