.solutions-category-title {
  width: 100%;
  text-align: center;
  margin-top: 2vh;
  font-size: 130%;
  font-weight: bold;
}

.solutions-category-info {
  width: 100%;
  text-align: center;
  margin-top: 2vh;
}


.new-customer-discount-banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-customer-discount-banner {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.new-customer-discount-banner {
  padding-inline: calc(0.8em + .3em);
  line-height: 1.8;
  clip-path: polygon(0 0,100% 0,calc(100% - 0.8em) 50%,100% 100%,0 100%, 0.8em 50%);
  background: linear-gradient(45deg,var(--omnitech-gold) 15%,#debc5b 30%,#e7c97c 40%,#efd69d 50%,#e7c97c 60%,#debc5b 70%,var(--omnitech-gold) 85%);
  width: 90%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--omnitech-black);
  font-size: 2vh;
  line-height: 100%;

  transition: 0.25s ease;
}

.new-customer-discount-banner:hover {
  cursor: pointer;
  transform: translateY(-4px);

  transition: 0.25s ease;
}


/* Web Design and Development */
.big-card {
  width: 96%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.2s;
}

.big-card-icons {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.big-card-icons-row {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.big-card-icons-row img {
  max-width: 50px;
}

.big-card-text {
  width: calc(100% - 220px);
  line-height: 200%;
}

.big-card-icons-inline {
  display: inline-block;
}

.big-card > svg, .big-card > img {
  max-height: 25px;
}

#another-platform-text {
  font-size: 90%;
}


/* Hosting */
.pricing-array {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3vh;
}

.plan-card {
  width: 16%;
  min-height: 350px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.plan-as-low-as {
  margin-top: 1rem;
  color: var(--omnitech-red);
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 0.25rem 0 1rem 0;
  color: var(--omnitech-red);
}

#custom-plan-price {
  font-size: 1.75rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  width: 100%;
}

.plan-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.plan-select-btn {
  background: var(--omnitech-red);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.plan-select-btn:hover {
  background: #b9031e;
}

.plan-optimal-blurb {
  background: var(--omnitech-red);
  color: #fff;
  padding: 10px;
  border-radius: 25px;
  line-height: 125%;
  text-decoration: none;
  text-align: center;
  font-size: 90%;
}

/* Highlighted plan */
.highlight {
  border: 3px solid var(--omnitech-red);
  position: relative;
}

.highlight::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--omnitech-red);
  color: white;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
}


/* Maintenance and Management */
.pricing-table {
  width: 100%;
  margin-top: 3vh;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.pricing-table thead {
  background: var(--omnitech-red);
  color: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  background: #f9f9f9;
  font-weight: 600;
}

.pricing-table th {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-table th:first-child {
  color: var(--omnitech-red);
}

.pricing-table th:nth-child(2n) {
  border-top-left-radius: 12px;
}

.pricing-table .pricing-row {
  color: var(--omnitech-red);
  font-weight: bold;
  font-size: 130%;
}

.pricing-table .pricing-row .plan-price-unit {
  font-size: 75%;
}

.check {
  color: var(--omnitech-red);
  font-weight: bold;
  font-size: 1.2rem;
}
.dash {
  color: #bbb;
  font-size: 1.2rem;
}

/* Highlight column */
.cell-highlight {
  background: rgba(221, 4, 38, 0.08);
}

/*@media (max-width: 768px) {
  .pricing-table thead {
    display: none;
  }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
  }
  .pricing-table td {
    text-align: right;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
  }
  .pricing-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--navy);
  }
  .pricing-table td:first-child {
    background: var(--light);
    text-align: center;
    font-size: 1.1rem;
    border-bottom: none;
  }
}*/



/* Additional Services and Add-ons */
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2%;
}

.addon-card {
  width: 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.addon-card:hover {
  transform: translateY(-6px);
  color: var(--omnitech-red)
}

/* Software Engineering */
.carousel-container {
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-wrapper {
  position: relative;
  height: 100%;
  overflow-x: hidden; /* Fallback for no-JS smooth scrolling */
  scroll-behavior: smooth; /* Smooth scroll in modern browsers */
}

#carousel {
  position: absolute;
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: none; /* JS will add auto-scroll */
}

.carousel-item {
  flex: 0 0 auto;
  width: 8%;
  padding-left: 2.25%;
  padding-right: 2.25%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Custom PC Builds */
.custom-pc-card {
  width: 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2%;
}

.custom-pc-card-build-date {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 90%;
}



/* Get Started Call to Action */
#get-started {
  display: flex;
  justify-content: center;
  align-items: center;
}

#get-started-container {
  width: 40%;
  height: 50px;
}

#get-started-btn {
  width: 100%;
  height: 100%;
  background-color: var(--omnitech-red);
  color: var(--omnitech-white);
  border-radius: 25px;
  border: none;
  font-weight: bold;
  font-size: 125%;
}



@media screen and (max-width: 810px) {
  #another-platform-text {
    width: 50%;
  }

  .plan-card {
    min-height: 370px;
  }

  .plan-price {
    font-size: 1.6rem;
  }

  .plan-card ul li {
    font-size: 90%;
  }

  .plan-optimal-blurb {
    font-size: 80%;
  }

  #custom-plan-price {
    font-size: 1.25rem;
  }
}



@media screen and (max-width: 450px) {
  .solutions-category-info {
    line-height: 150%;
  }

  .big-card {
    flex-direction: column;
  }

  .big-card-icons {
    width: 90%;
  }

  .big-card-text {
    width: 90%;
    text-align: justify;
  }

  #another-platform-text {
    width: 90%;
    text-align: center;
    line-height: 150%;
    margin-bottom: 20px;
  }

  .big-card img, .big-card svg {
    margin-bottom: 20px;
  }

  .pricing-array {
    flex-wrap: wrap;
  }

  .plan-card {
    width: 40%;
    margin-bottom: 5%;
  }

  #maintenance-and-management {
    overflow-x: scroll;
  }

  .addon-card {
    min-height: 50px;
    text-align: center;
    justify-content: center;
    font-size: 90%;
  }

  #get-started-container {
    width: 90%;
  }
}