/* Start custom CSS for html, class: .elementor-element-8f27936 *//* ==============================
   HERO SECTION – FINAL
============================== */

.blu-hero-final {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background:
    linear-gradient(
      180deg,
      rgba(2,6,35,0.85),
      rgba(2,6,18,0.65)
    ),
    url('https://palletsite.techranky.com/wp-content/uploads/2026/06/Gemini_Generated_Image_ie3loyie3loyie3l-scaled.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* Logo */
.blu-hero-logo {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.blu-hero-logo img {
  height: 150px;
  width: auto;
}

/* Text Content */
.blu-hero-content {
  max-width: 900px;
  z-index: 2;
  animation: heroFadeUp 1s ease forwards;
}

.blu-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.blu-hero-content p {
  font-size: 18px;
  color: #d6e6ff;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blu-hero-content h1 {
    font-size: 38px;
  }

  .blu-hero-content p {
    font-size: 16px;
  }

  .blu-hero-logo img {
    height: 100px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-94c202a *//* ===== SECTION 2 : HARD RESET ===== */

.blu-compare {
  background: #05070c;
  padding: 90px 0;
}

.blu-compare-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.blu-compare-head h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blu-compare-head p {
  color: #cfe3ff;
  font-size: 18px;
}

/* Grid */
.blu-compare-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Base Card */
.compare-card {
  background: #0b1426;
  border-radius: 16px;
  padding: 38px 34px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
}

.compare-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
  font-weight: 600;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card li {
  color: #e6efff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

/* Wood */
.compare-card.wood h3 { color: #ff9aa2; }
.compare-card.wood li::before {
  content: "–";
  color: #ff9aa2;
  position: absolute;
  left: 0;
}

/* Plastic */
.compare-card.plastic h3 { color: #ffc085; }
.compare-card.plastic li::before {
  content: "–";
  color: #ffc085;
  position: absolute;
  left: 0;
}

/* Blu */
.compare-card.blu {
  background: #0e2340;
  box-shadow:
    0 0 0 1px rgba(80,170,255,0.35),
    0 40px 80px rgba(0,0,0,0.7);
}

.compare-card.blu h3 { color: #5fc8ff; }
.compare-card.blu li { color: #f0f8ff; }
.compare-card.blu li::before {
  content: "✓";
  color: #5fc8ff;
  position: absolute;
  left: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .blu-compare-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-886d723 *//* ==============================
   PALLET TYPES & APPLICATIONS
============================== */

.blu-pallet-types {
  background: linear-gradient(180deg, #05070c, #0a1428);
  padding: 90px 0;
}

.blu-types-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.blu-types-header h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blu-types-header p {
  color: #cfe3ff;
  font-size: 18px;
  line-height: 1.7;
}

/* Grid */
.blu-types-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.blu-type-card {
  background: #0b1528;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blu-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 90px rgba(0,0,0,0.7);
}

/* Image */
.blu-type-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 26px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
}

/* Title */
.blu-type-card h3 {
  color: #6ad1ff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* List */
.blu-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blu-type-card li {
  color: #e6efff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.blu-type-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ad1ff;
}

/* Mobile */
@media (max-width: 900px) {
  .blu-types-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d337b5c *//* ==============================
   TECHNICAL SPECIFICATIONS TABLE
============================== */

.blu-specs {
  background: #05070c;
  padding: 100px 0;
}

.blu-specs-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.blu-specs-header h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blu-specs-header p {
  color: #cfe3ff;
  font-size: 18px;
  line-height: 1.7;
}

/* Table Wrapper */
.blu-specs-table-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  overflow-x: auto;
}

/* Table */
.blu-specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #0b1528;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Header */
.blu-specs-table thead th {
  background: #0f2340;
  color: #6ad1ff;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  text-align: left;
}

/* Body */
.blu-specs-table tbody td {
  color: #e6efff;
  font-size: 15px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* First column emphasis */
.blu-specs-table tbody td:first-child {
  color: #ffffff;
  font-weight: 500;
  width: 24%;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .blu-specs-table tbody tr:hover {
    background: rgba(90,180,255,0.06);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .blu-specs-header h2 {
    font-size: 32px;
  }

  .blu-specs-table thead th,
  .blu-specs-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-42ab0ff *//* ==============================
   INDUSTRIES & USE CASES
   (NON-REPEATING DESIGN)
============================== */

.blu-industries {
  background: linear-gradient(180deg, #05070c, #0a1428);
  padding: 100px 0;
}

.blu-industries-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.blu-industries-header h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 14px;
}

.blu-industries-header p {
  color: #cfe3ff;
  font-size: 18px;
  line-height: 1.7;
}

/* List */
.blu-industries-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Row */
.industry-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.industry-row:last-child {
  border-bottom: none;
}

/* Industry Name */
.industry-name {
  font-size: 20px;
  font-weight: 600;
  color: #6ad1ff;
}

/* Description */
.industry-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #e6efff;
}

/* Mobile */
@media (max-width: 900px) {
  .blu-industries-list {
    padding: 0 30px;
  }

  .industry-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-name {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2d982b8 *//* ==============================
   MANUFACTURING – COMPACT
============================== */

.blu-manufacturing-compact {
  background: linear-gradient(180deg, #05070c, #0a1428);
  padding: 80px 0;
}

/* Header */
.blu-man-head {
  text-align: center;
  margin-bottom: 50px;
}

.blu-man-head h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.blu-man-head p {
  color: #cfe3ff;
  font-size: 17px;
}

/* Steps Row */
.blu-man-steps-compact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Step Box */
.man-box {
  background: #0b1528;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.man-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* Index */
.man-index {
  font-size: 13px;
  color: #6ad1ff;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

/* Text */
.man-box h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.man-box p {
  font-size: 15px;
  color: #d6e6ff;
  line-height: 1.6;
}

/* Reveal animation (safe) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .blu-man-steps-compact {
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
  }
}

@media (max-width: 520px) {
  .blu-man-steps-compact {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a053c8d *//* ==============================
   FINAL CONTACT / INQUIRY
============================== */

.blu-contact-final {
  background: linear-gradient(180deg, #05070c, #02040a);
  padding: 90px 0;
}

/* Layout */
.blu-contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.blu-contact-text h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
}

.blu-contact-text p {
  font-size: 18px;
  color: #cfe3ff;
  line-height: 1.7;
  max-width: 520px;
}

/* Form */
.blu-contact-form form {
  background: #0b1528;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.6);
  transition: transform 0.35s ease;
}

.blu-contact-form form:hover {
  transform: translateY(-6px);
}

.blu-contact-form input,
.blu-contact-form textarea {
  width: 100%;
  background: #050b18;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 15px;
}

.blu-contact-form textarea {
  min-height: 90px;
  resize: none;
}

.blu-contact-form input::placeholder,
.blu-contact-form textarea::placeholder {
  color: #8fa8c9;
}

/* Button */
.blu-contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #2f8cff, #0d5fd3);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blu-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(47,140,255,0.45);
}

/* Reveal animation (safe) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Safety fallback */
.reveal {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 900px) {
  .blu-contact-wrap {
    grid-template-columns: 1fr;
    padding: 0 30px;
    gap: 40px;
  }

  .blu-contact-text h2 {
    font-size: 34px;
  }
}/* End custom CSS */