@charset "utf-8";
/* CSS Document */

section.section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove top margin and padding from footer */
footer#footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Optional: Reset margin on the heading inside the blog section */
section.section h2 {
  margin-bottom: 0 !important;
}

/* Optional: Reset padding/margin inside footer container */
footer#footer > .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Add some bottom padding to the blog section so links have breathing room */
section.section {
  padding-bottom: 50px !important; /* More space to clear footer ribbon */
}

.call-to-action {
    margin-top: 0 !important;
}

.bg-blog {
    background-color: #27aae1 !important;
}

/* Tighten space below About Us */
#footer .row.py-5.my-4 {
  margin-bottom: 0.75rem; /* reduced from default */
  padding-bottom: 0.25rem;
}

/* Tighten space above lower row */
#footer .row.pt-3 {
  padding-top: 0.25rem;
}

#footer .btn-flat.btn-xs.text-color-light {
  margin-bottom: 0 !important;
  display: inline-block; /* Just in case */
  padding-bottom: 0; /* Remove extra padding if any */
}

#footer .container > .row > .col-md-9 > p:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.custom-container {
   max-width: 1800; /* or 1320px, or whatever you like */
   margin: 0 auto;
   padding-left: 60px;
   padding-right: 60px;
}

p.mb-0 strong {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* Customizing alert background, text color, and removing the border on incentrex-difference,html */
.alert-info {
    background-color: #003366 !important;  /* Incentrex Dark Blue Background */
    color: white !important;                /* White Text Color */
    border: none !important;                /* Remove the Border */
}

/* Customizing the link color inside the alert */
.alert-info .alert-link {
    color: #27aae1 !important;             /* Incentrex Light Blue Link Color */
}

.stacked-lines div {
  line-height: 1.4;
  margin: 0;
}

/* ─── Modal Software Styles ─── */

/* Dark translucent backdrop inside the modal */
.modal-content.bg-transparent {
  background: rgba(0, 0, 0, 0.65);
  border: none;
  box-shadow: none;
}

/* Prevent modal from stretching full screen */
.modal-dialog {
  max-width: 95vw;
  max-height: 95vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gallery images — preserve size, avoid stretch */
#imageCarousel .carousel-item img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* Carousel arrow controls (prev/next) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 2px #000);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* Placeholder text (centered image text like "800x600") */
.carousel-item img::after {
  content: "";
  color: #fff;
  text-shadow: 0 0 4px #000;
}

/* Full-screen toggle button (⛶ / 🗗) */
.fs-btn {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1066;
  position: absolute;
  top: 1rem;
  right: 3rem;
}

/* Close button — fixed in top-right corner */
.modal-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  filter: drop-shadow(0 0 2px #000);
}

/* ─── Caption Runs First) ─── */
#imageCarousel .carousel-caption {
  background: none !important;
  backdrop-filter: none !important;
  text-shadow: none !important;
  padding: 0;
}

/* ─── Caption Strip ─── */
#imageCarousel .carousel-item {           /* positioning context */
  position: relative;
}

#imageCarousel .caption-strip {
  position: absolute;
  bottom: 0; left: 50%;                /* center anchor */
  transform: translateX(-50%);        /* pull back half its own width */
  width: 100%;                        /* grow/shrink with the slide */
  max-width: 500px;                  /* never wider than 1920 px */
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, .65) !important;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

#imageCarousel .caption-strip p {
  margin: 0;
  background: transparent !important;
  color: inherit;
}
/* End Software Modal */

/* Hover Secondary */
.btn-hover-secondary:hover,
.btn-hover-secondary:focus {
  background-color: #27aae1 !important;
  border-color:      #27aae1 !important;
  color:             #fff !important;   /* keep text readable */
}

.btn-outline-primary.btn-hover-secondary:hover,
.btn-outline-primary.btn-hover-secondary:focus {
  color: #fff !important;               /* outlined version flips text to white */
}

.custom-link {
  color: #27aae1;
  font-weight: normal; /* ensures link is not bold */
  text-decoration: none; /* optional */
}

.custom-link:hover {
  color: #7cd3f2; /* lighter shade of your original color */
  text-decoration: underline; /* optional */
}

.nav-tight li {
  margin-bottom: 0 !important;
}

.nav-tight .nav-link {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
  margin-bottom: 0 !important;
}

/* Pros & Cons Page */

/* Float image left with some margin for wrapping */
.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  max-width: 100%; /* Responsive constraint */
}

/* Responsive image */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* On small screens, remove float and center image */
@media (max-width: 767px) {
  .float-left {
    float: none !important;
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px !important;
  }
}

/* Ensures proper aspect ratio for YouTube Videos */
.video-container {
   position: relative;
   padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
   height: 0;
   overflow: hidden;
   max-width: 100%;
   background: #000;
}

.video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none; /* Removes the border without using frameborder attribute */
}

/* Print Receipt */
@media print {
    /* Hide everything except the order-info section */
    body * {
        visibility: hidden;
    }

    #order-info, #order-info * {
        visibility: visible;
    }

    /* Center the content */
    #order-info {
        margin: 0 auto;
        max-width: 800px;
        width: 100%;
    }

    /* Remove unwanted margins */
    .breadcrumb, .footer, .btn, .card-body {
        display: none !important;
    }
}

/* Align Center */
.text-center {
  text-align: center;
}
