* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #f8f9fa, #e9ecef);
}
.top-nav-section-header {
  /* max-width: 1400px; */
  margin: 0 auto;
  background: #ffffff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.top-nav-section-logo {
  font-size: 22px;
  font-weight: 600;
  color: #007bff;
  display: flex;
  align-items: center;
}
.top-nav-section-logo i {
  margin-right: 10px;
  font-size: 26px;
}
.top-nav-section-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.top-nav-section-menu a {
  text-decoration: none;
  color: #343a40;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.top-nav-section-menu a:hover {
  color: #0056b3;
}
.top-nav-section-menu-item {
  position: relative;
}
.top-nav-section-dropdown {
  position: absolute;
  top: 25px;
  left: -450px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  gap: 20px;
  width: 580px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.top-nav-section-menu-item:hover .top-nav-section-dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.top-nav-section-dropdown-column {
  width: 30%;
  padding: 10px;
}
.top-nav-section-dropdown-column h4 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #343a40;
}
.top-nav-section-dropdown-column ul {
  list-style: none;
}
.top-nav-section-dropdown-column ul li {
  margin: 8px 0;
  font-size: 13px;
  color: #495057;
  transition: color 0.3s;
  cursor: pointer;
}
.top-nav-section-dropdown-column ul li:hover {
  color: #007bff;
}
.top-nav-section-dropdown-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 8px;
  background-color: #ffffff;
  border: 1px solid #6c757d;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s;
  width: 150px;
}
.top-nav-section-dropdown-btn:hover {
  border-color: #007bff;
  transform: translateY(-2px);
}
.top-nav-section-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #343a40;
}
.top-nav-section-sidebar {
  position: fixed;
  left: -300px;
  top: 0;
  width: 260px;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.top-nav-section-sidebar.active {
  left: 0;
}
.top-nav-section-sidebar-close {
  font-size: 24px;
  color: #007bff;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
}
.top-nav-section-sidebar a {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  color: #343a40;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.top-nav-section-sidebar a:hover {
  color: #007bff;
}
.top-nav-section-mobile-dropdown-btn {
  font-size: 16px;
  color: #007bff;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 15px;
  transition: color 0.3s;
}
.top-nav-section-mobile-dropdown-btn:hover {
  color: #0056b3;
}
.top-nav-section-sidebar .top-nav-section-dropdown {
  position: static;
  width: 100%;
  padding: 10px 0;
  box-shadow: none;
  flex-direction: column;
  display: none;
  opacity: 1;
  transform: none;
  background: #f8f9fa;
  border-radius: 5px;
}
.top-nav-section-sidebar .top-nav-section-dropdown.active {
  display: flex;
}
.know-more-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 columns */
  gap: 40px;
}

