body {
  margin: 0;
  font-family: Arial, sans-serif;
 
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
/* Header  */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:darkblue;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
} 
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
} 
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.brand-logo {
  font-size: 24px;
}
.brand-accent {
  color: #00eaff;
} 
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 10px;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: #ffffff;
} 
.header-cta {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #00eaff;
  color: #003c5f;
}
.btn-primary:hover {
  background: #00c6e0;
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
} 
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  background: #002a80;
  padding: 20px;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-btn {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .mobile-nav.show {
    display: block;
  }
}

/* HERO */
.hero {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.hero-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: nowrap;
}

.hero-copy {
  flex: 1;
}

.hero-tag {
  display: inline-block;
  
  padding: 6px 14px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
}

.hero-copy h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #111;
}

.hero-copy .lead {
  font-size: 17px;
  color: #444;
  margin-bottom: 26px;
  max-width: 520px;
}

.accent {
  color: #007bff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-media img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.hero-media img:hover {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.hero-highlights {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width:600px;
}

.highlight {
  background: #ffffff;
  border: 1px solid #e6f0ff;
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-4px);
  border-color: #007bff;
  box-shadow: 0 10px 30px rgba(0,123,255,0.15);
}

.highlight-icon {
  font-size: 18px;
}

.btn {
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,123,255,0.35);
}

