 body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fb;  /* clean light gray background instead of gradient */
  color: #1c2b36;       /* keep text dark for readability */
  margin: 0;
  padding: 0;
}

/* NEW NAVBAR */

   /* small styles for demo results */
    .result-card { display:flex; gap:12px; padding:12px; border:1px solid #eee; border-radius:8px; margin-bottom:10px; align-items:center; }
    .result-card img { width:100px; height:70px; object-fit:cover; border-radius:6px; }
    #searchDebug { white-space:pre-wrap; font-family:monospace; background:#f8f9fa; padding:10px; border-radius:6px; height:80px; overflow:auto; }
 



    /* small style so the fallback icon is neat if needed */
    .icon-fallback { display: none; width: 22px; height: 22px; vertical-align: middle; }
    .stylish-input { border-radius: 20px 0 0 20px; border: 1px solid #ddd; }
    .stylish-btn { border-radius: 0 20px 20px 0; background-color: #0d6efd; color: #fff; }
    .btn-brochure { background-color:#0d6efd; color:#fff; border-radius:25px; padding:5px 15px; }
 
/* Custom Navbar */
.custom-navbar {
  background: #007bff; /* Blue bar */
}
.custom-navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #fff !important; /* White text */
}
.custom-navbar .nav-link:hover {
  color: #ffdd00 !important; /* Highlight on hover */
}

/* Dropdown menu */
.dropdown-menu {
  border-radius: 6px;
  border: none;
}
.dropdown-menu .dropdown-item:hover {
  background: #f1f1f1;
}

/* Brochure Button */
.btn-brochure {
  background: linear-gradient(90deg, #007bff, #6610f2);
  color: #fff;
  border-radius: 25px;
  padding: 8px 16px;
  font-weight: 500;
}
.btn-brochure:hover {
  background: linear-gradient(90deg, #0056b3, #520dc2);
  color: #fff;
}


/* Navbar */
.navbar {
  font-size: 16px;
}
.navbar-nav {
  gap: 25px;
}
.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* Dropdown hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}
.dropdown-menu {
  border: none; /* no border */
  border-radius: 6px;
}

/* Desktop Search */
.search-bar .form-control {
  border-radius: 30px 0 0 30px;
  height: 45px;
}
.search-bar .form-select {
  border-radius: 0;
  border-left: none;
  border-right: none;
  height: 45px;
}
.search-bar .btn {
  border-radius: 0 30px 30px 0;
  height: 45px;
  background: #444;
  color: #fff;
}
.search-bar .btn:hover {
  background: #007bff;
}

/* Mobile search */
.search-form-mobile {
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

/* Mobile search */
.search-form-mobile {
  background: #f8f9fa;
  border-top: 1px solid #eee;
}




/* GRID SEARCH RESULT */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.grid-item {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
}

.grid-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}



/* Hero */

/* Hero Section Base */
.hero {
  padding: 3rem 2rem;
  background: linear-gradient(to bottom right, #f8fbff, #e6f0ff);
  position: relative;
  overflow: hidden;
    z-index: 1; /* establishes stacking context */

}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero::before {
  width: 400px; height: 400px;
  background: rgba(0, 105, 255, 0.15);
  top: -100px; left: -100px;
  filter: blur(80px);
}
.hero::after {
  width: 350px; height: 350px;
  background: rgb(0 116 123 / 15%);
  bottom: 90px; right: -100px;
  filter: blur(80px);
  z-index: 0; /* 🔽 keep it behind everything */

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #1c2b36;
}
.hero h1 span {
  color: #0069ff;
}

.hero p.subtitle {
  color: #6c7a89;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0069ff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.btn-custom {
  background: linear-gradient(135deg, #0069ff, #0052cc);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,105,255,0.3);
  transition: transform 0.2s ease;
}
.btn-custom:hover {
  transform: translateY(-3px);
}

.stats {
  margin-top: 3rem;
}
.stats h4 {
  color: #0069ff;
  font-weight: 700;
}

/* Hero Image */
.hero-image {
  max-width: 100%;
  z-index: 1;
  position: relative;
}


/* Moving Images */


/* MOVING GALLERY CONTAINER */
.moving-gallery {
  width: 100%;
  overflow: hidden;
  background:linear-gradient(to bottom right, #f8fbff, #e6f0ff);
  padding: 30px 0;
  position: relative;
}


/* IMAGE TRACK */
.image-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

/* IMAGE STYLE */
.image-track img {
  height: auto; /* keep original proportions */
  max-height: 180px; /* optional: limit vertical height */
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}


/* ✅ RESPONSIVE FIXES FOR MOBILE SCREENS */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;       /* smaller heading for mobile */
    line-height: 1.3;
  }

  .hero-content .tagline {
    font-size: 0.9rem;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .stats h4 {
    font-size: 1.2rem;
  }

  .stats small {
    font-size: 0.8rem;
  }

  .hero-image {
    max-width: 80%;
    margin-top: 30px;
  }

  .floating-tags {
    display: none; /* hide floating tags on small screens */
  }
}

/* Extra small screens (like older phones) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 0.95rem;
  }

  .btn-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/* HOVER EFFECT */
.image-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* SCROLL ANIMATION */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PAUSE ON HOVER */
.moving-gallery:hover .image-track {
  animation-play-state: paused;
}

/* Scroll animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional gradient edges for modern look */
.moving-gallery::before,
.moving-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.image-track img:hover {
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.6), 0 0 40px rgba(0, 123, 255, 0.3);
  animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
  from {
    filter: brightness(1.1);
  }
  to {
    filter: brightness(1.3);
  }
}


.moving-gallery::before {
  left: 0;
  background: linear-gradient(to right, #fafafa, transparent);
}

.moving-gallery::after {
  right: 0;
  background: linear-gradient(to left, #fafafa, transparent);
}

/* Responsive design */
/* @media (max-width: 768px) {
  .image-track img {
    width: 140px;
    height: 100px;
  }
} */


/* RESPONSIVE */
@media (max-width: 768px) {
  .image-track img {
    max-height: 130px;
  }
}
@media (max-width: 480px) {
  .image-track img {
    max-height: 100px;
  }
}



/* Floating Tags Container */
.illustration {
  position: relative;
  display: inline-block;
}

/* Base Tag Style */
.floating-tag {
 position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeInOut 6s ease-in-out infinite;
  transform: translate(-50%, -50%);
  z-index: 5; /* 🟢 Make sure tags stay on top */
}

.floating-tag i {
  font-size: 1rem;
  color: #0069ff;
}

/* Fade In-Out */
@keyframes fadeInOut {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Circle Placement (around image) */
.print   { top: 0%; left: 50%; animation-delay: 0s; }
.design  { top: 20%; left: 90%; animation-delay: 1s; }
.indoor  { top: 80%; left: 90%; animation-delay: 2s; }
.outdoor { top: 100%; left: 50%; animation-delay: 3s; }
.package { top: 80%; left: 10%; animation-delay: 4s; }
.safety  { top: 20%; left: 10%; animation-delay: 5s; }

/* Hide on Mobile */
@media (max-width: 991px) {
  .floating-tag {
    display: none;
  }
}





/* OUR SERVICES */

/* .services-section {
  background: linear-gradient(to bottom right, #f8fbff, #e6f0ff);
  padding: 60px 0;
} */

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0069ff;
  margin-bottom: 40px;
  
}


/* Services Section Background */
.services-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #f1f5ff 50%, #fdf4ff 100%);
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

/* Decorative Pink Dot (top-right) */

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  position: relative;
  z-index: 1;

  
  
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,105,255,0.25);
}



/* Icon */
.service-icon {
  font-size: 3rem;
  color: #0069ff;
  margin-bottom: 15px;
}

/* Text */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #0069ff;
}

.service-card p {
  font-size: 0.95rem;
  color: #6c7a89;
  margin: 0;
}

/* Clickable */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}



/* Carousel Section */
/* Section background */
/* .services-section {
    background: linear-gradient(135deg, #ebf3ff, #e6f0ff);  position: relative;
  overflow: hidden;
} */
.explore-categories {
    background: linear-gradient(135deg, #ebf3ff, #e6f0ff);  position: relative;
  overflow: hidden;
}
/* Swiper carousel */
.swiper {
  width: 100%;
  padding: 40px 0;
}


.swiper-slide {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 320px;   /* fixed card height */
  width: 250px;    /* fixed card width */
}


.swiper-slide:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.swiper-slide img {
  width: 100%;
  height: 220px;   /* fixed image height */
  object-fit: cover;
  display: block;
}

/* Category names */
.category-name {
  margin: 10px 0;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}

.swiper-slide:hover .category-name {
  color: #007bff;
}

/* Modal popup */
.modal-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

/* Animation for modal */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Modal navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 32px;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1050;
  transition: background 0.3s, transform 0.2s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.15);
}

.nav-btn.left { left: 20px; }
.nav-btn.right { right: 20px; }









/* About Company */

/* Darker, modern blue gradient background */
.about-section {
background: radial-gradient(circle at center, #418bf7 0%, #0d47a1 80%);
  color: #f1f5ff;
  padding: 34px 0;
  position: relative;
  overflow: hidden;
}

/* Floating illustration (keep same animation, but brighten image on dark bg) */
.about-illustration {
  max-width: 80%;
  animation: floatImage 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.4));
}

/* Glass-style info cards (light on dark bg) */
.info-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 14px;
  transition: all 0.35s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.info-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffff; /* light blue heading */
}
.info-card i {
  color: #fff;
  font-size: 1.3rem;
}
.info-card p {
  font-size: 0.95rem;
  margin: 0;
  color: #dce6f9; /* soft light text */
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(77, 184, 255, 0.35);
  border-color: rgba(77, 184, 255, 0.5);
}

