/* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.top-bar {
  background-color: #000000;
  color: #ffffff;
  font-size: 13px;
  padding: 8px 20px;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact span {
  margin-right: 20px;
  font-size: 17px;
}

.top-contact i {
  margin-right: 5px;
}

.top-social a {
  margin-left: 15px;
  font-size: 17px;
}

.top-social a:hover {
  opacity: 1;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
}

.logo .orange-e {
  color: #ff6a00;
  font-style: italic;
}

.logo .blue-pos {
  color: #0e2e50;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  background: #0e2e50;
  color: #fff;
  padding: 1px 5px;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 2px;
  margin-top: -2px;
  text-align: center;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: #555;
  font-weight: 500;
  font-size: 17px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #0e2e50;
}

.btn-demo {
  background-color: #ff6a00;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: bold !important;
  letter-spacing: 0.5px;
}

.btn-demo:hover {
  background-color: #e05d00;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #0e2e50;
  cursor: pointer;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-subtext {
  font-size: 16px;
  opacity: 0.7;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.main-footer {
  background-color: #333333;
  color: #dfdfdf;
  padding-top: 50px;
  font-size: 16px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col p {
  line-height: 1.6;
  color: #ffffff;
  font-size: 17px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 17px;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.contact-info i {
  color: #ff6a00;
  margin-top: 3px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #ffffff;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-social a:hover {
  background-color: #ff6a00;
}

/* Bottom bar copyright */
.footer-bottom {
  background-color: #000000;
  padding: 20px;
  font-size: 13px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom .copyright {
  color: #ffffff;
  font-size: 16px;
}

.footer-legal-links a {
  margin-left: 20px;
  color: #ffffff;
  font-size: 16px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6a00;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2000;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .btn-demo {
    margin-top: 15px;
    display: inline-block;
    width: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links a {
    margin: 0 10px;
  }
}

.logo-box {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 79px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-logo {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-video {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}

.menu-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 1100;
  border: 1px solid #eaeaea;
}

.dropdown-menu-list a {
  color: #333333 !important;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px solid #f5f5f5;
}

.nested-dropdown {
  position: relative;
}

.nested-menu-list {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 5px 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1200;
  border: 1px solid #eaeaea;
}

@media (min-width: 769px) {
  /* Level 1 open on hover */
  .menu-item-dropdown:hover > .dropdown-menu-list {
    display: block;
  }

  .nested-dropdown:hover .nested-menu-list {
    display: block;
  }

  .nested-dropdown:hover > .nested-toggle {
    background-color: #ff6a00;
    color: #ffffff !important;
  }

  .nested-dropdown:hover > .nested-toggle .flyout-arrow {
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    display: none;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-item-dropdown,
  .nested-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-menu a,
  .dropdown-toggle,
  .nested-toggle {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
  }

  .dropdown-menu-list,
  .nested-menu-list {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .dropdown-menu-list {
    background-color: #fcfcfc;
  }

  .nested-menu-list {
    background-color: #f4f6f9;
  }

  .nested-menu-list a {
    padding-left: 0;
    justify-content: center !important;
    background-color: #ecf0f5;
    font-size: 13px;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-menu-list {
    display: block;
  }

  .nested-dropdown.show-nested-dropdown > .nested-menu-list {
    display: block;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-toggle i,
  .nested-dropdown.show-nested-dropdown > .nested-toggle .flyout-arrow {
    transform: rotate(180deg);
  }

  .flyout-arrow {
    transform: rotate(90deg);
  }

  .btn-demo {
    margin: 15px auto 5px auto;
    display: inline-block !important;
    width: 80% !important;
    border-bottom: none !important;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #0e2e50;
    cursor: pointer;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    display: none;
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a,
  .menu-item-dropdown,
  .nested-dropdown {
    width: 100%;
    text-align: center;
    display: block;
  }

  .nav-menu a,
  .dropdown-toggle,
  .nested-toggle {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    color: #333333;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    gap: 8px;
  }

  .dropdown-menu-list,
  .nested-menu-list {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .dropdown-menu-list {
    background-color: #fcfcfc;
  }
  .dropdown-menu-list a {
    background-color: #f8fafd;
    font-size: 15px;
    padding: 12px 0;
  }

  .nested-menu-list {
    background-color: #f1f4f8;
  }
  .nested-menu-list a {
    background-color: #ebf0f6;
    font-size: 14px;
    padding: 11px 0;
    color: #555555 !important;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-menu-list {
    display: block;
  }

  .nested-dropdown.show-nested-dropdown > .nested-menu-list {
    display: block;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-toggle i,
  .nested-dropdown.show-nested-dropdown > .nested-toggle .flyout-arrow {
    transform: rotate(180deg);
  }

  .flyout-arrow {
    transform: rotate(90deg);
    font-size: 12px;
  }

  .btn-demo {
    margin: 15px auto 5px auto !important;
    display: inline-block !important;
    width: 85% !important;
    background-color: #ff6a00;
    color: #ffffff !important;
    border-radius: 4px;
    font-weight: bold;
    border-bottom: none !important;
  }
}

@media (max-width: 768px) {
  .dropdown-menu-list,
  .nested-menu-list {
    display: none !important;
    position: static !important;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-menu-list {
    display: block !important;
  }

  .nested-dropdown.show-nested-dropdown > .nested-menu-list {
    display: block !important;
  }

  .menu-item-dropdown.show-mobile-dropdown > .dropdown-toggle i {
    transform: rotate(180deg);
  }
}

.site-main-content {
  background-color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.hero-section {
  background-color: #012654;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text-side {
  flex: 1;
  text-align: left;
}

.hero-text-side h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text-side .highlight-text {
  color: #ff6a00;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e6ed;
}

.hero-tagline {
  font-size: 14px;
  color: #a0aec0;
  margin-bottom: 30px;
}

.hero-btn-primary {
  display: inline-block;
  background-color: #ff6a00;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.hero-btn-primary:hover {
  background-color: #e05d00;
}

.hero-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-video-wrapper {
  width: 100%;
  max-width: 580px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-video-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.products-showcase-section {
  padding: 80px 20px;
  background-color: #f7f6f4;
  display: flex;
  justify-content: center;
}

.section-container {
  max-width: 1200px;
  width: 100%;
}

.showcase-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.showcase-card {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.product-title {
  font-size: 22px;
  color: #0f2a4a;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 14px;
  color: #718096;
  margin-bottom: 20px;
}

.product-img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.kiosk-box img {
  max-height: 400px;
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text-side {
    text-align: center;
  }

  .showcase-grid {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 15px;
  }

  .hero-text-side h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .products-showcase-section {
    padding: 50px 15px;
  }

  .showcase-grid {
    flex-direction: column;
    gap: 50px;
  }

  .showcase-card {
    width: 100%;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 30px;
  }

  .showcase-card:last-child {
    border-bottom: none;
  }
}

.poscraft-cta-banner {
  background-color: #000000; /* Deep black background */
  position: relative;
  padding: 80px 20px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

.cta-overlay-glow {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

.cta-banner-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-main-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-sub-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 35px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-action-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-cta-demo {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-demo:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .poscraft-cta-banner {
    padding: 60px 15px;
  }

  .cta-main-title {
    font-size: 32px;
  }

  .cta-sub-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .btn-cta-demo {
    width: 80%;
    padding: 12px 0;
    text-align: center;
  }

  .cta-overlay-glow {
    width: 300px;
    height: 250px;
    bottom: -100px;
    left: -50px;
  }
}

.poscraft-features-section {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Arial, sans-serif;
  width: 100%;
}

.features-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.features-image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
}

.kiosks-display-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.features-text-side {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.main-heading-box h2 {
  font-size: 32px;
  color: #4a4a4a;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.main-heading-box .purple-text {
  color: #ff6a00;
}

.main-intro-text {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 40px;
}

.feature-row-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-row-item:last-child {
  margin-bottom: 0;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border: 2px solid #ff6a00;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: transparent;
}

.feature-icon-box i {
  color: #ff6a00;
  font-size: 20px;
}

.feature-info-content h3 {
  font-size: 18px;
  color: #333333;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.feature-info-content p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .features-container {
    gap: 40px;
  }

  .main-heading-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .poscraft-features-section {
    padding: 50px 15px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .features-image-side {
    position: static;
    width: 100%;
    max-width: 400px;
  }

  .features-text-side {
    width: 100%;
  }

  .main-heading-box h2 {
    font-size: 24px;
    text-align: center;
  }

  .main-intro-text {
    text-align: center;
  }

  .feature-row-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.sectors-section {
  padding: 60px 20px;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

.sectors-container {
  max-width: 1200px;
  width: 100%;
}

.sectors-main-title {
  font-size: 36px;
  color: #222222;
  font-weight: 600;
  text-align: left;
  margin-bottom: 40px;
  text-align: center;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 50px;
}

.sector-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sector-card-link {
  text-decoration: none;
  display: block;
}

.sector-image-box {
  width: 100%;
  height: 180px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #f5f5f5;
}

.sector-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-image-box img {
  transform: scale(1.05);
}

.sector-title {
  font-size: 20px;
  color: #ff6a00;
  font-weight: 500;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.sector-card-link:hover .sector-title {
  color: #1d4ed8;
}

.sector-desc {
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    row-gap: 40px;
  }

  .sectors-main-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .sectors-section {
    padding: 40px 15px;
  }

  .sectors-main-title {
    font-size: 34px;
    text-align: center;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }

  .sector-image-box {
    height: 200px;
  }

  .sector-title,
  .sector-desc {
    text-align: left;
  }
}
