*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body
{
    background: #1c1c1c;
    color: #eee;
}

nav
{
    width: 100%;
    background: #000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a 
{
    color: #ddd;
    text-decoration: none;
    margin-left: 25px;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover 
{
    color: #fff;
}

nav .logo 
{
    color: #fff;
    font-size: 26px;
    font-weight: bold;
}

.hero-home 
{
    width: 100%;
    height: 600px;
    background: url('./baner1.jpg') center/cover no-repeat;
    position: relative;
}

.hero-home::after 
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.hero-home .hero-text 
{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-text h1 
{
    font-size: 56px;
    margin-bottom: 20px;   
    text-shadow: 0 0 10px white;
}

.section 
{
    width: 90%;
    margin: 70px auto;
}

.section h2 
{
    font-size: 34px;
    margin-bottom: 35px;
    text-align: center;
}

.cars 
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.car 
{
    background: #2b2b2b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: 0.35s;
    text-decoration: none;
    color: white;
}

.car:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.car img 
{
    width: 100%;
    display: block;
}

.car h3 
{
    padding: 18px;
    color: #fff;
}

.contact-banner 
{
    width: 100%;
    height: 300px;
    background: url('hero.webp') center/cover no-repeat;
    position: relative;
}

.contact-banner::after 
{
    content: "";
    position: absolute;
    top: 0; left:0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.form-container 
{
    width: 55%;
    background: #2b2b2b;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);

}

form label 
{
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #ccc;
}

form input, form select, form textarea 
{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #555;
    margin-bottom: 10px;
    background: #1a1a1a;
    color: #eee;
}

form button 
{
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
    transition: 0.3s;
}

form button:hover 
{
    background: #444;
}

.sent-box 
{
    width: 60%;
    background: #2b2b2b;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    margin: 50px auto;
}

.center-text 
{
    text-align: center;
}

.contact-wrapper 
{
    display: flex;
    justify-content: center;
    padding: 10px 0;
    /* background: url('model\ one.jpg') center/cover no-repeat;
    position: relative; */
}

.contact-card 
{
    width: 55%;
    background: #1d1d1d;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.55);
    animation: fadeIn 1.0s ease;
}

.contact-card h2 
{
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-sub 
{
    text-align: center;
    color: #bfbfbf;
    margin-bottom: 30px;
}

.input-group label 
{
    margin-bottom: 6px;
    font-weight: bold;
    color: #e7d4d4;
}

.input-group input, .input-group select, .input-group textarea 
{
    width: 100%;
    padding: 14px;
    background: #131313;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.btn-submit 
{
    width: 100%;
    padding: 16px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: #000;
    color: white;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.btn-submit:hover 
{
    background: #333;
}

.sent-wrapper 
{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
}

.sent-card 
{
    width: 50%;
    background: #2e2a2a;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.55);
    text-align: center;
    animation: fadeIn 1s ease;
}

.sent-card h2 
{
    font-size: 32px;
    margin-bottom: 10px;
}

.sent-sub 
{
    font-size: 18px;
    color: #bcbcbc;
    margin-bottom: 35px;
}

.sent-data p 
{
    margin: 10px 0;
}

.back-btn 
{
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #3b3a3a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.back-btn:hover 
{
    background: #212020;
}
