body {
    background-color: black;
}

.header .logo-container {
    background-color: black;
    padding: 20px 0 20px 10vw;
    height: 16vh;
}

.header .logo-container img {
    height: 80px;
    width: auto;
    margin: 0;
}

/*------Nabar------*/
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
    z-index: 1000;
    background-color: #333;
    position: sticky;
    width: 100%;
}

.nav-links {
    flex: none;
    margin-left: 3vw;
    padding-left: 5vw;
}

.nav-links ul {
    list-style: none;
    padding: 0;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.5s, color 0.5s;
    margin: 5px;
    padding: 5px 10px;
    position: relative;
    border-radius: 12px;
}

.nav-links ul li:hover a {
    background-color: lightskyblue;
    color: #333;
    border-radius: 12px;
}


.header .text-box {
    width: 100%;
    color: rgb(27, 27, 27);
    margin: auto; 
    text-align: left;
    background-image: url('assets/shifter.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 100px;
    border-radius: 30px;
    border-color: #ffffff;
    border-width: 10px;
}

.header .text-box h4 {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 50px;
}

.header .text-box h1 {
    color: #fff;
    font-size: 65px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
    text-align: left;
    
}
.header .text-box h5{
    color: #fff;
    margin-bottom: 30px;
    margin-top: -20px;
    font-size: 20px;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
}

.hero-btn:hover {
    border: 1px solid lightskyblue;
    background: lightskyblue;
    transition: 1s;
    border-radius: 12px;
}
nav .fa {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.897);
    border-radius: 6px;
    padding: 0 12px;
    height: 35px;
    max-width: 300px;
    width: 100%;
    margin: 0 15px;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: black;
    font-size: 16px;
    padding-left: 10px;
}

.contact-card {
    background-color: black;
    width: 100%;
    margin: 0 auto;
    padding: 20px 9vw 20px 9vw;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-card img {
    height: 70px;
    width: auto;
    border-radius: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: auto;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: lightskyblue;
}

.contact-links {
    margin-left: auto;
}

.contact-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: lightskyblue;
}
.hr hr{
    margin-top: 3vh;
    width: 80%;
    margin-left: 10vw;
    background-color: lightskyblue;
    border: 1px solid lightskyblue;
    height: 2px;
}

hr {
    width: 80%;
    margin-left: 10vw;
    background-color: lightskyblue;
    border: 1px solid lightskyblue;
    height: 2px;
}