:root {
  --header-footer: #011359;
  /* --header-footer: #42A5F5; */
  --p1: #1a2a69;
  --p2: #33427a;
  --p3: #4d598a;
  --p4: #66719b;
  --p5: #e5e7ee;
  --blue: #42A5F5;
  --white: #FFFFFF;
  --black: #000000;
  --muted: rgba(7, 7, 7, 0.45);
}

* {
  box-sizing: border-box
}

body {
  background: var(--p5);
  color: var(--black);
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--black);
}

.text-white{
  text-decoration: none;
}

/* Header */
.navbar-custom {
  background: var(--header-footer);
  color: #fff
}

.navbar-custom .nav-link {
  color: #fff
}

.navbar-nav .nav-link.active {
  color: var(--blue) !important; /* Bright blue */
  font-weight: 600;
  border-bottom: 2px solid #007BFF; /* Optional underline */
}

.navbar-nav .nav-link:hover {
    color: var(--blue) !important; /* Also make hover blue for consistency */
}

.navbar-custom .logo-txt {
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.navbar-custom .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}


.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1050;
}

/* service card */

/* Carousel */
.carousel-item img {
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width:767px) {
  .carousel-item img {
    height: 220px
  }
}

/* Sections */
.section {
  padding: 60px 0
}

.section .section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.card-service {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-service i {
  color: var(--nav-color);
}

.card-service h5 {
  font-weight: 600;
}

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

.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #f0f0f0
}

.product-card img {
  height: 180px;
  object-fit: cover;
  width: 100%
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06)
}

/* about value card */



/* about banner */
 .about-banner {
      position: relative;
      background: url(../images/bg.png); 
      height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .about-banner::before {
      content: "";
      position: absolute;
      inset: 0;
    
      z-index: 1;
    }

    .about-banner-content {
      position: relative;
      z-index: 2;
      animation: fadeInUp 1.2s ease-in-out;
    }

    .about-banner-content h1 {
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      color: #042D53;
    }

    .about-banner-content p {
      font-size: 1.2rem;
      margin-top: 10px;
      color: #444;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-banner {
        height: 45vh;
      }
      .about-banner-content h1 {
        font-size: 2.2rem;
      }
      .about-banner-content p {
        font-size: 1rem;
      }
    }
/* about banner ends */
/* Value Cards */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 100%;

  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.value-card h4 {
  color: #222;
  margin-top: 15px;
  font-size: 1.2rem;
  text-align: center;
  font-size: 24px;
}

.value-card p {
  color: #555;
  text-align: center;
  padding: 0 15px;
  line-height: 1.5;
}

/* end about value card */

/* extra card */
/* Section Styling */
#qph-special {
  text-align: center;
  padding: 80px 20px;
}

#qph-special h1 {
  font-size: 2.5rem;
  color: #0b3d91;
  font-weight: 700;
  margin-bottom: 50px;
}

#qph-special h1 span {
  color: #007bff;
}

/* Services Container */
.services-container.printer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  /* ensures all 4 cards stay in one row */
  gap: 20px;
}

/* Service Card Styling */
.service-card {
  flex: 1;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
  transition: all 0.3s ease;
  border-top: 4px solid #007bff;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

/* Icon Styling */
.service-card .icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

/* Card Text */
.service-card h3 {
  font-size: 1.3rem;
  color: #0b3d91;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Responsive Adjustment */
@media (max-width: 992px) {
  .services-container.printer {
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 1 1 100%;
  }
}


/* blog */
.blogs h5 {
  margin-top: 4px;
}

.img-fluid {
  margin-bottom: 10px;
}

.small {
  color: var(--muted);
  text-align: center;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-readmore {
  background: var(--header-footer);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-readmore:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}




/* Reviews slider */
.reviewSectionWrapper {
  padding: 60px 0;
}

.reviewContainerBox {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.reviewSliderWrapper {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
}

.clientReviewCard {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  opacity: 0;
  transition: opacity 1s ease, transform 0.8s ease;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 50px 30px;
  text-align: center;
  z-index: 1;
}

.clientReviewCard.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 2;
}

.clientProfileImage {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #42A5F5;
  /* blue theme */
  margin-bottom: 20px;
}

.clientReviewText {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.clientPersonName {
  color: #42A5F5;
  font-weight: 600;
  margin-bottom: 4px;
}

.clientJobTitle {
  font-size: 0.9rem;
  color: #777;
}

/* Navigation Buttons */
.reviewNavBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--p1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewNavBtn:hover {
  background: #2196F3;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 10px rgba(66, 165, 245, 0.4);
}

.prevBtn {
  left: 5px;
}

.nextBtn {
  right: 5px;
}


/* contact */
/* Contact Section Styling */
#contactSection {
  padding: 80px 0;
  text-align: center;
  color: #0a3d62;
}

.contact-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #004aad;
  position: relative;
  display: inline-block;
}

.contact-heading::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #007bff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.contact-image img:hover {
  transform: scale(1.05);
}

.contact-form-area {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
}

.contact-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #c6d4ff;
  background: #f8fbff;
  font-size: 1rem;
  color: #004aad;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
  background: #ffffff;
}

