/* CSS Variables - Construction Theme */
:root {
    --bg-dark: #2c3e50;
    --bg-card: #f8f8fc;
    --bg-lighter: #f8f9fa;
    --primary-accent: #c41e3a; /* Deep Red from Dhruv logo */
    --secondary-accent: #e74c3c; /* Bright Red */
    --text-white: #ffffff;
    --text-gray: #7f8c8d;
    --text-dark: #2c3e50;
    --gold: #e6c200;
    --border-light: #e1e8ed;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-card);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: var(--primary-accent); }
.text-red { color: var(--secondary-accent); }
.text-gold { color: var(--gold); }
.bold { font-weight: 700; }

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

/* Typography */
h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* General Sections */
section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
.text-white{
    color: #f8f9fa;
}