.know-more-card {
  border-radius: 10px;
  padding: 20px;
  background-color: #007bff; /* You can customize per card */
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.know-more-title {
  text-align: center;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.know-more-image {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
  border-radius: 5px;
}

.know-more-content {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.know-more-button-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.know-more-button {
  padding: 10px 20px;
  background-color: #f8f9fa;
  color: #343a40;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.know-more-button:hover {
  background-color: #e9ecef;
}
@media (max-width: 992px) {
  .know-more-section {
    grid-template-columns: 1fr; /* Stack cards on mobile */
  }
}
/* Safe Hands Section */
.safe-section-container {
  background-color: #e9ecef;
}

.safe-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.safe-left h2 {
  font-size: 18px;
  margin-bottom: 8px;
}

.safe-left h1 {
  font-size: 42px;
  font-weight: bold;
}

.safe-left h1 span {
  color: #007bff;
}

.safe-cards {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safe-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid #dee2e6;
}

.safe-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-box {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 18px;
  color: #007bff;
}

.card-content h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.card-content p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #495057;
}

.card-content button {
  background: #f8f9fa;
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.card-content button:hover {
  background: #e9ecef;
}

/* FAQ Section */
.faq-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #343a40;
}

.faq-header h2 span {
  color: #007bff;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #343a40;
  transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #007bff;
}

.faq-icon {
  font-size: 18px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon.fa-plus {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon.fa-minus {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 14px;
  color: #495057;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 10px;
}

/* Footer */
.inv-footert-container {
  padding: 60px 40px 20px;
  background-color: #343a40;
  color: #ffffff;
}

.inv-footert-top {
  text-align: center;
  margin-bottom: 50px;
}

.inv-footert-top h2 {
  font-size: 28px;
  font-weight: bold;
}

.inv-footert-top span {
  color: #007bff;
}

.inv-footert-btns {
  margin-top: 20px;
}

.inv-footert-btns button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.inv-footert-btns button:hover {
  background: #0056b3;
}

.inv-footert-btns button:nth-child(2) {
  background: #6c757d;
}

.inv-footert-btns button:nth-child(2):hover {
  background: #5a6268;
}

.inv-footert-grid {
  display: grid;
  grid-template-columns: 250px repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #495057;
}

.inv-footert-ads img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
}

.inv-footert-col h4 {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.inv-footert-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.inv-footert-col.active ul {
  max-height: 500px;
}

.inv-footert-col ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #ced4da;
  cursor: pointer;
}

.inv-footert-col ul li:hover {
  color: #007bff;
}

.inv-footert-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.inv-footert-bottom .inv-footert-select,
.inv-footert-bottom .inv-footert-connect {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.inv-footert-bottom select {
  background: #495057;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
}

.inv-footert-bottom .inv-footert-social i {
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.3s;
}

.inv-footert-bottom .inv-footert-social i:hover {
  color: #007bff;
}

.inv-footert-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 12px;
  border-top: 1px solid #495057;
}

.inv-footert-logos div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inv-footert-logos img {
  height: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-nav-section-menu {
    display: none;
  }

  .top-nav-section-toggle {
    display: block;
  }

  .top-nav-section-header {
    padding: 12px 15px;
  }

  .top-nav-section-logo {
    font-size: 20px;
  }

  .top-nav-section-logo i {
    font-size: 22px;
  }

  .know-more-section {
    flex-direction: column;
  }

  .safe-section {
    flex-direction: column;
  }

.inv-footert-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

  .inv-footert-col h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .inv-footert-col h4::after {
    /* content: ""; */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
  }

  /* .inv-footert-col.active h4::after {
    content: "";
  } */

  .inv-footert-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-section {
    padding: 30px 15px;
  }

  .faq-header h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 8px;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 20px 10px;
  }

  .faq-header h2 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 10px 6px;
  }

  .faq-icon {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }

  .faq-item.active .faq-answer {
    padding: 10px 6px;
  }
}

/* Pricing Banner */
.pricing-banner {
  background: #e9ecef;
  text-align: center;
  padding: 40px 20px 70px;
}

.pricing-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #343a40;
}

.pricing-banner p {
  font-size: 1.2rem;
  color: #495057;
  margin-top: 8px;
}

