/* Custom Variables for JDB Contracting Branding */
:root {
    --primary-dark: #1f3d5f;
    /* Deep Blue/Navy */
    --cta-main: #ff7f00;
    /* Bright Orange */
    --success-dark: #28a745;
    /* Green for checkmarks */
    --gray-bg: #f8f9fa;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Custom Background Colors */
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.bg-gray {
    background-color: var(--gray-bg) !important;
}

.bg-success-dark {
    background-color: var(--success-dark) !important;
}

/* CTA Button Styling */
.btn-cta-main {
    background-color: var(--cta-main);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-cta-main:hover {
    background-color: #e66900;
    /* Slightly darker orange on hover */
    color: white;
}

/* Extra Large Button for Primary CTA */
.btn-extra-large {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50px;
}

/* Hero Section Styling (Updated with user-provided image) */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    /* Takes up most of the initial screen space */
}

#hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Sticky Header Styling */
#sticky-header {
    background-color: var(--primary-dark);
    z-index: 1030;
    /* Higher than Bootstrap's navbar */
    border-bottom: 3px solid var(--cta-main);
    top: 0;
}

#sticky-header .btn-cta-main {
    /* Smaller CTA for the header bar */
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

/* Call to Action Animation (Pulse for attention) */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Testimonial Card */
.testimonial-card {
    border-left: 5px solid var(--cta-main);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}