/* Typography */
:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --color-primary: #0047BB;
    --color-text: #333333;
    --color-text-light: #666666;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Header Styles */
.header-container {
    /* background: url("images/off-road-car.jpg")  bottom/cover; */
    color: white;
    text-align: center;
    /* padding: 3em 1em; */
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 13px rgba(0, 0, 0, 0.8);
    height: 550px;
    /* height: 90%; */
    display: flex;
    flex-direction: column;
    justify-content: end;
    h1 {
        background: rgba(0, 0, 0, .6);
        padding: 8px;
    }
    p {
        background: rgba(0, 0, 0, .2);
        padding: 8px;
    }
}

nav {
    background: #106bb4;
    /* background: linear-gradient(180deg, rgba(249,6,23,1) 8%, rgba(228,6,21,1) 70%, rgba(199,5,18,1) 100%); */
    /* padding: 15px; */
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

nav a:hover {
    background: white;
    color: #E30613;
    border-radius: 5px;
    transform: scale(1.1);
}

.container {
    padding: 50px;
    text-align: center;
    max-width: 80% !important;
}

.service {
    margin: 20px auto;
    max-width: 800px;
    padding: 25px;
    background: white;
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service:hover {
    transform: scale(1.05);
}

.testimonials {
    background: #0047BB;
    color: white;
    padding: 40px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
}

.testimonial {
    max-width: 800px;
    margin: 40px auto;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 1.5em;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #E30613;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* CTA Banner */
.cta-banner {
    background: #E30613;
    color: white;
    margin-top: 0;
    text-align: center;
    margin-top: 8px;
    /* max-height: 40px; */
  padding:10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.emergency {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
}

.emergency a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.emergency a:hover {
    color: #f4f4f4;
    border-bottom-color: #f4f4f4;
}