/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.top-header {
  background: #fff;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand h1 {
  font-size: 24px;
  color: #222;
}

.brand span {
  font-size: 12px;
  color: #666;
  display: block;
}

.mobile-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.top-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  padding: 10px 0;
  justify-content: center;
  border-top: 1px solid #ddd;
  background-color: #f1f1f1;
}

.top-menu a {
  color: #333;
}

.main-nav {
  margin-top: 15px;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.nav-list > li > a {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-radius: 5px;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown-content li a:hover {
  background: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ffc107;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* HOMEPAGE SECTIONS */
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #e7f1ff;
  padding: 40px 20px;
  gap: 20px;
  margin-top: 20px;
}

.banner-text {
  flex: 1 1 400px;
}

.banner-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

.btn {
  background: #0078d7;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #005a9e;
}

.banner-image {
  flex: 1 1 400px;
  text-align: center;
}

.banner-image img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
  object-fit: contain;
}

.certification {
  background: #dff4e6;
  border-left: 5px solid #4caf50;
  padding: 20px;
  /* margin: 20px 0 30px;  */
  font-size: 16px;
  line-height: 1.5;
}

.best-seller {
  text-align: center;
  padding: 40px 0;
}

.best-seller h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}


/* Best Seller Products Section */
.best-seller {
  text-align: center;
  padding: 40px 0;
}

.best-seller h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.best-seller h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #0078d7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 150px 145px 150px rgba(0, 0, 0, 0.05);
  border: 1px solid #3f3d3d;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff5722;
  color: white;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.product-category {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.partner-badge {
  display: inline-block;
  background: #e7f1ff;
  color: #0078d7;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  min-height: 40px;
}

.price {
  margin-bottom: 15px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 10px;
}

.discounted-price {
  color: #ff5722;
  font-size: 18px;
  font-weight: bold;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: #0078d7;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.add-to-cart:active {
  animation: clickEffect 0.4s ease;
}

@keyframes clickEffect {
  0% {
    transform: scale(1);
    background-color: #0078d7;
  }
  50% {
    transform: scale(1.1);
    background-color: #005bb5;
  }
  100% {
    transform: scale(1);
    background-color: #0078d7;
  }
}

/* Ripple Effect */
.add-to-cart::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.add-to-cart:active::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
  }
}

/* Office Suite Section */
.office-suite {
  padding: 50px 0;
  background: #f8fafc;
  margin: 50px 0;
  text-align: center;
}

.suite-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.office-suite h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.office-suite h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #0078d7;
}

.suite-features {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-top: 20px;
}

.suite-features p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.suite-features p:last-child {
  margin-bottom: 0;
}

.suite-features i {
  color: #4caf50;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 3px;
}

/* === Card Container === */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-section {
    padding: 40px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

.feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /* border: 6px solid ; */
}

.feature-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.feature-content h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-content ul {
    padding-left: 20px;
    list-style-type: disc;
    color: #222;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
        text-align: center;
    }

    .feature-content {
        max-width: 100%;
    }

    .feature-content ul {
        text-align: left;
        margin: 0 auto;
        max-width: 90%;
    }
}



/* General styles */
.how-it-works {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.how-it-works h2 {
    font-size: 28px;
    color: #1a2a4a;
    margin-bottom: 30px;
}

/* Flex layout for step container */
.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Image box */
.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Text section */
.step-details {
    max-width: 400px;
    text-align: left;
}

.step-number {
    background-color: #e9f1ff;
    color: #1a2a4a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-details h3 {
    font-size: 20px;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.step-details p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-details {
        text-align: center;
    }

    .step-number {
        margin: 0 auto 10px auto;
    }
}

@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 22px;
    }

    .step-details h3 {
        font-size: 18px;
    }

    .step-details p {
        font-size: 14px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.reviews-info {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #1a2a4a;
}

.reviews-info h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a2a4a;
}

.review-section {
    margin-bottom: 30px;
}

.review-section h3 {
    font-size: 20px;
    color: #1a2a4a;
    margin-bottom: 10px;
}

.review-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.fox-img{
    text-align: center;
}



