  body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* background-color: black; Black background */
    background-color: white; /* Black background */
    color: black;
  }

  /* brand transition */
  .brand-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background-color: black; /* Black background */
    padding: 20px 0;
  }

  .brand-track {
    display: flex;
    animation: scroll 20s linear infinite;
  }

  .brand-tem2 {
    display: inline-block;
    text-align: center;
    margin: 0 20px;
  }

  .brand-tem2 img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
  }

  .brand-tem2 p {
    font-size: 14px;
    font-weight: bold;
    color: white;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

   .navbar {
    background-color: #ffffff; /* White background */
    padding: 1rem 0;
    border-bottom: 1px solid #ddd; /* Light gray border */
   }
    
/* 
  .navbar-brand img {
    height: 40px;
    margin-top: -5px;
  }

  .nav-link {
    color: white !important;
  } */
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    /* color: #333; */
  }
  .navbar-logo {
    width: 100px;
    height: px;
  }
  .navbar-nav {
    gap: 1.5rem;
  }
  
  /* .nav-link:hover {
    color: red !important; /* Red on hover */
  /* } */

  /* .hero { */
    /* background: linear-gradient(135deg, black, red); Black to red gradient */
    /* color: white; */
    /* padding: 80px 0; */
    /* text-align: center; */
    /* } */
    .nav-link {
      font-weight: bold;
      color: #333; 
      transition: color 0.3s ease;
      /* color: white; */
}
.nav-link:hover {
    color: #d32f2f; /* Red on hover */
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.5)), url('https://www.libas.in/static/hero-image.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 5px solid #d32f2f; /* Red border */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid red; /* Red border */
  }

  .cta-section {
    background: black; /* Black background */
    color: white;
    padding: 30px;
    text-align: center;
  }

  .btn-success {
    background-color: red; /* Red button */
    border: none;
  }

  .btn-success:hover {
    background-color: white; /* White on hover */
    color: black;
  }

  .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: red;
  }

  .social-icons a:hover {
    color: white;
    transform: scale(1.2);
    transition: color 0.3s, transform 0.3s;
  }

  footer {
    background-color: black; /* Black background */
    color: white;
    padding: 10px 0;
  }

  footer p {
    margin: 0;
  }

  .card {
    background-color: black; /* Black background */
    color: white;
    border: 1px solid red; /* Red border */
  }

  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: red; /* Red title */
  }

  .card-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .map-container iframe {
    border: 2px solid red; /* Red border */
  }

  #google_translate_element select {
    background-color: red; /* Red background */
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }

  #google_translate_element select:hover {
    background-color: white; /* White on hover */
    color: black;
  }

  .delivery-partners .col-3 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .partner-logo {
    max-height: 50px;
    object-fit: contain;
    width: auto;
  }

  @media (max-width: 768px) {
    .delivery-partners .col-3 {
      flex: 0 0 50%;
    }
  }

  @media (max-width: 480px) {
    .delivery-partners .col-3 {
      flex: 0 0 100%;
    }
  }

  .brands .col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .brand-logo {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .brand-logo + p {
    font-size: 16px;
    font-weight: bold;
    color: white;
  }

  @media (max-width: 768px) {
    .brands .col-2 {
      flex: 0 0 25%;
    }
  }

  @media (max-width: 480px) {
    .brands .col-2 {
      flex: 0 0 50%;
    }
  }

  .soon {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .Footer-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }

  .footer-links {
    color: red; /* Red links */
    text-decoration: none;
    font-size: 14px;
  }

  .footer-links:hover {
    text-decoration: underline;
  }

  .contact-container {
    max-width: 800px;
    margin: 50px auto;
    background: black; /* Black background */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3); /* Red shadow */
    padding: 30px;
  }

  .form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: red; /* Red title */
  }

  .form-label {
    font-weight: bold;
    color: white;
  }

  .form-control {
    border: 1px solid red; /* Red border */
    color: white;
    padding: 15px;
    border-radius: 10px;
  }

  .form-control:focus {
    outline: none;
    box-shadow: 0 0 5px 2px red; /* Red focus border */
  }

  .form-button {
    background: red; /* Red button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .form-button:hover {
    background: white; /* White on hover */
    color: black;
    transform: scale(1.05);
  }

  .footer-links {
    color: red; /* Red footer links */
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .footer-links:hover {
    color: white; /* White on hover */
    text-decoration: underline;
    transform: scale(1.1);
  }

  #product-filter {
    background-color: black; /* Black background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(255, 0, 0, 0.1); /* Red shadow */
  }

  #product-filter .form-label {
    font-weight: bold;
    color: white;
  }

  #product-filter .btn {
    padding: 10px 20px;
    font-size: 16px;
    color: red; /* Red button */
  }

  .custom-card {
    background-color: black; /* Black background */
    border: 1px solid red; /* Red border */
    color: white;
  }

  .custom-card .card-title {
    font-weight: bold;
    text-align: center;
  }

  .custom-card img {
    max-height: 450px;
    object-fit: cover;
  }

  .btn-danger {
    background-color: red; /* Red button */
    border-color: red; /* Red border */
  }

  .btn-danger:hover {
    background-color: black; /* Black on hover */
    color: red; /* Red text on hover */
  }

  /* The switch container */
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  /* Hide the default checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider background */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black; /* Black background */
    transition: 0.4s;
    border-radius: 34px;
  }

  /* The circle inside the switch */
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    border-radius: 50%;
    left: 4px;
    bottom: 4px;
    background-color: white; /* White circle */
    transition: 0.4s;
  }

  /* When the switch is checked */
  input:checked + .slider {
    background-color: red; /* Red when checked */
  }

  /* Move the circle to the right when checked */
  input:checked + .slider:before {
    transform: translateX(26px);
  }

  /* Style for the round slider */
  .round {
    border-radius: 34px;
  }
