/* --- Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  /* Removed scroll-behavior: smooth to prevent conflict with Lenis/JS instant scrolling */
}

/* --- Lenis Recommended CSS --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* --- COMPLETELY HIDE SCROLLBAR --- */
::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  background: transparent;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* FIX: Changed from 'hidden' to 'auto' to ensure page is always clickable/scrollable */
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* FIX: Safer button reset for better mobile compatibility */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Animations Optimized --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition:
    opacity 1.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1.6s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* --- Navbar Container --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  /* CRITICAL FIX: Very high z-index to ensure clickability */
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  pointer-events: auto;
  /* Ensure navbar is always clickable */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
  transition: height 0.3s ease;
}

/* --- Logo --- */
.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  font-size: 24px;
  color: #3d4094;
  letter-spacing: -1px;
}

.logo-img {
  width: 6rem;
  margin-top: 8px;
}

/* --- Desktop Menu --- */
.desktop-menu {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #3d4094;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: #3d4094;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  color: #4b5563;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  white-space: nowrap;
  gap: 4px;
  cursor: pointer;
}

.caret-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
}

/* --- Desktop Dropdown --- */
.dropdown-parent {
  position: relative;
  padding: 10px 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0px;
  background-color: white;
  border-radius: 12px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  min-width: 180px;
  z-index: 1002;
}

.dropdown-menu.right-align {
  left: auto;
  right: 0;
}

.dropdown-menu.wide {
  width: 288px;
}

.dropdown-menu.medium {
  width: 240px;
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-parent:hover .caret-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  margin: 4px;
  border-radius: 8px;
  transition:
    background-color 0.15s,
    color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #eef2ff;
  color: #4f46e5;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10001;
  /* High z-index to be clickable */
}

.mobile-menu-btn {
  color: #3d4094;
  width: 48px;
  /* Explicit width */
  height: 48px;
  /* Explicit height */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  /* Force clickable */
}

.mobile-menu-btn:hover {
  color: #111827;
}

.mobile-menu-btn svg {
  width: 32px;
  height: 32px;
}

/* Responsive Breakpoint for Navbar */
@media (min-width: 1200px) {
  .desktop-menu {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-btn-container {
    display: none;
  }
}

/* --- Mobile Menu Styles --- */
.mobile-menu {
  display: block;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  border-top: 1px solid #e5e7eb;
  box-shadow: none;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}

@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 100px;
}

.mobile-link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.mobile-link:hover {
  background-color: #f9fafb;
  border-color: #3d4094;
  color: #3d4094;
  transform: translateX(4px);
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.mobile-dropdown-btn:hover {
  background-color: #f9fafb;
  border-color: #3d4094;
  color: #3d4094;
  transform: translateX(4px);
}

.mobile-dropdown-content {
  display: none;
  margin-top: 8px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}

.mobile-dropdown-content.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-sub-link {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  border-bottom: 1px solid #e2e8f0;
  transition:
    color 0.2s,
    background-color 0.2s,
    padding-left 0.2s;
}

.mobile-sub-link:last-child {
  border-bottom: none;
}

.mobile-sub-link:hover {
  color: #3d4094;
  background-color: #e0e7ff;
  padding-left: 30px;
}

.rotate-180 {
  transform: rotate(180deg);
}

/* --- Header Section --- */
.video-header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-header video {
  object-fit: cover;
  object-position: top center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.video-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2)
  );
}

/* --- Tagline --- */
.tagline_container {
  text-align: center;
  width: 100%;
  padding: 80px 20px;
  background-color: #fff;
  max-width: 100%;
  overflow: hidden;
}

.tagline {
  font-family: "Comic Neue", "Fredoka", cursive, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  color: #222;
}

.tagline span {
  color: #ed3338;
  display: inline-block;
}

.sub_tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: "Roboto", sans-serif;
  margin: 0 auto 3rem auto;
  font-weight: 400;
  color: #545454;
  line-height: 1.6;
  max-width: 800px;
}

.tagline_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tagline_buttons button {
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid #ed3338;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
}

.tagline_buttons button:first-child {
  color: #fff;
  background-color: #ed3338;
}

.tagline_buttons button:first-child:hover {
  color: #ed3338;
  background-color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(237, 51, 56, 0.2);
}

.tagline_buttons button:last-child {
  color: #545454;
}

.tagline_buttons button:last-child:hover {
  color: #fff;
  background-color: #ed3338;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(237, 51, 56, 0.2);
}