.site-footer {
    background-color: #0b1629;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 5px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    font-size: 14px;
    line-height: 1.6;
    color: #dddddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #bbbbbb;
    margin-bottom: 10px;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #888888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        max-width: 500px;
    }

    .footer-col ul {
        padding-left: 0;
    }
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .reviews-info {
        padding: 30px 15px;
    }

    .reviews-info h2 {
        font-size: 24px;
    }

    .review-section h3 {
        font-size: 18px;
    }

    .review-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .reviews-info h2 {
        font-size: 20px;
    }

    .review-section h3 {
        font-size: 16px;
    }

    .review-section p {
        font-size: 14px;
    }
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .office-suite {
    padding: 40px 20px;
    margin: 30px 0;
  }
  
  .office-suite h2 {
    font-size: 24px;
  }
  
  .suite-features {
    padding: 20px;
  }
  .fox-img{
    max-width: 100%;
}
}

@media (max-width: 480px) {
  .office-suite h2 {
    font-size: 22px;
  }
  
  .suite-features p {
    font-size: 15px;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .best-seller h2 {
    font-size: 24px;
  }
}


/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .top-menu {
    justify-content: space-around;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    margin-top: 0;
    padding: 80px 20px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
  }

  .dropdown-content.show {
    display: block;
  }

  .dropdown > a i {
    transition: transform 0.3s;
  }

  .header-wrapper {
    padding-bottom: 15px;
  }

  .brand {
    flex: 1;
  }

  .cart-icon {
    position: absolute;
    top: 15px;
    right: 60px;
  }

  .top-menu {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 8px;
    display: none;
  }

  .banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .banner-text h2 {
    font-size: 20px;
  }

  .certification {
    margin: 20px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand h1 {
    font-size: 20px;
  }

  .cart-icon {
    right: 50px;
  }

  .banner-text h2 {
    font-size: 18px;
  }
}

.authrs-wrapper {
  background-color: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.authrs-content {
  max-width: 1000px;
  margin: 0 auto;
}

.authrs-heading {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #2c3e50;
}

.authrs-box {
  margin-bottom: 30px;
}

.authrs-subheading {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 10px;
}

.authrs-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.authrs-strip {
  background-color: #0056b3;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 15px 10px;
  /* gap: 15px; */
}

.authrs-strip-item {
  flex: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.sus-para{
    margin: 40px;
    padding: 40px;
}
.authrs-wrapper h1{
    margin: 0px 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .authrs-strip {
    flex-direction: column;
  }

  .authrs-strip-item {
    justify-content: center;
    padding: 10px 0;
    font-size: 14px;
  }

  .authrs-heading {
    text-align: center;
    font-size: 22px;
  }

  .authrs-content {
    padding: 0 10px;
  }
}


.affiliate-program {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.affiliate-container {
  max-width: 1200px;
  margin: 0 auto;
}

.affiliate-header h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

.affiliate-header .highlight {
  color: #2b6cb0;
  background-color: #dff6ff;
  padding: 0 10px;
  border-radius: 5px;
}

.affiliate-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.affiliate-benefits, .affiliate-trust {
  flex: 1 1 45%;
}

.affiliate-benefits ul, .affiliate-trust ul {
  list-style: none;
  padding: 0;
}

.affiliate-benefits li, .affiliate-trust li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.affiliate-form-placeholder {
  margin-top: 25px;
  font-weight: bold;
  color: #444;
  text-align: center;
}

.trust-logo {
  width: 180px;
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  .affiliate-content {
    flex-direction: column;
    gap: 30px;
  }

  .affiliate-header h1 {
    font-size: 2rem;
  }
}


.support-help-section {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.support-container {
  max-width: 900px;
  margin: auto;
}

.support-title {
  font-size: 2rem;
  font-weight: bold;
  color: #004f8b;
  margin-bottom: 10px;
}

.support-subtitle {
  color: #333;
  font-size: 1rem;
  margin-bottom: 30px;
}

.support-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0077c8;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #0077c8;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 250px;
}

.support-btn:hover {
  background-color: #0077c8;
  color: white;
}

.email-btn::before {
  margin-right: 8px;
}

.call-btn::before {
  margin-right: 8px;
}

@media (max-width: 600px) {
  .support-btn {
    width: 100%;
  }

  .support-title {
    font-size: 1.5rem;
  }
}


.refund-policy-section {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.policy-container {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 40px;
}

.policy-heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
}

.policy-subheading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.policy-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .policy-heading,
  .policy-subheading {
    font-size: 1.1rem;
  }

  .policy-text {
    font-size: 0.95rem;
  }

  .policy-block {
    margin-bottom: 30px;
  }
}


.ms-plans-section {
  padding: 40px 20px;
  background-color: #f7f9fc;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.ms-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.ms-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.ms-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ms-plan-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  max-width: 320px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s;
}

.ms-plan-card:hover {
  transform: translateY(-6px);
}

.ms-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}

.green-tag { background-color: #28a745; }
.orange-tag { background-color: #fd7e14; }
.red-tag { background-color: #dc3545; }

.ms-plan-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ms-plan-features {
  list-style: none;
  padding-left: 0;
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.ms-plan-features li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.ms-plan-features li::before {
  content: "✔";
  color: #0078d7;
  position: absolute;
  left: 0;
}

.ms-price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.ms-buy-button {
  background-color: #0078d7;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
  transition: background-color 0.3s;
}

.ms-buy-button:hover {
  background-color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .ms-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .ms-plan-card {
    max-width: 90%;
  }
}


.system-req-container {
  max-width: 800px;
  margin: 40px auto;
  color: #000;
}

.system-req-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.system-req-list {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}


.pricing-section-xyz {
  text-align: center;
  padding: 40px 20px;
}

.pricing-title-xyz {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.pricing-container-xyz {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-box-xyz {
  background: #f9f9f9;
  border: 1px solid #ccc;
  width: 380px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.pricing-box-xyz:hover {
  transform: translateY(-5px);
}

.highlight-box-xyz {
  border: 2px solid #1f2122;
}

.popular-tag-xyz {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e0e0e0;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.product-img-xyz {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.plan-name-xyz {
  /* font-size: 16px; */
  font-weight: bold;
  margin: 10px 0;
}

.plan-desc-xyz {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.price-xyz {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

.price-btn-xyz {
  background: #0078D7;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 15px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.price-btn-xyz:hover {
  background: #005fa3;
}

.feature-list-xyz {
  text-align: left;
  list-style-type: none;
  padding-left: 0;
  color: #333;
}

.feature-list-xyz li {
  margin-bottom: 8px;
}


.info-banner-xyz {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  background-color: #f2f2f2;
  padding: 30px 20px;
  gap: 20px;
}

.micro-img{
    align-items: center;
    text-align: center;
    width: 100%;
}

.info-box-xyz {
  flex: 1 1 250px;
  max-width: 300px;
}

.info-box-xyz strong {
  display: block;
  margin-bottom: 5px;
}

.info-box-xyz p {
  color: #333;
}


.faq-section-xyz {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-title-xyz {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.faq-container-xyz {
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.faq-item-xyz {
  border-top: 1px solid #ddd;
}

.faq-item-xyz:first-child {
  border-top: none;
}

.faq-question-xyz {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
}

.faq-question-xyz::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.2s;
}

.faq-question-xyz.active::after {
  content: "−";
}

.faq-answer-xyz {
  display: none;
  padding: 15px;
  background: #fff;
  line-height: 1.6;
  color: #333;
}

.faq-footer-xyz {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}


.office-banner-xyz {
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Info Bar */
.info-bar-xyz {
  background-color: #f1f5fb;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
  gap: 20px;
}

.info-item-xyz {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

/* Banner Image Section */
.main-banner-xyz {
  position: relative;
}

.banner-img-xyz {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.banner-text-xyz {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: #000;
  text-align: center;
}

.banner-text-xyz h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.banner-text-xyz p {
  font-size: 18px;
  margin-top: 10px;
}

/* Update Link */
.update-msg-xyz {
  background-color: #fff;
  padding: 20px;
  font-size: 16px;
}

.click-here-link-xyz {
  color: #0078d7;
  font-weight: bold;
  margin-left: 5px;
  text-decoration: none;
}

.click-here-link-xyz:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-text-xyz h1 {
    font-size: 26px;
  }
  .banner-text-xyz p {
    font-size: 16px;
  }
  .info-item-xyz {
    flex: 1 1 45%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .info-item-xyz {
    flex: 1 1 100%;
    justify-content: center;
  }

  .banner-text-xyz {
    top: 20%;
    transform: translate(-50%, -20%);
  }
}


.product-grid-xyz {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px 20px;
  margin: 40px;
}

.product-card-xyz {
  position: relative;
  width: 230px;
  border: 1px solid #ccc;
  text-align: center;
  padding: 20px 10px;
  border-radius: 5px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.product-card-xyz:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-card-xyz img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-card-xyz h3 {
  font-size: 16px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.sale-badge-xyz {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: orangered;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.price-box-xyz {
  margin: 10px 0;
}

.old-price-xyz {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
  margin-right: 5px;
}

.new-price-xyz {
  color: #0078d7;
  font-size: 18px;
  font-weight: bold;
}

.add-to-cart-btn-xyz {
  background-color: #0078d7;
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.add-to-cart-btn-xyz:hover {
  background-color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card-xyz {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .product-card-xyz {
    width: 100%;
  }
}


.multi-device-section {
  padding: 40px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.multi-device-heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.multi-device-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.multi-device-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 20px;
  width: 320px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.multi-device-card:hover {
  transform: translateY(-5px);
}

.multi-device-img {
  width: 80px;
  margin-bottom: 15px;
}

.most-popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e91e63;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: bold;
}

.multi-device-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.multi-device-delivery {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.multi-device-price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.multi-device-pay-btn {
  display: inline-block;
  background-color: #0011a8;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}

.multi-device-pay-btn:hover {
  background-color: #00007e;
}

.multi-device-features {
  text-align: left;
  font-size: 0.95rem;
}

.multi-device-features p {
  margin-bottom: 8px;
}

.multi-device-features span {
  color: #28a745;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .multi-device-cards {
    flex-direction: column;
    align-items: center;
  }

  .multi-device-card {
    width: 90%;
  }
}


.ms-requirements-section {
  padding: 40px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Requirements */
.ms-requirements-box {
  max-width: 1000px;
  margin: 0 auto 30px;
}

.ms-requirements-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.ms-requirements-list {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Blue Banner */
.ms-license-banner {
  background-color: #0078d7;
  color: white;
  padding: 25px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border-radius: 5px;
  margin: 30px auto;
  max-width: 1000px;
}

.ms-license-banner p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.ms-license-right {
  text-align: right;
  font-size: 1rem;
}

/* Info Columns */
.ms-info-columns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.ms-info-block {
  max-width: 300px;
  text-align: center;
}

.ms-info-block h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.ms-info-block p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .ms-license-banner {
    flex-direction: column;
    text-align: center;
  }

  .ms-license-right {
    margin-top: 15px;
    text-align: center;
  }

  .ms-info-columns {
    flex-direction: column;
    align-items: center;
  }

  .ms-info-block {
    max-width: 90%;
  }
}


.office-info-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

/* Info Text */
.office-info-text {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.office-info-text h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.office-info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.office-info-text a {
  color: #0078d7;
  text-decoration: underline;
}

/* Testimonials */
.office-testimonials {
  max-width: 1000px;
  margin: 0 auto;
}

.office-testimonials h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(25% - 20px);
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: bold;
  margin: 10px 0 5px;
}

.testimonial-card .date {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-bottom: 10px;
}

.testimonial-card .stars {
  color: #f39c12;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 1 1 100%;
  }

  .office-info-text,
  .office-testimonials {
    padding: 0 10px;
  }
}


.office-2016-wrapper {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.office-2016-heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.office-2016-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.office-2016-card {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  max-width: 280px;
  background-color: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.office-2016-card:hover {
  transform: translateY(-5px);
}

.office-2016-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4500;
  color: white;
  padding: 5px 10px;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 5px;
}

.office-2016-img {
  width: 100px;
  margin: 20px auto;
}

.office-2016-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 15px 0;
}

.office-2016-price {
  font-size: 1rem;
  margin-bottom: 15px;
}

.office-2016-price del {
  color: gray;
  margin-right: 8px;
}

.office-2016-price span {
  color: #0078d7;
  font-weight: bold;
}

.office-2016-cart-btn {
  display: inline-block;
  background-color: #0066ff;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}

.office-2016-cart-btn:hover {
  background-color: #004ec4;
}

/* Responsive */
@media (max-width: 600px) {
  .office-2016-card {
    max-width: 90%;
  }
}


.responsive-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .responsive-img {
    max-width: 100%;
  }
}



.ms-product-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.ms-product-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  gap: 30px;
}

.ms-product-details {
  flex: 1 1 500px;
}

.ms-product-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.ms-product-rating {
  color: #0078d7;
  font-weight: 500;
  margin-bottom: 20px;
}

.ms-stars {
  color: orange;
  margin-left: 5px;
}

.ms-feature-list {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;
  margin-bottom: 20px;
}

.ms-feature-list li {
  margin-bottom: 10px;
  color: #333;
}

.ms-price-box {
  font-size: 22px;
  margin-bottom: 20px;
}

.ms-old-price {
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.ms-new-price {
  color: #0078d7;
  font-weight: bold;
}

.ms-cart-box {
  display: flex;
  gap: 15px;
  align-items: center;
}

.ms-qty {
  width: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.ms-add-btn {
  background-color: #0078d7;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.ms-add-btn:hover {
  background-color: #005bb5;
}

.ms-product-image {
  flex: 1 1 300px;
  position: relative;
  text-align: center;
}

.ms-product-image img {
  max-width: 100%;
  height: auto;
}

.ms-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: olive;
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ms-product-container {
    flex-direction: column;
    text-align: center;
  }

  .ms-cart-box {
    justify-content: center;
  }

  .ms-product-image {
    margin-top: 30px;
  }
}


.desc-section {
  padding: 50px 20px;
  background-color: #fefefe;
}

.desc-container {
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.desc-heading {
  text-align: center;
  background-color: #0b63e5;
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 26px;
  margin-bottom: 30px;
}

.desc-subtitle {
  color: #1a4ee6;
  font-size: 22px;
  margin-bottom: 10px;
}

.desc-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.desc-feature-title {
  font-size: 20px;
  color: #2163f3;
  margin-top: 25px;
  margin-bottom: 12px;
}

.desc-feature-list {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .desc-heading {
    font-size: 22px;
  }

  .desc-subtitle {
    font-size: 18px;
  }

  .desc-feature-title {
    font-size: 18px;
  }
}


.support-help-section {
  background-color: #060b1e;
  color: #fff;
  padding: 50px 20px;
}

.support-help-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.support-help-text {
  flex: 1 1 450px;
}

.support-heading {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.support-call-btn {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  margin: 35px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.support-call-btn:hover {
  background-color: #d4d4d4;
}

.support-note {
  font-size: 14px;
  line-height: 4.5;
  color: #dcdcdc;
}

.support-help-img {
  flex: 1 1 400px;
  text-align: center;
}

.support-help-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-help-container {
    flex-direction: column;
    text-align: center;
  }

  .support-heading {
    justify-content: center;
  }

  .support-call-btn {
    font-size: 18px;
  }
}




.hd-cart-title {
  text-align: center;
  color: #2c3e50;
  margin: 30px;
}

.hd-cart-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hd-cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hd-cart-item img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
}

.hd-cart-details {
  flex: 1;
}

.hd-cart-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.hd-cart-details p {
  margin: 5px 0;
  color: #666;
}

.hd-cart-remove-btn {
  background-color: #e74c3c;
  color: white;
  border: none;
  margin: 30px;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.hd-cart-remove-btn:hover {
  background-color: #c0392b;
}

.hd-cart-empty {
  text-align: center;
  font-size: 20px;
  color: #999;
  margin-top: 50px;
}

.hd-cart-checkout-wrapper {
  text-align: center;
  margin: 40px;
}

.hd-cart-checkout-btn {
  padding: 12px 25px;
  font-size: 16px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hd-cart-checkout-btn:hover {
  background-color: #27ae60;
}

@media (max-width: 600px) {
  .hd-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .hd-cart-item img {
    margin-bottom: 10px;
  }

  .hd-cart-remove-btn {
    margin-top: 10px;
    width: 100%;
  }
}


/* checkout */

.hd-checkout-title {
  text-align: center;
  font-size: 32px;
  color: #2c3e50;
  margin: 25px;
}

.hd-checkout-items {
  max-width: 700px;
  margin: 0 auto 40px auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hd-cart-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.hd-cart-item:last-child {
  border-bottom: none;
}

.hd-total {
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #2c3e50;
}

.hd-empty-msg {
  text-align: center;
  font-size: 18px;
  color: #999;
}

.hd-payment-form {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hd-payment-form:hover {
  transform: scale(1.01);
}

.hd-payment-form h2 {
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.hd-payment-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  font-size: 16px;
}

.hd-pay-btn {
  background-color: #28a745;
  color: white;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.hd-pay-btn:hover {
  background-color: #218838;
}

@media (max-width: 600px) {
  .hd-checkout-title {
    font-size: 26px;
  }

  .hd-payment-form, .hd-checkout-items {
    padding: 20px;
  }

  .hd-pay-btn {
    font-size: 16px;
  }
}