/* Stats Row (cards pop on dark background) */
.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.stat-box h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}
.stat-box small {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #d1dcf9;
}
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 184, 255, 0.4);
  border-color: rgba(77, 184, 255, 0.4);
}


.about-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff; 
}
/* Stylish Divider */
.about-divider path {
  fill: #162b6f; /* match with darker section */
  fill-opacity: 1;
}



/* === Responsive Fixes === */
@media (min-width: 768px) {
  .stat-box {
    flex: 1 1 calc(25% - 15px); /* 4 in a row on desktop */
    max-width: 240px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .stat-box {
    flex: 1 1 45%; /* 2 per row even on small phones */
    padding: 20px 10px;
    margin-bottom: 10px;
  }

  .stat-box h4 {
    font-size: 1.2rem;
  }

  .stat-box small {
    font-size: 0.8rem;
  }
}

/* Clients Section - Light Theme */
.clients-section {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  color: #1c2b36;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-head h2 {
  font-weight: 800;
  color:  #0069ff;/* Teal highlight */
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-head .section-subtitle {
  color: #6c7a89;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Client Logos */
.client-logo {
  max-width: 100%;
  max-height: 100px; /* Preserve original size */
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: none; /* no hover effect */
  
}
.client-logo:hover {
  transform: none;
  filter: none;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100);
  width: 32px;
  height: 32px;
}



/* Gallery Section *//* Gallery Section */
.gallery-section {
  background: #e7f1ff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.gallery-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0069ff; 
}

/* Desktop Grid */
.gallery-grid {
  display: grid;
  grid-template-areas: 
    "small1 large small2"
    "small3 large small4"
    "medium medium medium";
  grid-gap: 20px;
}

/* Gallery Item Box */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

/* Overlay */
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Fixed Grid Areas (Desktop) */
.gallery-item:nth-child(1) { grid-area: small1; }
.gallery-item:nth-child(2) { grid-area: small2; }
.gallery-item:nth-child(3) { grid-area: large; }
.gallery-item:nth-child(4) { grid-area: small3; }
.gallery-item:nth-child(5) { grid-area: small4; }
.gallery-item:nth-child(6) { grid-area: medium; }

/* Sizes */
.gallery-item.small { height: 200px; }
.gallery-item.large { height: 420px; }
.gallery-item.medium { height: 250px; grid-column: span 3; }

/* ✅ Mobile: Single Column */
@media (max-width: 767px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .gallery-item {
    height: auto;   /* Let height adjust naturally */
    min-height: 220px;
  }
}

/* Lightbox Close */
.lb-close {
  position: absolute !important;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: white !important;
  text-decoration: none !important;
  z-index: 9999;
  opacity: 0.9;
}
.lb-close:hover {
  opacity: 1;
  color: #ff4444 !important;
}

/* Lightbox Image Centering on Mobile */
.lightbox .lb-image {
  max-height: 80vh !important;
  object-fit: contain;
}



/* 

What do we mean by
Good Quality ? */
/* Theme Section */
.printing-service-theme {
  background: radial-gradient(circle at center, #418bf7 0%, #0d47a1 80%);
  background-color: #0a2342;;
  padding: 100px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Section Title */
.printing-service-theme .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff; /* Golden Accent */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Stylish Separator Line */
.printing-service-theme .separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ffea8c, #dbc8ab);
  margin: 15px 0 25px 0;
  border-radius: 50px;
  animation: slideIn 1.5s ease;
}

/* Sub Title */
.printing-service-theme .sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.printing-service-theme .sub-title span {
  color:  #f0f6fe;   /* Accent */

}

/* Description */
.printing-service-theme .description {
  font-size: 1rem;

  line-height: 1.8;
  margin-bottom: 25px;
   color: #fafafa;   /* Accent */
;
}

/* Service Points */
.printing-service-theme .service-points {
  list-style: none;
  padding: 0;
}

.printing-service-theme .service-points li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.printing-service-theme .service-points li:hover {
  transform: translateX(8px);
  color: #00d4ff;   /* Accent */

}

.printing-service-theme .service-points i {
  color: #00d4ff;   /* Accent */

  font-size: 1.3rem;
  margin-right: 10px;
}



@media (max-width: 768px) {

.printing-service-theme .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff; /* Golden Accent */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.printing-service-theme .sub-title{
  font-size: 1.5rem;

}
}
@media (max-width: 480px) {
.printing-service-theme .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff; /* Golden Accent */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.printing-service-theme .sub-title{
  font-size: 1.5rem;

}
}



/* Image Styling */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.service-img {
  max-width: 100%;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  border: 4px solid #00d4ff;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  animation: rotateBorder 12s linear infinite;
}

.service-img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0px 12px 35px rgba(0,0,0,0.4);
}

/* Animations */
@keyframes slideIn {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .printing-service-theme .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .printing-service-theme .service-points li {
    justify-content: center;
  }
  .printing-service-theme .image-content {
    margin-bottom: 30px;
  }
}




/* Contact & Location Section */
.contact-location {
  background: #f9f9f9;
  color: #222;
}

.contact-location .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b3d2e; /* Dark Green Accent */
}

.contact-location .description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.contact-location .contact-info {
  margin-bottom: 20px;
}

.contact-location .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-location .info-item i {
  font-size: 1.2rem;
  color: #0069ff;
  margin-right: 12px;
  margin-top: 5px;
}

.contact-location .info-item p {
  margin: 0;
  font-size: 1rem;
}

/* Button */
.btn-custom {
  display: inline-block;
  background:  #0069ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #99aac0;
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(173, 162, 162, 0.3);
}

/* Map Styling */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-location {
    text-align: center;
  }
  .contact-location .info-item {
    justify-content: center;
  }
  .map-wrapper {
    margin-top: 25px;
  }
}