/* --- What We Do --- */
.what_we_do {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 8rem auto;
  padding: 0 2rem;
  max-width: 1400px;
  flex-wrap: wrap;
}

.what_we_do_image-container {
  flex: 1 1 450px;
  max-width: 600px;
  position: relative;
}

.printing_machine {
  object-fit: cover;
  width: 100%;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.what_we_do_image-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background-color: #e0e7ff;
  border-radius: 10px;
  z-index: -1;
  transition: transform 0.4s ease;
}

.what_we_do_image-container:hover::before {
  transform: translate(10px, -10px);
}

.what_we_do_content {
  flex: 1 1 400px;
  max-width: 600px;
}

.what_we_do_content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3d4094;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "Fredoka", sans-serif;
}

.what_we_do_content p {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
}

/* --- Packaging Solution --- */
.packaging_soultion {
  margin: 6rem 0;
  padding: 6rem 2rem;
  background-color: #f3f4f6;
  text-align: center;
}

.packaging_soultion h2 {
  margin-bottom: 4rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3d4094;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.packaging_soultion img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

.packaging_soultion img:hover {
  transform: scale(1.02);
}

/* --- PRODUCT GRID SECTION STYLES --- */
.pkg-section {
  background: linear-gradient(180deg, #00b0f0 0%, #b1eaff 100%);
  padding-bottom: 50px;
  padding-top: 50px;
  color: #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: calc(100vh - 80px);
  transition: opacity 0.3s ease;
}

.pkg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.pkg-section h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.pkg-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.pkg-product-card {
  width: calc(33.333% - 17px);
  background-color: rgba(247, 241, 241, 0.38);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.pkg-product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(247, 241, 241, 0.55);
}

.pkg-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-position: center center;
}

.pkg-product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #004d66;
  text-transform: capitalize;
}

.arrow-icon {
  margin-top: 8px;
  font-size: 24px;
  color: #ed3338;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.pkg-product-card:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
}

/* --- PRODUCT DETAIL VIEW STYLES --- */
.product-details-section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  min-height: calc(100vh - 80px - 300px);
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pd-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .pd-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
}

.pd-image-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  cursor: zoom-in;
}

.pd-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.pd-info {
  flex: 1;
  text-align: left;
  padding-top: 10px;
}

.pd-title {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  color: #3d4094;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pd-spec-title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 3px solid #ed3338;
  padding-bottom: 5px;
  font-weight: 700;
  font-family: "Segoe UI", sans-serif;
}

.pd-spec-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.back-btn,
.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid;
}

.back-btn {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb;
}

.back-btn:hover {
  background-color: #e5e7eb;
}

.quote-btn {
  background-color: #ed3338;
  color: white;
  border-color: #ed3338;
}

.quote-btn:hover {
  background-color: #d12025;
  box-shadow: 0 4px 12px rgba(237, 51, 56, 0.3);
}

/* --- Quote Modal Styles --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-title {
  font-size: 1.5rem;
  color: #3d4094;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #3d4094;
  box-shadow: 0 0 0 3px rgba(61, 64, 148, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-submit {
  width: 100%;
  background-color: #3d4094;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.modal-submit:hover {
  background-color: #31347a;
}

/* --- Footer --- */
.footer-section {
  background-color: #1f2937;
  color: #f3f4f6;
  padding: 80px 0 30px 0;
  font-family: "Roboto", sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #ed3338;
  border-radius: 2px;
}

.footer-logo img {
  width: 6rem;
}

.footer-about-text {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 300px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #ed3338;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #d1d5db;
  align-items: flex-start;
}