.toggle-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border-radius: 30px;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.toggle-btn button {
  border: none;
  background: none;
  font-weight: bold;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.toggle-btn .active {
  background-color: #007bff;
  color: #ffffff;
}

/* Pricing Section */
.pricing-section {
  max-width: 1400px;
  margin: -50px auto 50px;
  padding: 0 15px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.plan-card.selected {
  border: 2px solid #007bff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.plan-header {
  padding: 20px;
  background: #f8f9fa;
  font-weight: bold;
  letter-spacing: 1px;
  color: #343a40;
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0 5px;
  color: #007bff;
}

.plan-note {
  font-size: 0.9rem;
  color: #495057;
}

.plan-features {
  padding: 0 80px;
  text-align: left;
  font-size: 14px;
  color: #495057;
}

.plan-features i {
  margin-right: 6px;
  color: #007bff;
}

.start-btn {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 0 5px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.start-btn:hover {
  background-color: #0056b3;
}

.customize-link {
  font-size: 12px;
  margin-bottom: 15px;
  display: block;
  color: #495057;
  text-decoration: none;
}

.customize-link:hover {
  color: #007bff;
}

.learn-more {
  text-align: left;
  padding: 10px 80px 20px;
  font-size: 13px;
  color: #495057;
}

.learn-more a {
  color: #007bff;
  text-decoration: none;
}

.learn-more a:hover {
  text-decoration: underline;
}

/* Add-ons Section */
.addons-section {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 40px 20px;
}

.addons-left,
.addons-right {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.addons-left {
  width: 45%;
  background: linear-gradient(135deg, #ffffff, #e9ecef);
}

.addons-right {
  width: 55%;
  position: relative;
}

.addons-left h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #343a40;
}

.addons-left h2 span {
  color: #007bff;
}

.addons-item {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.addons-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.addons-item-text {
  font-size: 16px;
  font-weight: 500;
  color: #343a40;
}

.addons-item-text .addons-price {
  font-size: 20px;
  font-weight: 600;
  color: #007bff;
  margin-right: 5px;
}

.addons-item-text .addons-cycle {
  font-size: 14px;
  color: #495057;
}

.addons-plan-toggle {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 8px;
}

.addons-plan-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.addons-plan-tab {
  cursor: pointer;
  padding: 12px;
  font-weight: 500;
  text-align: center;
  flex: 1;
  border-bottom: 3px solid transparent;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
  color: #343a40;
}

.addons-plan-tab.active {
  color: #007bff;
  border-color: #007bff;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.addons-plan-tab small {
  display: block;
  font-weight: normal;
  font-size: 13px;
  color: #495057;
}

.addons-plan-toggle label {
  font-size: 14px;
  font-weight: 500;
  color: #343a40;
}

.addons-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.addons-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.addons-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.addons-slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .addons-slider {
  background-color: #007bff;
}

input:checked + .addons-slider::before {
  transform: translateX(20px);
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.addons-table th,
.addons-table td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
}

.addons-table th {
  font-weight: 600;
  color: #343a40;
}

.addons-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.addons-qty-controls button {
  width: 28px;
  height: 28px;
  border: none;
  background: #007bff;
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.addons-qty-controls button:hover {
  background: #0056b3;
}

.addons-total-section {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addons-total-section p {
  font-size: 18px;
  font-weight: 500;
  color: #343a40;
}

.addons-total-amount {
  font-size: 26px;
  font-weight: 600;
  color: #007bff;
}

.addons-get-in-touch {
  background: #007bff;
  color: #ffffff;
  padding: 14px;
  border: none;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.addons-get-in-touch:hover {
  background: #0056b3;
}

.addons-note {
  margin-top: 10px;
  font-size: 12px;
  color: #495057;
  text-align: center;
}

.addons-add-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #007bff;
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}

.addons-add-btn:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-banner h1 {
    font-size: 1.8rem;
  }

  .pricing-banner p {
    font-size: 1rem;
  }

  .plan-card {
    margin: 0 auto;
    max-width: 90%;
  }

  .plan-price {
    font-size: 1.8rem;
  }

  .plan-features {
    font-size: 13px;
  }

  .start-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .addons-section {
    flex-direction: column;
    padding: 20px;
  }

  .addons-left,
  .addons-right {
    width: 100%;
  }

  .addons-left h2 {
    font-size: 24px;
  }

  .addons-item-text .addons-price {
    font-size: 18px;
  }

  .addons-plan-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .addons-plan-tab {
    flex: 1 1 45%;
  }

  .addons-add-btn {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 0 10px;
  }

  .plan-card {
    max-width: 100%;
  }

  .plan-header {
    font-size: 14px;
  }

  .plan-price {
    font-size: 1.6rem;
  }

  .plan-note {
    font-size: 0.8rem;
  }

  .addons-left h2 {
    font-size: 20px;
  }

  .addons-item-text {
    font-size: 14px;
  }

  .addons-item-text .addons-price {
    font-size: 16px;
  }

  .addons-item-text .addons-cycle {
    font-size: 12px;
  }

  .addons-plan-tab {
    flex: 1 1 100%;
  }

  .addons-total-amount {
    font-size: 22px;
  }
}

/* qr-main-container */
           .qr-main-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .qr-header {
            color: #fff;
            margin-bottom: 20px;
        }
        .qr-left,
        .qr-right {
            background: rgba(26, 26, 26, 0.95);
            padding: 30px;
            flex: 1 1 400px;
            max-width: 600px;
            transition: transform 0.3s ease;
        }
        .qr-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .qr-tab {
            flex: 1;
            padding: 12px;
            text-align: center;
            background: #333;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #a0d911;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .qr-tab:hover {
            background: #444;
            transform: scale(1.05);
        }
        .qr-tab.active {
            background: linear-gradient(45deg, #000000, #a0d911);
            color: #fff;
            border: 2px solid #fff;
        }
        .qr-group {
            margin-bottom: 25px;
            flex: 1;
            min-width: 150px;
        }
        .qr-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
            color: #fff;
        }
        .qr-group input[type="text"],
        .qr-group input[type="email"],
        .qr-group textarea,
        .qr-group select {
            width: 100%;
            padding: 5px;
            font-size: 14px;
            border-radius: 10px;
            border: 1px solid #555;
            background: #222;
            color: #fff;
            transition: border-color 0.3s ease;
            height: 36px;
        }
        .qr-group input[type="text"]:focus,
        .qr-group input[type="email"]:focus,
        .qr-group textarea:focus,
        .qr-group select:focus {
            border-color: #a0d911;
            outline: none;
        }
        .qr-group input[type="file"] {
            padding: 8px;
            width: 100%;
            color: #fff;
        }
        .qr-group input[type="file"]::file-selector-button {
            background: #444;
            color: #fff;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .qr-group input[type="file"]::file-selector-button:hover {
            background: #555;
        }
        .Generate-qy-btn {
            padding: 14px 24px;
            border: none;
            border-radius: 10px;
            color: #000000;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .Generate-qy-btn:hover {
            transform: translateY(-2px);
        }
        .qr-qr-container {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .qr-qr-box {
            background: #ffffff !important;
            border-radius: 20px;
            padding: 25px;
            margin-top: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            display: inline-block;
            position: relative;
            animation: fadeIn 0.5s ease;
            isolation: isolate;
        }
        .qr-qr-box canvas {
            display: block;
            max-width: 100%;
        }
        .qr-qr-box img#qr-logo {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 10px;
            border: 2px solid #000;
            pointer-events: none;
        }
        .qr-qr-box #qr-text {
            margin-top: 15px;
            font-weight: 600;
            font-size: 18px;
            color: #000;
        }
        .qr-footer-note {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }
        .qr-thumbs {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 25px;
            flex-wrap: nowrap;
        }
        .qr-thumbs-column {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .qr-thumb-qr {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 5px;
            padding: 5px;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .qr-options {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
            width: 100%;
        }
        .qr-options button {
            padding: 10px 15px;
            background: linear-gradient(45deg, #000000, #a0d911);
            color: #fff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            min-width: 100px;
        }
        .qr-options button:hover {
            background: linear-gradient(45deg, #333333, #87b214);
            transform: translateY(-2px);
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .frame1 {
            border: 10px solid #000000; /* Black Solid */
        }
        .frame2 {
            border: 10px dashed #a0d911; /* Green Dashed */
        }
        .frame3 {
            border: 10px dotted #ffffff; /* White Dotted */
        }
        .frame4 {
            border: 10px solid #ff0000; /* Red Solid */
        }
        .frame5 {
            border: 10px dashed #0000ff; /* Blue Dashed */
        }
        .frame6 {
            border: 10px dotted #00ff00; /* Green Dotted */
        }
        .frame7 {
            border: 10px solid #800080; /* Purple Solid */
        }
        .frame8 {
            border: 10px dashed #ffa500; /* Orange Dashed */
        }
        .frame9 {
            border: 10px dotted #ffff00; /* Yellow Dotted */
        }
        .qr-footer {
            background: rgba(26, 26, 26, 0.95);
            padding: 10px;
            width: 100%;
            max-width: 1200px;
            text-align: center;
            border-radius: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin: 0 auto;
            margin-top: 30px;
            color: #fff;
        }
        .qr-footer .qr-rating {
            color: #a0d911;
            font-weight: 600;
        }
        .qr-footer .qr-sign-up {
            background: #34a853;
            color: #fff;
            padding: 8px 15px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
        }
        .qr-footer .qr-sign-up:hover {
            background: #2e9447;
        }
        .qr-display-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .qr-thumbs-container {
            display: flex;
            gap: 20px;
            flex-wrap: nowrap;
        }
        .qr-inputs-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            width: 100%;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .qr-main-container {
                flex-direction: row;
            }
            .qr-tabs {
                gap: 8px;
            }
            .qr-tab {
                font-size: 13px;
                padding: 10px;
            }
            .qr-options {
                flex-direction: column;
            }
            .qr-options button {
                width: 100%;
            }
            /* .qr-thumbs-container {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                flex-wrap: nowrap;
                gap: 10px;
                overflow-x: auto;
            } */
            .qr-thumbs-container .qr-thumb-qr {
                flex: 0 0 24%;
                max-width: 100%;
            }
            .qr-inputs-container {
                flex-direction: column;
                align-items: center;
            }
            .qr-group {
                width: 100%;
                max-width: 350px;
            }
        }
/* #.grow-section */

    .grow-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 1400px;
      margin: auto;
    }

    .grow-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .grow-section h2 span {
      text-decoration: underline;
      text-decoration-color: #3fa9f5;
      text-decoration-thickness: 4px;
    }

    .grow-section p {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 40px;
    }

    .grow-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .grow-card {
      background: #f9fafb;
      border-radius: 8px;
      padding: 20px;
      text-align: left;
      transition: 0.3s;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .grow-card:hover {
      background: #f0f2f5;
    }

    .grow-card img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .grow-card h3 {
      font-size: 1.1rem;
      margin: 0;
      font-weight: 600;
      color: #111;
    }

    .grow-card p {
      margin: 5px 0 0;
      font-size: 0.9rem;
      color: #666;
    }

    @media (max-width: 768px) {
      .grow-section h2 {
        font-size: 2rem;
      }
      .grow-section p {
        font-size: 1rem;
      }
    }

    /* being orgnize section  */
    .organized-section {
      text-align: center;
      padding: 80px 20px;
    }

    .organized-section h2 {
      font-size: 5rem;
      font-weight: 600;
      font-family: "Brush Script MT", cursive;
      color: #111;
      margin-bottom: 40px;
      line-height: 1.3;
      position: relative;
      display: inline-block;
    }

    /* Yellow lines around text */
    .organized-section h2::before,
    .organized-section h2::after {
      content: "✨";
      font-size: 2rem;
      color: #f4b400;
      position: absolute;
      top: -25px;
    }
    .organized-section h2::before {
      left: -50px;
    }
    .organized-section h2::after {
      right: -50px;
    }

    .organized-btn {
      background: #6a436f;
      color: #fff;
      font-weight: 600;
      padding: 14px 30px;
      border-radius: 6px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    .organized-btn:hover {
      background: #56355b;
    }

    .organized-sub {
      margin-top: 15px;
      font-size: 0.95rem;
      color: #444;
    }

    .organized-sub span {
      display: block;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .organized-section h2 {
        font-size: 2rem;
      }
      .organized-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
      }
      .organized-sub {
        font-size: 0.85rem;
      }
    }

    /* quality control section  */
        .quality-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 80px 0px;
      /* background: #c1e0ff; */
       max-width: 1400px;
       margin: 0 auto;
    }

    .quality-section img {
      /* max-width: 400px; */
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .quality-text {
      max-width: 600px;
    }

    .quality-text h2 {
      font-size: 2.3rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 20px;
      /* font-family: "Brush Script MT", cursive; */
      color: #111;
    }

    /* underline effect */
    .quality-text h2 span {
      position: relative;
      display: inline-block;
    }
    .quality-text h2 span::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 6px;
      background: #9aacfc;
      left: 0;
      bottom: 4px;
      z-index: -1;
      border-radius: 3px;
    }

    .quality-text p {
      font-size: 1rem;
      color: #444;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .quality-text p strong {
      font-weight: 600;
      color: #000;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .quality-section {
        flex-direction: column;
        text-align: center;
      }
      .quality-text {
        max-width: 100%;
      }
      .quality-text h2 {
        font-size: 2rem;
      }
    }