/* FOOTER *//* Footer Section */
.site-footer {
  background: #0a2342; /* Dark navy blue */
  color: #dce3f0;
  padding: 28px 0 20px;
  font-size: 0.95rem;
}

.site-footer .footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #418bf7; /* Main Blue Accent */
  margin-bottom: 20px;
}

.site-footer p {
  color: #cfd8e3;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #dce3f0;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #418bf7;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: #418bf7; /* Icon accent */
  margin-right: 10px;
  margin-top: 3px;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  color: #fff;
  background: #152c55; /* Darker blue background for icons */
  margin-right: 8px;
  font-size: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #418bf7;
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    background: #081a33; /* Deep navy */
    padding: 6px 0;
}

.footer-bottom p {
  margin: 0;
  color: #8c9bb5;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-links li, .footer-contact li {
    text-align: left;
  }
}


/* -------------------------------------------DESIGN NEW SERVICES PAGE------------------------------- */
/* Banner */

/* .banner img {
  width: 100%;
  max-height: 70vh;  
  object-fit: cover;
  display: block;
} */

.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* shows 100% image */
  display: block;
  background-color: #000; /* optional: fills empty side gaps */
}


/* Optional: For very small screens */
@media (max-width: 768px) {
  .banner img {
    height: 50vh;            /* Better visibility on mobile */
    object-position: center; /* Adjust if needed */
  }
}