.contact-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-area {
    max-width: 95%;
  }
}

/* end contact */


/* Footer pin */
html,
body {
  height: 100%
}

.site-root {
  min-height: 100%;
  display: flex;
  flex-direction: column
}

.content-wrap {
  flex: 1
}

/* Cart badge */
.cart-count {
  display: inline-block;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--header-footer);
  font-size: 12px;
  text-align: center;
  vertical-align: middle
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  z-index: 2000;
  transition: width .25s ease;
  background: #fff;
  box-shadow: 4px 0 18px rgba(0, 0, 0, 0.08)
}

.mobile-drawer.open {
  width: 40%;
  min-width: 260px
}

/* Buttons and headings */
h1,
h2 {
  font-family: 'Poppins', sans-serif
}

h3,
h4,
.card-title {
  font-family: 'Roboto Condensed', sans-serif
}

nav,
button,
.btn {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.4px
}

/* ensure footer at bottom on short pages */
.site-footer {
  background: var(--header-footer);
  color: #fff;
  
}

 .cart-popup {
      position: fixed;
      top: 20px;
      right: -300px;
      background: #007bff;
      color: #fff;
      padding: 12px 18px;
      border-radius: 8px;
      font-weight: bold;
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: right 0.4s ease, transform 0.4s ease;
    }

    .cart-popup i {
      color: #fff;
      font-size: 18px;
    }

    .cart-popup.show {
      right: 20px;
      animation: bounceIn 0.7s ease;
    }

    @keyframes bounceIn {
      0% {
        transform: scale(0.6);
      }

      60% {
        transform: scale(1.2);
      }

      100% {
        transform: scale(1);
      }
    }

    /* scroll to top */

    .scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: var(--p3);
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 10%;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top-btn:hover {
  background: var(--p5);
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.scroll-top-btn.show {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* blog pages */

 /* ✅ Banner Section */
    .blog-banner {
      background: url(../images/bg.png);
      padding: 100px 20px 60px;
      text-align: center;
    }

    .blog-banner h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #042D53;
    }

    .breadcrumb {
      justify-content: center;
      margin-top: 15px;
    }

    /* ✅ Blog Layout */
    .blog-section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 50px;
      align-items: flex-start;
      padding: 80px 10%;
    }

    .blog-content img {
      border-radius: 12px;
      width: 100%;
      object-fit: cover;
      margin-bottom: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .blog-content h2 {
      font-weight: 700;
      color: #042D53;
      margin-bottom: 25px;
    }

    .blog-content h3 {
      font-weight: 700;
      color: #0b3d91;
      margin-top: 40px;
      margin-bottom: 15px;
    }

    .blog-content p {
      margin-bottom: 15px;
      font-size: 1.05rem;
      color: #444;
    }

    /* ✅ Related Articles */
    .related-articles {
      position: sticky;
      top: 120px;
    }

    .related-articles h4 {
      font-weight: 700;
      color: #042D53;
      margin-bottom: 25px;
    }

    .related-item {
      background: #f7faff;
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
      transition: 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      cursor: pointer;
    }

    .related-item:hover {
      transform: translateY(-4px);
      background: #e8f3ff;
    }

    .related-item img {
      border-radius: 8px;
      width: 100%;
      height: 140px;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .related-item h6 {
      color: #0b3d91;
      font-weight: 600;
      font-size: 1rem;
    }

    /* ✅ Responsive */
    @media (max-width: 992px) {
      .blog-section {
        grid-template-columns: 1fr;
        padding: 50px 5%;
      }

      .related-articles {
        position: relative;
        top: 0;
      }
    }

    .btn-add-to-cart{
      background-color: var(--p1);
    }