.footer-contact i {
  color: #ed3338;
  font-size: 1.5rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* --- Industries Styles --- */
.industries-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.industries-title {
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  color: #3d4094;
  margin-bottom: 40px;
}

.industries-header-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industries-orange-box {
  background-color: #f58733;
  color: white;
  padding: 30px;
  text-align: center;
}

.industries-orange-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.industries-orange-box p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry-card {
  width: calc(25% - 15px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.industry-name {
  padding: 15px 10px;
  font-weight: 600;
  color: #4b5563;
  font-size: 1rem;
  background-color: #f9fafb;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Quality & Promise --- */
.quality-section {
  background: linear-gradient(135deg, #3d4094 0%, #9296ff 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.quality-image-container {
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.quality-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  object-position: top center;
}

.promise-box {
  background-color: #ed3338;
  color: #fff;
  padding: 20px 40px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promise-box h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

/* Button Container - Unique Class */
.pkg-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* View All Button - Unique Class */
.pkg-view-all-btn {
  background: rgba(255, 255, 255, 0.15);
  /* Semi-transparent background */
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 16px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(5px);
  /* Glass effect */
}

.pkg-view-all-btn:hover {
  background-color: #ffffff;
  color: #00b0f0;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}

.pkg-view-all-btn i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.pkg-view-all-btn:hover i {
  transform: translateX(6px);
}

/* New Custom Info Heading Styles */
.pkg-custom-info {
  background-color: #ed3338;
  color: white;
  border-radius: 15px;
  padding: 15px 30px;
  margin-top: 30px;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Contact CTA Section --- */
.contact-cta-section {
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-cta-heading {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: #3d4094;

  line-height: 1.2;
}

.contact-cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #222;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-btn {
  background-color: #ed3338;
  color: white;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #ed3338;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-cta-btn:hover {
  background-color: transparent;
  color: #ed3338;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .what_we_do {
    gap: 0 !important;
    flex-direction: column-reverse;
    margin: 2rem auto;
    text-align: center;
    align-items: center;
  }

  .what_we_do_content {
    margin-bottom: 0 !important;
    flex: none !important;
    width: 100%;
  }

  .what_we_do_image-container::before {
    display: none;
  }

  .what_we_do_image-container {
    max-width: 800px;
    width: 100%;
    margin-top: 2rem !important;
    flex: none !important;
  }
}

@media (max-width: 992px) {
  .pkg-product-card {
    width: calc(50% - 13px);
  }

  .industry-card {
    width: calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .tagline_buttons {
    flex-direction: column;
    width: 100%;
  }

  .tagline_buttons button {
    width: 200px;
    max-width: 320px;
  }

  .tagline_container {
    padding: 30px 16px;
  }

  .what_we_do {
    margin: 1rem auto 2rem auto;
    flex-direction: column-reverse !important;
    gap: 0 !important;
    align-items: center;
  }

  .what_we_do_content {
    text-align: left;
    padding: 0 1rem;
    margin-bottom: 1.5rem !important;
    flex: none !important;
    width: 100%;
    height: auto !important;
  }

  .what_we_do_content h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }

  .what_we_do_content p {
    margin-bottom: 0 !important;
    padding-bottom: 0;
  }

  .what_we_do_image-container {
    flex: none !important;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 2rem !important;
    height: auto !important;
  }

  .what_we_do_image-container::before {
    display: none;
  }

  .what_we_do_image-container video {
    height: 250px;
    margin-top: 0;
  }

  .packaging_soultion {
    padding: 3rem 1rem;
    margin: 2rem 0;
  }

  .industry-card {
    width: calc(50% - 10px);
  }

  .industries-header-layout {
    margin-bottom: 40px;
  }

  .pkg-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .pkg-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .industries-section {
    padding: 40px 16px;
  }

  .industries-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .quality-section {
    padding: 40px 16px;
  }

  .contact-cta-section {
    padding: 50px 16px;
  }

  .footer-section {
    padding: 50px 0 20px 0;
  }

  .pd-title {
    font-size: 2rem;
  }

  .pd-header {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .pkg-product-grid {
    gap: 15px;
  }

  .pkg-product-card {
    width: calc(50% - 8px);
    padding: 10px;
  }

  .pkg-section h1 {
    font-size: 1.8rem;
  }

  .pkg-product-image {
    height: 180px;
    margin-bottom: 10px;
  }

  .pkg-product-title {
    font-size: 0.95rem;
  }

  .pkg-view-all-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .pkg-custom-info {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }

  .nav-content {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .mobile-menu-btn {
    font-size: 24px;
  }

  .industries-grid {
    gap: 10px;
  }

  .industry-card {
    width: calc(50% - 5px);
  }

  .industry-img {
    height: 150px;
  }

  .industry-name {
    font-size: 0.85rem;
    padding: 10px 5px;
  }

  .promise-box {
    padding: 15px 20px;
  }

  .promise-box h2 {
    font-size: 1.3rem;
  }

  .contact-cta-heading {
    font-size: 1.5rem;
  }

  .contact-cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .modal-content {
    width: 95%;
    padding: 20px;
    max-height: 80vh;
  }

  .modal-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 12px;
  }
}

/* --- Floating Buttons Styles --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3d4094;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(61, 64, 148, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #ed3338;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(237, 51, 56, 0.4);
}

/* Adjust positions for mobile to avoid overlap */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }

  .scroll-top-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
}
