@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+Pro:wght@400;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* root css tyles #e3dad3 */
:root {
    --primary-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Bebas Neue', sans-serif;
    
    /* Updated color scheme based on the client's preferred look */
    --primary-color: #D71920; /* Bold Red (Accent color from the truck logo) */
    --secondary-color: #1E2A38; /* Dark Navy/Steel Blue (Strong professional look) */
    --tertiary-color: #0066CC; /* Bright Blue (Complementary accent from truck theme) */
    
    /* Supporting Colors */
    --dark-grey: rgb(24 24 24); /* Almost Black, for contrast */
    --light-black: rgba(5, 5, 5, 0.48); /* Slightly softer than pure black */
    --medium-grey: #4F4F4F; /* Neutral, works well with both dark and light elements */
    --light-grey: #F5F5F5; /* Off-white for background and subtle sections */

    /* Additional Colors for Branding */
    --accent-color: #D71920; /* Consistent red for buttons, highlights, and accents */
    --blue-accent: #0066CC; /* Defined blue accent to balance the branding */
    --background-color: #ffffff; /* Keeping backgrounds clean and readable */
}




body{
    background-color: white;
    font-size: 1em;
    font-family: var(--primary-font);
    color: #000000;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

li{list-style: none;}

a{text-decoration: none;}

button{
    border: none;
    background-color: transparent;
}

/* image */
img{
    max-width: 100%;
    height: auto;
    display: block;
}

h1,h2,h3,h4,h5,h6{
    letter-spacing: 2px;
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.2;
}


/* buttons */

/* Button Styles 1 */

.hero_btn_wrap{
    margin: 20px 0;
    text-align: center;
}

.buttonStyles1 {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    width: 250px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 20px;
}

.buttonStyles1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: #000;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    z-index: -1;
}

.buttonStyles1:hover::before {
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
}

.buttonStyles1:hover {
    background-color: var(--primary-color);
    /* border: 1px solid #000; */
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Button Styles 2 */
.buttonStyles2 {
    background-color: #000;
    color: #ffffff;
    padding: 10px 20px;
    width: 250px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.buttonStyles2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: var(--primary-color);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    z-index: -1;
}

.buttonStyles2:hover::before {
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
}

.buttonStyles2:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}





/* outter section wrapper */
.sec_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* global title wrap */
.main_title{
    text-align: center;
    margin: 2em 0;
}
    .main_title p{
        font-size: 1.2em;
        color: var(--primary-color);
    
    }

    .main_title h2{
        font-size: 2.3em;
        color: var(--secondary-color);  
        font-family: var(--secondary-font);
    }


@media only screen and (min-width:768px){

    .buttonStyles1 {
        margin-bottom: 0px;
    }
    .main_title p{
        font-size: 1.5em;
        color: var(--primary-color);
    
    }

    .main_title h2{
        font-size: 2.5em;
        color: var(--secondary-color); 
        font-family: var(--secondary-font);
    }
    
    
}



