/* styles.css */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
  //background-color: #f0f0f0;
}

.container {
  /* remove margin-top: auto and flex-grow: 1 */
}

footer {
  /* remove fixed height */
  background-color: #f0f0f0;
}

.fixed-footer {
  background-color: #000; /* Make the footer background black */
  padding: 10px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.fixed-footer .social-icons i {
  color: #fff; /* Make the icons white */
}

.bg-image {
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 80px;
  min-height: 100vh;
  color: white;
  position: relative;
  z-index: 0; /* base layer */
}

.bg-image-packages {
  background-image: url('/images/platformtoprint.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 80px;
  min-height: 100vh;
  color: white;
  position: relative;
  z-index: 0; /* base layer */
}

.bg-image::before,
.bg-image-packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* dark overlay */
  z-index: 0;
}

.bg-image .container,
.bg-image-packages .container {
  position: relative;
  z-index: 1; /* sits above the overlay */
}

.link-white {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-white:hover,
.link-white:focus {
    color: #dddddd; /* dim on hover */
    text-decoration: none;
}

.link-white:visited {
    color: #cccccc; /* slightly dimmer when visited */
}

.soft-white {
  color: rgba(255, 255, 255, 0.5); /* adjust alpha to taste */
}

.custom-footer {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle */
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6); /* Slightly softened white */
}

.menu {
  position: fixed; /* or absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; /* adjust the height to match your menu's height */
  z-index: 1; /* ensure the menu is on top */
}


.navbar-expand-md .navbar-toggler {
    display: block !important;
}

.navbar-expand-md .collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 20px; /* adjust this value to add some space between the menu and the content */
}

.navbar-expand-md .navbar-nav {
    flex-direction: column !important;
}

.navbar-expand-md .nav-item {
    width: 100% !important;
}

.navbar-expand-md .nav-link {
    text-align: center !important;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-toggler {
  margin-left: auto; /* push it to the right */
  align-self: center;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.social-icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-right: 20px;
}

.social-icons a {
  color: #333;
  text-decoration: none;
}

.social-icons a:hover {
  color: #666;
}

hr {
  width: 50%;
  border-top: 1px solid #fff;
  margin: 20px auto;
}

.package-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 80px; /* increased space below each card */
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;

    /* Match max hover size to avoid layout shift */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-6px); /* slightly more lift for emphasis */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* darker, same size */
}

.package-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

 .package-content {
            flex: 1 0 auto;
        }

 .package-footer {
            margin-top: 20px;
        }

.package-price {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }

.feature-list {
            padding-left: 20px;
        }

.feature-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 5px;
        }

.cta-button {
            display: inline-block;
            background-color: #000;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }

.cta-button:hover {
            background-color: #333;
            color: #fff;
            text-decoration: none;
        }

.packages-header {
            margin-top: 30px;
            margin-bottom: 40px;
            text-align: center;
        }

.mb-6 {
  margin-bottom: 8rem; /* 64px */
}

.package-note {
    font-size: 0.875rem; /* or smaller if needed */
    color: #666;
    font-style: italic;
    margin-top: -1rem;
}

@media (max-width: 767.98px) {
    .package-card {
        margin-bottom: 100px; /* extra breathing room on small screens */
    }
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0; /* right-align the menu */
  background-color: #222;
  min-width: 160px;
  z-index: 10;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  padding: 10px 0;
}

.dropdown-menu a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #333;
}

.dropdown.show .dropdown-menu {
  display: block;
}



#testimonialCarousel .carousel-content {
  background-color: rgba(0, 0, 0, 0.2); /* subtle dark overlay */
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: none; /* Remove heavy shadow */
  backdrop-filter: blur(4px); /* Optional: subtle blur for glassy feel */
}

#testimonialCarousel blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
}

#testimonialCarousel img {
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  padding: 10px;
}