* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    background-color: black;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    top: 0;
    bottom: 0;
    position: fixed;
}

.nav__logo {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding-left: 20px;
}

.nav__list {
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    display: flex;
    padding-left: 20px;
    list-style: none;
}

.nav__list a {
    text-decoration: none;
    color: white;
}

.home__video-1 {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
}

.home__video-2 {
    width: 100%;
    height: 55vh;
    overflow: hidden;
    display: flex;
}

.home__video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home__title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.home__title h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.home__cards__container {
    display: flex;
    gap: 60px;
    flex-wrap: nowrap;
    padding: 50px;
}

.home__data {
    display: flex;
    justify-content: center;
}

.home__card {
    background-color: black;
    width: 350px;
    height: 150px;
}

.home__card h3 {
    text-align: center;
    color: white;
    margin-top: 35px;
    margin-bottom: 20px;
}

.home__card p {
    text-align: center;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
}

.title h1 {
    font-size: 30px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
}

.about__video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__video {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    display: flex;
}

.about__details {
    padding: 50px;
    text-align: center;
}

.category__card__container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.category__card {
    background-color: white;
    width: 350px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category__card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.category__card button {
    background-color: black;
    color: white;
    text-align: center;
    align-items: center;
    width: 90px;
    height: 30px;
    margin-top: 20px;
    border-radius: 5px;
}

.category__card button:hover {
    background-color: white;
    color: black;
}

.categories__video {
    width: 100%;
    height: 30vh;
    overflow: hidden;
}

.categories__video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom__image-1 {
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.showroom-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom__image-2 {
    width: 640px;
    height: 350px;
    overflow: hidden;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
}

.showroom-img-2 {
    width: 100%;
    height: 100%;
}

.showroom__details {
    max-width: 700px;
    text-align: center;
    line-height: 1.6;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.wrapper {
    display: flex;
}

.showroom__details button {
    background-color: black;
    color: white;
    text-align: center;
    align-items: center;
    width: 90px;
    height: 30px;
    margin-top: 20px;
    border-radius: 5px;
}

.showroom__details button:hover {
    background-color: white;
    color: black;
}

.product__card__container {
    display: flex;
    justify-content: center;  
    gap: 30px;                
    flex-wrap: wrap;          
    margin-top: 40px;
    margin-bottom: 85px;
}

.product__card {
    background-color: white;
    width: 300px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.product__card img {
    width: 250px;
    height: 250px;
    object-fit: contain;  
}

.chatbot {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
}

.chatbot.active {
    display: flex;
}

.chatbot__toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: black;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.chatbot__header {
    background: black;
    color: white;
    padding: 10px;
    text-align: center;
}

.chatbot__messages {
    height: 250px;
    overflow-y: auto;
    padding: 20px;
}

.chatbot__input {
    display: flex;
}

.chatbot__input input {
    flex: 1;
    padding: 10px;
    border: none;
}

.chatbot__input button {
    padding: 10px;
    background: black;
    color: white;
    border: none;
}

.footer__container {
    width: 100%;
    min-height: 30vh;
    padding: 20px;
    background: radial-gradient(circle at center, rgb(39, 31, 31), black);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__title {
    text-align: center;
    color: white;
}

.footer__title p {
    margin-top: 10px;
}

.footer__data {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer__links {
    list-style: none;
    padding: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

.footer__links li {
    margin-bottom: 5px;
    color: rgb(114, 113, 110);
}

.footer__links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__copyright {
    text-align: center;
    font-size: 13px;
}