﻿/* Custom CSS for background image */
.header {
  position: relative;
  background: url('https://storage.googleapis.com/msgsndr/Praa8TgkXzjH8augtEPy/media/63aa046c5aac1d835f9196ce.jpeg') center/cover no-repeat;
  height: 300px; /* Adjust the height as needed */
  color: #fff; /* Text color on top of the background image */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the overlay color and transparency as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
}
/* Custom CSS for rounded corners on top of the square */
.square {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* Custom CSS for equal height columns using flexbox */
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}

.col-eq-height {
  display: flex;
  flex-direction: column;
}


  .col-eq-height .square {
    flex-grow: 1;
  }





/* Custom CSS for "Most Popular" box */
.most-popular {
  background-color: #ce2029;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* Custom CSS for description boxes */
.description-box {
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align content to bottom */
  padding: 10px; /* Add padding to the description box */
}

/* Custom CSS for order buttons */
.order-btn {
  margin-top: auto;
}

  .order-btn a {
    background-color: transparent;
    color: #012768;
    border: 2px solid #012768; /* Add border style with the desired color */
    transition: background-color 0.3s, color 0.3s; /* Optional: add transition effect */
  }

    .order-btn a:hover {
      background-color: #012768;
      color: #fff;
    }

.accordion {
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem #012768;
}
.accordion-button {
  background-color: #fff;
  border:dashed;
  border-color:darkblue;
}
/* Custom CSS for the rotated "Sale" tag */
.square {
  position: relative;
}

  .square.sale-item::before {
    content: "Save";
    position: absolute;
    top: 40px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    background-color: #db861e;
    color: #fff;
    padding: 5px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg); /* Rotate the tag */
    transform-origin: left top; /* Set the rotation origin to the top-left corner */
  }

  .square.rush-item::before {
    content: "Fastest";
    position: absolute;
    top: 40px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    background-color: #18077d;
    color: #fff;
    padding: 5px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-45deg); /* Rotate the tag */
    transform-origin: left top; /* Set the rotation origin to the top-left corner */
  }

.nav-link, .navbar-brand {
  color: white !important;
}


.navbar-nav, .nav-link, .btn {
  padding-left: 20px; /* Adjust the value as needed */
}

.btn-with-icon {
  display: flex;
  align-items: center;
}

  .btn-with-icon svg {
    margin-right: 5px; /* Adjust the margin as needed */
  }

.image-container {
  position: relative;
  display: inline-block; /* Ensures the container only takes the space of the image */
}

.image {
  max-width: 100%; /* Ensure the image does not exceed the container width */
  height: auto; /* Maintain aspect ratio */
}

.bottom-left-button::before {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 10px; /* Adjust margin as needed */
}

.text-justify {
  text-align: justify;
}

.container2 {
  display: flex;
}

.large-panel {
  flex: 2;
  background-color: #ffffff;
  border: 1px solid #ccc;
  margin-right: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.large-image {
  width: 100%;
  max-height: 400px; /* Set a maximum width for the large image */
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.large-description {
  font-size: 24px;
  color: #333;
}

.right-panels {
  display: flex;
  flex-direction: column;
}

.small-panel {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  border-radius: 10px;
  flex-grow: 1; /* Allow the small panels to grow */
  min-height: 200px; /* Set a minimum height for the small panels */
}

  .small-panel:last-child {
    margin-bottom: 0;
  }

.small-image {
  width: 60%;
  height: auto;
  margin-right: 10px;
  object-fit: cover;
}

.small-panel + .small-panel {
  margin-top: 10px; /* Add some space between small panels */
}

.small-description {
  font-size: 24px;
  color: #333;
}
.overlay-button {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px; /* Adjust this value for spacing */
}

@keyframes pulsebook {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(248, 249, 250, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(248, 249, 250, 0);
  }
}

.pulsateb {
  animation: pulsebook 2s infinite;
}

/* Ensure the navbar-toggler icon is visible and styled correctly */
.navbar-toggler {
  border: none; /* Remove border around the button */
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Ensure the background color of the button is consistent */
.navbar-toggler {
  background-color: #800000; /* Match the navbar background color */
}

  /* Optional: Add hover effects */
  .navbar-toggler:hover {
    background-color: #660000; /* Darken on hover */
  }