/*
Theme Name: CVD Infra Projects
Theme URI: https://cvdinfraprojects.com
Author: CVD Infra Projects LLP
Author URI: https://cvdinfraprojects.com
Description: Premium corporate WordPress theme for CVD Infra Projects LLP — a trusted infrastructure company specializing in Construction, Project Management Consultancy (PMC), and Skilled Manpower Solutions. Features glassmorphism UI, scroll animations, counter animations, dark mode, and fully responsive design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cvd-infra
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-width-template, one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, blog, business, portfolio

CVD Infra Projects Theme, Copyright 2025 CVD Infra Projects LLP
CVD Infra Projects Theme is distributed under the terms of the GNU GPL
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Brand Identity
   Navy Blue: #0B2D6B | Gold: #D4AF37 | White: #FFFFFF
   ============================================================ */
:root {
    /* Primary Brand Colors */
    --cvd-navy: #0B2D6B;
    --cvd-navy-dark: #071d47;
    --cvd-navy-light: #1a3f82;
    --cvd-gold: #D4AF37;
    --cvd-gold-dark: #b8941f;
    --cvd-gold-light: #e8c84a;
    --cvd-white: #ffffff;

    /* Neutrals */
    --cvd-gray-50: #f8fafc;
    --cvd-gray-100: #f1f5f9;
    --cvd-gray-200: #e2e8f0;
    --cvd-gray-300: #cbd5e1;
    --cvd-gray-400: #94a3b8;
    --cvd-gray-500: #64748b;
    --cvd-gray-600: #475569;
    --cvd-gray-700: #334155;
    --cvd-gray-800: #1e293b;
    --cvd-gray-900: #0f172a;

    /* Semantic */
    --cvd-success: #10b981;
    --cvd-warning: #f59e0b;
    --cvd-error: #ef4444;
    --cvd-info: #3b82f6;

    /* Typography */
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-py: 5rem;
    --container-max: 1280px;
    --card-radius: 1rem;
    --btn-radius: 0.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 45, 107, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 45, 107, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 45, 107, 0.18);
    --shadow-xl: 0 16px 48px rgba(11, 45, 107, 0.24);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.35);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-modal: 1050;
    --z-tooltip: 1070;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --cvd-white: #0f172a;
    --cvd-gray-50: #1e293b;
    --cvd-gray-100: #334155;
    --cvd-gray-200: #475569;
    --cvd-gray-700: #cbd5e1;
    --cvd-gray-800: #e2e8f0;
    --cvd-gray-900: #f8fafc;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}