/* =========================================
   1. FONTS & RESET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@500;700&display=swap');

:root {
    /* --- YOUR CUSTOM COLORS (FROM LOGO) --- */
    --brand-black: #1a1a1a;       /* Deep Charcoal (The 'G' and 'Group') */
    --brand-orange: #FF9F1C;      /* The Logo Orange */
    --brand-orange-dark: #e08e0b; /* Darker orange for hover effects */
    
    /* --- UI COLORS --- */
    --text-main: #212529;
    --text-muted: #6c757d;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* --- SHADOWS --- */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden; /* Prevents horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   2. BOOTSTRAP OVERRIDES (NO MORE BLUE)
   ========================================= */

/* Force Links to be Black -> Orange */
a {
    color: var(--brand-black);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--brand-orange);
}

/* Force 'btn-primary' to be ORANGE */
.btn-primary {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: white !important;
}
.btn-primary:hover {
    background-color: var(--brand-orange-dark) !important;
    border-color: var(--brand-orange-dark) !important;
}

/* Force 'text-primary' to be ORANGE (for icons/highlights) */
.text-primary {
    color: var(--brand-orange) !important;
}

/* Force 'text-accent' to be ORANGE */
.text-accent {
    color: var(--brand-orange) !important;
}

/* Force 'bg-primary' to be BLACK (for Navbar/Footer) */
.bg-primary {
    background-color: var(--brand-black) !important;
    color: white !important;
}

/* =========================================
   3. COMPONENT STYLES
   ========================================= */

/* --- NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--brand-black) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--brand-black) !important;
    margin-left: 1rem;
    position: relative;
}

/* Orange underline effect on Hover/Active */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--brand-orange);
    transition: width 0.3s;
    margin-top: 4px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggler Icon Color */
.navbar-toggler span {
    color: var(--brand-orange);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px; /* Space for fixed navbar */
    /* Dark Overlay + Background Image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.8)), 
                url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

/* --- CARDS --- */
.service-card {
    background: var(--white);
    border: none;
    border-radius: 12px; /* Smooth corners */
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent; /* Hidden border */
}

.service-card:hover {
    transform: translateY(-10px); /* Lifts up */
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--brand-orange); /* Orange border appears */
}

.icon-box {
    width: 70px; height: 70px;
    background: rgba(255, 159, 28, 0.1); /* Light transparent Orange */
    color: var(--brand-orange);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .icon-box {
    background: var(--brand-orange);
    color: white;
}

/* --- FOOTER --- */
footer {
    background-color: var(--brand-black);
    color: #b0b0b0;
    padding-top: 4rem;
    border-top: 5px solid var(--brand-orange); /* Orange Accent Line */
}

footer h5, footer h6 {
    color: white;
}

footer a {
    color: #b0b0b0;
}

footer a:hover {
    color: var(--brand-orange);
}