header .navbar {
    background-color: #bea01f;
}

.navbar .navbar-nav .nav-link {
    font-size: 20px;
    color: var(--white);
}

.btn.btn-transparent-white-light {
    background-color: #bb1515;
    font-size: 16px;
    color: var(--white);
}

header .navbar-brand img {
    max-height: 108px;
    width: 206px;
    max-width: 200px;
}

a.nav-link {
    color: white;
}

.text-white{
    color: white !important;
}

input, select, textarea, .form-control, .form-select {
    padding: 7px 17px;
}

.btn-call {
    background: black;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.btn-call:hover {
    background: orange;
    border: #bb1515;
    color: white !important;
}

.btn-whatsapp:hover {
    background: rgb(52, 84, 5);
    border: #bb1515;
    color: white;
}

.btn-whatsapp {
    background: green;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    padding: 4px 21px;
}


.card-text {
    color: black;
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 13px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Desktop layout */
.slider-section {
  flex: 1 1 60%;
  order: 1;
}

.image-section {
  flex: 1 1 40%;
  order: 2;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }

  .slider-section {
    order: 1;
    width: 100%;
  }

  .image-section {
    order: 2; /* You can set this to 0 if you want it to appear above slider */
    width: 100%;
  }

}
