body {
  font-family: "Roboto", sans-serif;
  margin-top: 80px; /* for fixed header */
  color: #222;
}

.btn {
  border-radius: 50px; /* Oval / pill shape */
  padding: 10px 28px; /* Horizontal emphasis */
  font-weight: 500;
}

/* Primary button */
.btn-primary {
  background-color: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* HEADER */
.header-nav {
  padding: 15px 0;
}

.logo {
  height: 36px;
  width: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #222;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 8px;
  border: 1px solid #eaeaea;
  padding: 10px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background: #f5f8ff;
  color: #0d6efd;
}

/* HERO */
.hero-section {
  background: url("../images/hero.jpg") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section h1 span {
  color: #6ea8ff;
}

/* INFO STRIP */
.info-strip {
  background: #001f3f; /* deep blue like design */
  padding: 50px 0;
  color: #ffffff;
}

.info-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  border-left: 7px solid #3b52c3;
  padding-left: 20px;
}

.info-text {
  font-size: 22px;
  color: #fff;
  padding-left: 100px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.info-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 8px 26px;
  border-radius: 50px;
  background: #5467fb;
  margin-top: 20px;
  margin-left: 20px;
}

.info-btn:hover {
  background: #ffffff;
  color: #0a2b4f;
}

.section-tag {
  font-size: 22px;
  color: #034080;
  border-bottom: 2px solid #034080;
  margin-bottom: 10px;
  display: inline-block;
}

/* OUR SOLUTIONS */
.solutions-section {
  padding: 90px 0;
  background: #ffffff;
}

.solutions-title {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.solution-box {
  border: 1px solid #e5e5e5;
  padding: 40px 30px 22px;
  height: 100%;
  text-align: left;
  position: relative;
  transition: 0.3s ease;
}

.solution-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 90%;
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4f7fb;
  margin: 0 auto 40px auto;
  font-size: 30px;
  text-align: center;
}

/* Card spacing tweak */
.solution-box h5 {
  margin-top: 5px;
}

.solution-arrow {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 22px;
  color: #0d6efd;
  background: url("../images/arrow_btn.png") center no-repeat #034080;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-size: 40%;
}

.solution-box:hover {
  border-color: #0d6efd;
}

.solutions-link {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.solutions-link:hover {
  text-decoration: underline;
}

/* WHY CHOOSE US */
.why-choose-section {
  background: #0b0b0b;
  padding: 90px 0;
  color: #ffffff;
}

.why-choose-section .section-tag {
  color: #5467fb;
  border-color: #5467fb;
}

.div-img-container {
  display: flex;
  width: 100%;
  padding: 0 0 0 25px;
}

.why-choose-section-right .div-img {
  width: 50%;
}

.why-choose-section-right .div-img img {
  width: 250px;
  height: auto;
  border-radius: 20px;
}

.why-choose-section-right .div-img-1 {
  margin-top: 35px;
}

.why-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
  max-width: 480px;
}

/* Accordion */
.why-accordion .accordion-item {
  background: #3a3939;
  border: none;
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 8px;
}

.why-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  padding: 10px 0;
  font-weight: 500;
  box-shadow: none;
}

.why-accordion .accordion-button::after {
  filter: invert(1);
}

.why-accordion .accordion-button:not(.collapsed) {
  color: #fff;
}

.why-accordion .accordion-body {
  color: #b5b5b5;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
}

/* Image */
.why-image {
  max-width: 90%;
  border-radius: 12px;
}

/* FOOTER */
.footer {
  background: #ffffff;
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-logo {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-text {
  color: #555;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-divider {
  margin: 40px 0 20px;
  border-color: #eaeaea;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* INNER HERO */
.inner-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/hero.jpg") center/cover no-repeat;
  padding: 120px 0 90px;
  color: #ffffff;
}

.warehouse_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/wms_banner.jpg") center/cover no-repeat;
}

.birst_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/birst_banner.jpg") center/cover no-repeat;
}

.ion_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/ion_banner.jpg") center/cover no-repeat;
}

.edi_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/edi_banner.jpg") center/cover no-repeat;
}

.invoice_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/invoice_banner.jpg") center/cover no-repeat;
}

.label_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/label_banner.jpg") center/cover no-repeat;
}

.contact_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/contact_banner.jpg") center/cover no-repeat;
}

.pricing_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/pricing_banner.jpg") center/cover no-repeat;
}

.portal_banner {
  background: linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../images/portal_banner.jpg") center/cover no-repeat;
}

.inner-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.inner-hero p {
  max-width: 620px;
  font-size: 15px;
  opacity: 0.9;
}

/* KEY FEATURES (reuse solution cards) */
.solution-detail .solutions-section {
  background: #f8f9fc;
}

/* HOW IT WORKS */
.step-box {
  background: #f8f9fc;
  padding: 35px;
  border-radius: 12px;
  height: 100%;
}

.step-box span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 10px;
}

.step-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 14px;
  color: #666;
}

/* BENEFITS */
.benefits-section {
  padding: 80px 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #333;
}

.benefits-list i {
  color: #0d6efd;
  margin-right: 8px;
}

/* MOBILE TWEAKS */
@media (max-width: 991px) {
  .inner-hero {
    padding: 90px 0 70px;
  }

  .inner-hero h1 {
    font-size: 32px;
  }
}