.btn-ghost {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-ghost:hover {
  background: #007bff;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy {
    width: 90%;        
    max-width: 400px;  
    margin: 0 auto;    
  }

  .hero-copy h1 {
    font-size: 28px;   
    line-height: 1.3;
  }

  .hero-copy .lead {
    font-size: 15px;   
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-media {
    justify-content: center;
    margin-top: 24px;
  }

  .hero-highlights {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .highlight {
    font-size: 13px;
    padding: 10px 14px;
  }

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

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.printer-professional {
  padding: 70px 20px;
  background: #f5f8ff;
  
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.section-title p {
  color: #555;
  font-size: 16px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e3e6ee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.brand-card::before,
.brand-card::after,
.brand-card .line-left,
.brand-card .line-right {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
.brand-card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
}
.brand-card::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
}
.brand-card .line-left {
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
}
.brand-card .line-right {
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card:hover .line-left { transform: scaleY(1); }
.brand-card:hover .line-right { transform: scaleY(1); }
.brand-card h3,
.brand-card p,
.brand-card .btn-start {
  position: relative;
  z-index: 1;
}
.brand-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: currentColor;
}
.brand-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 18px;
}
.btn-start {
  padding: 10px 22px;
  border-radius: 6px;
  border: 2px solid currentColor;
  background: transparent;
  color: currentColor;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.btn-start:hover {
  background: white;
  color: currentColor;
}
.hp { color: #0066ff; }     
.canon { color: #e63946; }  
.brother { color: #0D2EA0; }
.epson { color: #003F98; }

@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 24px;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 18px;
  position: relative;
  animation: popupScale 0.35s ease;
}
.modal-close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  display: block;
  background: #ff4d4f;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
@keyframes popupScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.modal-overlay.show {
  display: flex;
}
@media (max-width: 768px) {
  .modal-box {
    width: 95%;
    max-height: 95vh;
  }
}
/* CTA SECTION */
.printer-cta {
  position: relative;
  background-image: url("https://printerscarts.shop/printer/images/printer-setup.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(10px, 8vw, 100px) 20px;
  color: #ffffff;
}
.cta-overlay {
  position: absolute;
  inset: 0;
      background: rgba(0, 30, 60, 0.55);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}
.printer-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.cta-subtitle {
  margin-top: 14px;
  margin-bottom: 18px;
  color: #dbeafe;
  font-size: clamp(18px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
}
.cta-desc {
  color: #f8fafc;
  font-size: clamp(15px, 2.4vw, 20px);
  margin-top: 22px;
  line-height: 1.6;
}
.cta-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}

.cta-points li {
  font-size: clamp(14px, 2.4vw, 20px);
  margin-bottom: 10px;
}
.cta-btn {
  display: inline-block;
  margin-top: 28px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
@media (max-width: 768px) {
  .printer-cta {
    text-align: center;
  }

  .cta-points {
    display: inline-block;
    text-align: left;
  }
}


.features {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  text-align: center;
  padding: 28px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border: 2px solid darkblue;
  box-shadow: 0 0 0 4px rgba(0,123,255,0.15),
              0 16px 40px rgba(0,0,0,0.12);
}

.card {
  text-align: center;
  padding: 28px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card svg {
  margin-bottom: 14px;
  stroke:darkblue;
  fill: none;
  stroke-width: 1.8;
}

.card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: black;
}

.card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

/* CTA */
.cta {
  padding: 10px 10px; 
  background: darkblue;
  color: #fff;
  transition: background 0.3s ease;
  border-radius: 15px;
  margin-top:45px;
  margin-bottom:20px;
}
.cta-container {
  display: flex;
  align-items: center;       
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap; 
}

.cta-text h2 {
  font-size: 26px;
  margin-bottom: -10px;
}

.cta-text p {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
}

.btn {
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  background: darkblue;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #003f7f;
}
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.software {
  padding: 60px 20px;
  background: #f2f8ff;
}

.content-split {
  display: flex;
  align-items: center;      
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;          
}

.content-split .text {
  flex: 1 1 400px; 
}

.content-split .text h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #007bff;
  font-weight: 700;
}

.content-split .text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.content-split .text .btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-split .text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

.software-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-start;
}

.software-highlights .highlight {
  background: #ffffff;
  border: 1px solid #e6f0ff;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.software-highlights .highlight:hover {
  transform: translateY(-3px);
  border-color: #007bff;
  box-shadow: 0 8px 25px rgba(0,123,255,0.15);
}

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

.highlight-text {
  font-weight: 500;
}

.content-split .image {
  flex: 1 1 400px;         
}

.content-split .image img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-split .image img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content-split {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-split .text, 
  .content-split .image {
    flex: 1 1 100%;
  }

  .software-highlights {
    justify-content: center;
  }

  .content-split .text h2 {
    font-size: 22px;
  }

  .content-split .text p {
    font-size: 15px;
  }

  .content-split .text .btn {
    padding: 12px 22px;
    font-size: 15px;
  }

  .software-highlights .highlight {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-grid {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-list {
  flex: 1 1 500px;
}

.section-title {
  font-size: 28px;
  color: darkblue;
  margin-bottom: 24px;
}

.faq-item {
  margin-bottom: 20px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid darkblue;
}

.faq-item h4 {
  color: darkblue;
  margin: 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4 .toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item p {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  display: none; 
  line-height: 1.6;
}

.faq-item.active p {
  display: block;
}

.faq-item.active h4 .toggle {
  transform: rotate(45deg); 
}

.faq-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.faq-images img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
  .faq-grid {
    flex-direction: column;
  }

  .faq-images img {
    max-height: 300px;
  }
}

.site-footer {
  background: darkblue;
  color: #ffffff;
  padding: 60px 20px 25px;
 
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr ;
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-about h2 {
  font-size: 26px;
  font-weight: 800;
}

.footer-about h2 span {
  color: #00eaff;
}

.footer-about .muted {
  font-size: 14px;
  color: #dbeafe;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.footer-badges span {
  background: rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffd700;
}

.footer-contact {
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-label {
  min-width: 52px;
  font-weight: 600;
  color: #dbeafe;
}

.contact-row a {
  color: #ffffff;
  text-decoration: none;
  word-break: break-word;
}

.contact-row a:hover {
  color: #ffd700;
}

@media (max-width: 600px) {
  .contact-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-label {
    min-width: auto;
  }
}

.footer-cta {
  margin-top: 6px;
  align-self: flex-start;
  background: linear-gradient(90deg, #00eaff, #38bdf8);
  color: #003c5f !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #e0f2fe;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-cta {
    align-self: center;
  }
}


