@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Forum&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary : #536942;
    --secondary : #FFD936;
    --white : #efefef;

}
 
body {
    font-family: "DM Sans", sans-serif;
    color: var(--primary);
}

.main {
    background-image: url(./images/car4.webp);
    min-height: 90vh;
    background-position: bottom center;
    background-size: cover;

}

.main .container img {
    border-radius: 10px;
}


a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    padding: 16px;
    margin: auto;
}
section {
    margin: 30px auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    color: var(--secondary);
}

.btn {
    padding: 12px 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;
}

.btn-primary {
    border: none;
    background: var(--secondary);
    color: var(--primary);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: var(--white);
}

.main-content .intro-heading {
    font-size: 60px;
    color: var(--secondary);
}

.main-content .main-heading {
    font-size: 50px;
    margin-top: -20px;
    color: var(--white);
    
}

.main-content p {
    
    max-width: 200px;
    margin-bottom: 10px;
    font-size: 25px;

}

.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    width: 30px;
}

.section-title h1 {
    font-size: 50px;
    text-align: center;

}

.section-title .line {
    width: 200px;
    height: 4px;
    border: 10px;
    background: var(--secondary);
    margin: auto;
}

.services {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.service {
    width: 350px;
}

.service img {
    max-width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.service img:hover {
    transform: scale(1.05) ;
}

#testimonial {
    background: #f1f2fa;
}

#testimonial .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    gap: 30px;
    padding: 50px 16px;
}
#testimonial h1 {
    font-size: 30px;
    font-family: 'forum', sans-serif;
    text-align: center;
}

#testimonila .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

#about-us .container .about-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}
#about-us img {
    border-radius: 7px;
}

#about-us .container .about-content h1 {
    font-family: 'forum', sans-serif;
    font-size: 30px;
}

#questions {
    min-height: 500px;
    background-image: url(./images/car2.webp);
    background-position: bottom center;
    background-size: cover;
    
}

#questions .container {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 500px;
    text-align: center;
}

#questions h1 {
    font-size: 50px;
    color: var(--secondary);
}

#questions p {
    color: var(--white);
    font-size: 20px;
    color: var(--white);

}

.footer {
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0;
    background: #484872;
    text-align: center;

}

.footer p {
    color: whitesmoke;
    margin: 20px auto;
}




.call{
    height: 70px;
    left: 10px;
    bottom: 13px;
    position: fixed;
}
.whatsapp{
    height: 80px;
    width: 70px;
    right: 10px;
    bottom: 10px;
    position: fixed;
}

body , html {
    overflow-x: hidden;
    
}






@media  screen and (max-width:520px) {
   
    

    #about-us .container {
        flex-direction: column;
        gap: 30px;
    }
    
}