/* Ultra-wide screens fix */
@media (min-aspect-ratio: 21/9) {
  .banner img {
    object-position: center top;
  }
}


.floating-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;;
  color:  #007bff;
  border-radius: 25px;
  margin: 5px;
  text-decoration: none; /* remove underline */
  transition: 0.3s;
}
.floating-tag:hover {
  background: #007bff;
  color: #fff;
}

.floating-tag i {
  transition: color 0.3s ease; /* smooth icon color change */
}
.floating-tag:hover i {
  color: #fff;            /* icon turns white */
}
/* Floating Motifs */
.motif {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float 6s ease-in-out infinite alternate;
}
.motif-top-left { top: 20px; left: 20px; width: 100px; height: 100px; }
.motif-bottom-right { bottom: 20px; right: 20px; width: 120px; height: 120px; }
.motif-circle { top: 40%; left: 50%; width: 80px; height: 80px; opacity: 0.1; }
@keyframes float {
  from { transform: translateY(0) rotate(0); }
  to { transform: translateY(-20px) rotate(20deg); }
}

/* Section Divider */
.section-divider svg { display: block; margin-bottom: -1px; }

/* Headings */
.underline-title {
  position: relative;
  display: inline-block;
}
.underline-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background:  #0069ff;
  left: 20%;
  bottom: -10px;
  border-radius: 4px;
  animation: expand 1s ease forwards;
}
@keyframes expand { from { width: 0; } to { width: 60%; } }

/* Intro */
.intro-img img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
.intro-img img:hover { transform: scale(1.05); }

/* Gallery / Portfolio */
.gallery img {
  border-radius: 12px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.portfolio-item { position: relative; overflow: hidden; }
.portfolio-item img { transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.1); }
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:  #0069ff;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .overlay { opacity: 1; }

/* Features */
.feature-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #009688;
}
.feature-card:hover {
  background: #0069ff;
  color: #fff;
  transform: translateY(-8px);
  
  box-shadow: 0 8px 25px rgba(0, 150, 136, 0.4);
}
.feature-card:hover i { color: #fff; }


/* Smooth Scroll */
html { scroll-behavior: smooth; }



/* Common button styling */
/* Common Floating Button Styles */
.float-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 20px;
  border-radius: 50%;
  color: white;
  text-align: center;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-float {
  bottom: 90px;
  background-color: #25d366;
}

/* Email Button (placed below WhatsApp) */
.email-float {
  bottom: 20px;
  background-color: #d44638; /* Gmail Red */
}

/* Hover Effects */
.float-btn:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    right: 15px;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .email-float {
    bottom: 15px;
  }
}
