body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.navbar {
    display: flex;
}

.navbar-brand,
.nav-link {
    color: white;
  
}

.navbar-brand img {
    width: 150px;
    height: 120px;
}

.nav-link:hover {
    color: white;
    background-color: #6c757d;
    border-radius: 50%;
}
.nav-item{
    display: flex;
} 
.navbar-nav{
    display: flex;
    flex-direction: row;
}
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #333;
}

.container {
    max-height: fit-content;
    padding: 0;
}

.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

.carousel-item img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/2;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin-bottom: 20px;
}

h1, h2, h3, h4 {
    text-align: center;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    border-top: 1px solid #333;
    padding: 10px;
}
.team-video{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;  
}
.team-video video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 }


.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.contact-form button:hover {
    background-color: #0056b3;
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}


.whatsapp-button {
    margin-top: 10px;
    width: 50%;
    background-color: #25D366;
    color: white;
    padding: 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 10px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover,
.whatsapp-button:active {
    background-color: white;
    border: 1px solid #25D366;
}

.whatsapp-icon {
    fill: white;
    transition: fill 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon,
.whatsapp-button:active .whatsapp-icon {
    fill: green;
}
