/*
Theme Name: Vibenox
Theme URI: https://vibenox.in
Author: Vibenox Pvt. Ltd
Author URI: https://vibenox.in
Description: A premium, professional custom WordPress theme for Vibenox Pvt. Ltd, specialized in web and software development.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vibenox
Tags: custom-theme, professional, it-company, responsive-layout
*/

/* Reset & Basic Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #0056b3;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
