﻿.top-bar {
  background-color: #E5C876;
  color: #190B45;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar a {
  color: #190B45;
  text-decoration: none;
  margin: 0 0.5rem;
}

  .top-bar a:hover {
    text-decoration: underline;
  }

.navbar-brand {
  font-weight: bold;
}

.nav-item, .nav-link {
  color: white;
}

.navbar-nav, .dropdown {
  --bs-nav-link-hover-color: #E5C876;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

  .card:hover {
    transform: scale(1.05);
  }

.dropdown-menu .dropdown-item {
  color: #E5C876 !important; /* Forces the text color to white */
}

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus,
  .dropdown-menu .dropdown-item.active {
    color: #E5C876; /* Ensures the text is white on hover, focus, or active state */
    background-color: #190B45 !important;
  }


.nav-link.p-2:focus,
.nav-link.p-2[aria-expanded="true"] {
  color: #E5C876 !important; /* Keep text white on hover, focus, or when dropdown is open */
}

.btn {
  --bs-btn-hover-border-color: #E5C876; /* Set the desired border color for hover */
}


.icon-link {
  text-decoration: none; /* Remove underline */
}

  .icon-link:hover svg {
    fill: #25d366; /* Change the icon color on hover */
  }

.modal-content {
  background-color: #190B45 !important color: #E5C876;
}

.navbar-toggler {
  border: 2px solid #E5C876; /* Adjust border thickness and color */
  padding: 5px; /* Add spacing between the lines and the border */
  border-radius: 5px; /* Optional: rounded corners for the button */
}

.navbar-toggler-icon {
  background-image: none; /* Remove default icon */
  position: relative;
  width: 22px; /* Adjust width of the hamburger */
  height: 16px; /* Height of the container holding the lines */
}

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 22px; /* Width of the hamburger lines */
    height: 2px; /* Thickness of the lines */
    background-color: #E5C876; /* Set the custom color for all lines */
    left: 0; /* Align lines to the left */
  }

  .navbar-toggler-icon::before {
    top: 0; /* Position for the top line */
  }

  .navbar-toggler-icon span {
    top: 6px; /* Position for the middle line */
  }

  .navbar-toggler-icon::after {
    top: 12px; /* Position for the bottom line */
  }

.card ul {
  padding-left: 20px; /* Indent bullet points */
  margin-bottom: 0; /* Remove extra spacing below list */
}

.card li {
  line-height: 1.6; /* Improve readability of bullet points */
}
/* Ensure the card is the positioning context for the ribbon */
.card {
  position: relative;
  overflow: hidden; /* Hides parts of the ribbon that extend beyond the card */
}

/* Base styling for the ribbon label */
.ribbon {
  position: absolute;
  top: 10px;
  left: -40px;
  transform: rotate(-45deg);
  color: #fff;
  padding: 5px 40px;
  font-weight: bold;
  font-size: 0.9rem;
  /* Set a default background color via a CSS variable */
  --ribbon-bg: #0d6efd;
  background-color: var(--ribbon-bg);
}

  /* Create the arrow on the right side of the ribbon */
  .ribbon::after {
    content: "";
    position: absolute;
    right: -10px; /* Position the arrow so it touches the right edge */
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--ribbon-bg); /* Arrow uses the same background */
  }

  /* Background colors for each type of service */
  .ribbon.online {
    --ribbon-bg: #0d6efd; /* Bootstrap primary blue */
  }

  .ribbon.ink {
    --ribbon-bg: #ffc107; /* Bootstrap warning yellow */
  }

  .ribbon.hybrid {
    --ribbon-bg: #198754; /* Bootstrap success green */
  }

.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;
}

.order-btn button {
  background-color: transparent;
  color: #190B45;
  border: 2px solid #190B45; /* Add border style with the desired color */
  transition: background-color 0.3s, color 0.3s; /* Optional: add transition effect */
}

  .order-btn button:hover {
    background-color: #190B45;
    color: #E5C876;
  }

#btnbook {
  text-align: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.large-font {
  font-size: 2rem;
}

.description-box img {
  width: 100%; /* Ensures all images take the full width */
  height: 360px; /* Forces the height to be uniform */
  object-fit: cover; /* Ensures images fill the container without distortion */
  display: block; /* Removes any unwanted spacing */
}

.description-box {
  height: 360px; /* Ensures all description boxes match in height */
  display: flex;
  align-items: center;
  justify-content: center;
}


