:root {
    --color-highlight: #ff3333;
    --color-dark-blue: #1C2833;
    --color-alternate-1: hsl(209, 14%, 75%);
    --color-alternate-2: hsl(209, 14%, 85%);
    --color-dark: #121212;
    --color-light: #FDFEFE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

header {
    background: var(--color-dark-blue);
    color: var(--color-light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
}

header h1 {
    color: var(--color-highlight);
}

header img {
    width: 70px;
    aspect-ratio: 1 / 1;
}

nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--color-light);
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('./images/Trucks/Truck\ 1.jpg') center/cover no-repeat;
    color: var(--color-light);
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 70px;
}

.hero img {
    width: 400px;
    aspect-ratio: 2 / 3;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero button {
    background: var(--color-highlight);
    border: none;
    padding: 1rem 2rem;
    color: var(--color-light);
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

section:nth-of-type(odd) {
    background-color: var(--color-alternate-1);
}

section:nth-of-type(even) {
    background-color: var(--color-alternate-2);
}

/* Overall Section */
.about-section {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 100px;
    gap: 100px;
}

.about-section img {
    border-radius: 10px;
    width: 30vw;
}


/* Right Column: Content */
.about-section .col-right .sub-heading {
    color: #e63946;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-section .col-right h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.about-section .col-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}


/* Lists */
.about-section .lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-section .lists ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-section .lists li {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.about-section .lists li::before {
    content: "•";
    color: #000;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}

/* Button */
.about-section .btn-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e63946;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-section .btn-wrapper .btn:hover {
    background: #d62828;
}



/* Services Section */

.services {
    padding: 50px 100px;
    gap: 100px;
}

.services>.above-text-container>p {
    font-size: 1.2rem;
    color: var(--color-highlight);
    font-weight: bold;
}

.services>.above-text-container>h1 {
    font-size: 4rem;
    font-weight: bold;
}

.services>.service-list {
    display: flex;
    gap: 20px;
    max-height: 478px;
}


.services>.service-list>.service-card {
    overflow: hidden;
    border-radius: 10px;
    width: calc((100vw - 50px) / 3);
    border: #000 2px solid;
    background-color: hsl(0, 0%, 91%);
    max-height: 478px;
}

.services>.service-list>.service-card>img {
    height: 40%;
    width: 100%;
    object-fit: cover;
}

.services>.service-list>.service-card>.service-card-content {
    width: 100%;
    height: 60%;
    max-height: fit-content;
    padding: 100px 30px;
    padding-top: 20px;

}

.services>.service-list>.service-card>.service-card-content>h2 {
    font-size: 2rem;
}




.contact-section {
    padding: 50px 100px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section>.left-contact-panel {
    width: 400px;
    border: 2px solid black;
    border-radius: 10px;
    padding: 32px;
    background-color: #fff;
    min-height: 520px;
    max-height: 520px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-section>.left-contact-panel>h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 35px;
}

.contact-section>.left-contact-panel a {
    text-decoration: none;
    color: black;
}

.contact-section>.contact-form {
    flex: 2 1 50%;
    max-width: 600px;
    border: 2px solid black;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-height: 520px;
    max-height: 520px;
}

.contact-section>.contact-form>h2 {
    text-align: center;
    padding-bottom: 20px;
    font-size: 35px;
}

.contact-section>.contact-form>.form-group {
    margin-bottom: 16px;
}


.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: none;
    height: 150px;
}

button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--color-highlight);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 1s;
}

button:hover {
    background-color: #cc0000;
}


















footer {
    background: var(--color-dark);
    color: var(--color-light);
    text-align: center;
    padding: 2rem;
}