/*======= breadcrumbs======*/
.breadcrumbs {
      margin-left: 10px;;
    }
    .breadcrumb li::after {
      content: " > ";
      margin-left: 5px;
    }
     .breadcrumb li {
       margin-bottom: -10px;
    }
    .breadcrumb li:last-child::after {
      content: "";
       margin-left: 10px;
        margin-top: -30px;
    }
    .breadcrumb a {
      text-decoration: none;
      color: blue;
    }  
    @media(max-width: 768px){
.breadcrumb {
      list-style: none;
      display: flex;
      margin-top: -10px;
      margin-bottom: 10px;
      padding: 0px;
      margin-left: 10px;;
    }
    }
/*======= text styles======*/
 #text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
margin-top: 100px;
margin-bottom: 50px;
}
 #text h3 {
    text-align: left;
}
 #text a {
    color: blue;
}
@media (max-width: 768px) {
 #text {
    width: 90%;
}
}
/*======= Contact Us======*/
 .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }
    .contact-form label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .contact-form .honeypot {
      display: none;
    }
    .contact-form button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #007BFF;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .message {
      margin-top: 20px;
      padding: 10px;
      border-radius: 4px;
      display: none;
    }
    .message.success {
      background-color: #d4edda;
      color: #155724;
    }
    .message.error {
      background-color: #f8d7da;
      color: #721c24;
    }
/*======= FAQs======*/
.faq-item {
      border-bottom: 1px solid #ccc;
      padding: 15px 0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: bold;
    }
    .faq-answer {
      display: none;
      padding-top: 10px;
      color: #555;
    }
    .toggle-btn {
      font-size: 20px;
      transition: transform 0.3s;
    }
    .active .toggle-btn {
      transform: rotate(45deg);
    }
/* ===== Reset & Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
#main-content{
max-width: 800px;
text-align: left !important;
margin: 0 auto;
}
/*back to top*/
#backToTop {
position: fixed;
      right: 20px;
      bottom: 20px;
      background: #007bff;
      color: #fff;
      width: 50px;
      height: 50px;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      border-radius: 50%;
}
/* ===== Header ===== */
header {
  background: #003366; /* Deep blue header */
  color: #fff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
nav {
  position: relative;
}
/* Desktop Menu */
.desktop-menu {
  display: flex;
  gap: 20px;
}
.desktop-menu li {
  font-size: 1rem;
  font-weight: 500;
}
.desktop-menu li a {
  color: #fff;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 60px; /* Adjust according to header height */
  left: 0;
  width: 100%;
  background: transparent; /* No background color */
  z-index: 1100;
  text-align: center;
  padding: 30px 0;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu {
  margin: 0 auto;
  display: inline-block;
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 6px;
  padding: 20px 0;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.mobile-menu ul li {
  font-size: 1.2rem;
  font-weight: 500;
  color: #003366;
}
.mobile-menu ul li a {
  color: #003366;
}

/* ===== Hero Section ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  align-items: center;
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hero-text {
  padding: 20px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #003366;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
text-align: left;
}
.cta-button {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #0056b3;
}

/* ===== Printer Animation Section ===== */
.animation-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
.printer {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 380px;
  height: 250px;
  background: linear-gradient(145deg, #666, #333);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
  transform: translateX(-50%);
}
.printer .lid {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 50px;
  background: linear-gradient(145deg, #555, #222);
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}
.printer .output {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 30px;
  background: #ccc;
  border: 2px solid #888;
  border-radius: 3px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}
.printer .tray {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 30px;
  background: #444;
  border-radius: 3px;
}
.card-container {
  position: absolute;
  left: 50%;
  width: 280px;
  height: 180px;
  margin-left: -140px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(120px) scale(0.8);
  animation: feedPrint 8s ease-in-out infinite;
}
.card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: flipCard 8s ease-in-out infinite;
}
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  padding: 12px;
  font-size: 12px;
}
.card-face.front {
  background: #34495e;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-face.front .profile {
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.card-face.front .info {
  font-size: 12px;
  color: #f0f0f0;
}
.card-face.back {
  background: #16a085;
  color: #fff;
  padding: 12px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-face.back .barcode {
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(90deg, #000 0, #000 2px, transparent 2px, transparent 4px);
  margin-bottom: 10px;
}
.card-face.back .info {
  font-size: 12px;
  color: #f0f0f0;
}
.card-face.back .signature {
  border-top: 1px solid #fff;
  text-align: right;
  font-style: italic;
  font-size: 12px;
  padding-top: 5px;
}

@keyframes feedPrint {
  0% {
    transform: translateY(120px) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translateY(80px) scale(0.9);
  }
  30% {
    transform: translateY(40px) scale(0.95);
  }
  45% {
    transform: translateY(0px) scale(1);
  }
  65% {
    transform: translateY(0px) scale(1);
  }
  80% {
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0.8);
  }
}
@keyframes flipCard {
  0% {
    transform: rotateY(0deg);
  }
  45% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  80% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

/* ===== Additional Sections ===== */
.tools {
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin: 20px;
      flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
    }

    /* Style for each box */
    .tools-box {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 20px;
      width: 300px;
      margin: 10px;
      text-align: center;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .tools-box:hover {
      transform: scale(1.05);
    }

    /* Style for the link */
    .tools-box a {
      text-decoration: none;
      color: #007BFF;
      font-size: 16px;
      font-weight: bold;
    }

    .box a:hover {
      color: #0056b3;
    }
section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #003366;
}
section p {
  font-size: 1rem;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

/* ===== Footer ===== */
footer {
  background: #003366; /* Deep blue footer matching header */
  color: #fff;
  padding: 20px;
  border-top: 1px solid #002244;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.9rem;
  color: #fff;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #cce5ff;
}
.footer-copy {
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text,
  .hero-animation {
    margin: 0 auto;
  }
  .desktop-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
.printer {
  width: 280px;
}
.printer .lid {
  width: 275px;
}
.printer .output {
  width: 260px;
}
.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
}
