@media (max-width: 900px) {
  .story-hero {
    position: relative !important;
    width: 100% !important;
    min-height: 220px !important;
    overflow: hidden !important;
  }
  
  .story-hero img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    display: block !important;
  }
  .story-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1em 0.7em !important;
    box-sizing: border-box !important;
    background: rgba(0,91,170,0.25) !important;
    color: #fff !important;
    text-align: center !important;
  }
  .story-overlay h2 {
    font-size: 1.2em !important;
    margin-bottom: 0.5em !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  .story-overlay p {
    font-size: 1em !important;
    margin-bottom: 1em !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
}
/* --- Responsive Layout Fix for Mobile --- */
@media (max-width: 900px) {
  body {
    padding: 0;
    margin: 0;
    background: #fff;
  }
  .container {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 0.5em !important;
    box-sizing: border-box;
  }
  .hero-content {
    text-align: center;
    padding: 2em 0.5em;
  }
  .hero-bg {
    display: none !important;
  }
  .order-steps, .feature-grid, .steps, .testimonial-list, .featured-list, .cards {
    flex-direction: column !important;
    gap: 1.5em !important;
    width: 100% !important;
  }
  .order-step, .feature, .step, .testimonial, .featured-item, .card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }
  .approach .split {
    flex-direction: column !important;
    width: 100% !important;
  }
  .approach img {
    width: 100% !important;
    margin-bottom: 1em !important;
  }
  .story-hero img {
    height: 180px !important;
    object-fit: cover !important;
    width: 100% !important;
  }
  .cta-banner {
    display: block !important;
    width: 100% !important;
    padding: 1.5em 0.5em !important;
    background: linear-gradient(90deg, #005baa 60%, #2563eb 100%) !important;
    color: #fff !important;
    text-align: center !important;
  }
  .banner-inner {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .footer, .site-footer {
    width: 100% !important;
    padding: 1em 0.5em !important;
    text-align: center !important;
    font-size: 1em !important;
  }
}
@media (max-width: 600px) {
  h1, h2 {
    font-size: 1.5em !important;
  }
  .btn, .btn-outline, .btn-light, .btn-advanced {
    font-size: 1em !important;
    padding: 0.7em 1.2em !important;
  }
  .modal-content.advanced-form {
    padding: 1.2em 0.7em 1em 0.7em !important;
    max-width: 98vw !important;
  }
}
/* --- Responsive Navbar & Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #005baa;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,91,170,0.10);
    border-radius: 0 0 0 16px;
    display: none;
    flex-direction: column;
    min-width: 200px;
    padding: 2em 1.2em 2em 1.2em;
    z-index: 1100;
    text-align: right;
    height: 100vh;
    align-items: flex-end;
    transition: right 0.3s;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    margin: 1em 0;
    color: #005baa;
    font-weight: 500;
    display: block;
    font-size: 1.1em;
  }
  .container.nav {
    flex-wrap: nowrap;
    align-items: center;
  }
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Responsive Grid & Layouts --- */
@media (max-width: 900px) {
  .order-steps, .feature-grid, .steps, .testimonial-list, .featured-list, .cards {
    flex-direction: column !important;
    gap: 1.5em !important;
  }
  .order-step, .feature, .step, .testimonial, .featured-item, .card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .hero-content {
    text-align: center;
    padding: 2em 0.5em;
  }
  .hero-bg {
    display: none;
  }
  .approach .split {
    flex-direction: column;
  }
  .approach img {
    width: 100%;
    margin-bottom: 1em;
  }
  .story-hero img {
    height: 180px;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  h1, h2 {
    font-size: 1.5em !important;
  }
  .btn, .btn-outline, .btn-light, .btn-advanced {
    font-size: 1em !important;
    padding: 0.7em 1.2em !important;
  }
  .modal-content.advanced-form {
    padding: 1.2em 0.7em 1em 0.7em;
    max-width: 98vw;
  }
}

/* --- Modern Button Styles --- */
.process .btn-light {
  background: #fff;
  color: #005baa;
  border: 2px solid #005baa;
  font-weight: 600;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,91,170,0.08);
}
.process .btn-light:hover {
  background: #005baa;
  color: #fff;
}
.btn-light.btn-small {
  font-size: 0.9em;
  padding: 0.4em 0.4em;
  border-radius: 20px;
  min-width: unset;
}

/* --- Card & Modal Polish --- */
.card-content p {
  max-width: 260px;
  margin: 0 auto;
}
.modal-content.advanced-form {
  background: #fff;
  margin: 3% auto;
  padding: 2.5em 2.5em 1.5em 2.5em;
  border-radius: 18px;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,91,170,0.18), 0 2px 16px rgba(0,0,0,0.10);
  position: relative;
  animation: modalIn 0.2s;
}
@keyframes modalIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
/* --- Responsive Navbar & Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #005baa;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,91,170,0.10);
    border-radius: 0 0 0 16px;
    display: none;
    flex-direction: column;
    min-width: 200px;
    padding: 2em 1.2em 2em 1.2em;
    z-index: 1100;
    text-align: right;
    height: 100vh;
    align-items: flex-end;
    transition: right 0.3s;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    margin: 1em 0;
    color: #005baa;
    font-weight: 500;
    display: block;
    font-size: 1.1em;
  }
  .container.nav {
    flex-wrap: nowrap;
    align-items: center;
  }
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Responsive Grid & Layouts --- */
@media (max-width: 900px) {
  .order-steps, .feature-grid, .steps, .testimonial-list, .featured-list, .cards {
    flex-direction: column !important;
    gap: 1.5em !important;
  }
  .order-step, .feature, .step, .testimonial, .featured-item, .card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .hero-content {
    text-align: center;
    padding: 2em 0.5em;
  }
  .hero-bg {
    display: none;
  }
  .approach .split {
    flex-direction: column;
  }
  .approach img {
    width: 100%;
    margin-bottom: 1em;
  }
  .story-hero img {
    height: 180px;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  h1, h2 {
    font-size: 1.5em !important;
  }
  .btn, .btn-outline, .btn-light, .btn-advanced {
    font-size: 1em !important;
    padding: 0.7em 1.2em !important;
  }
  .modal-content.advanced-form {
    padding: 1.2em 0.7em 1em 0.7em;
    max-width: 98vw;
  }
}

/* --- Modern Button Styles --- */
.process .btn-light {
  background: #fff;
  color: #005baa;
  border: 2px solid #005baa;
  font-weight: 600;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,91,170,0.08);
}
.process .btn-light:hover {
  background: #005baa;
  color: #fff;
}
.btn-light.btn-small {
  font-size: 0.9em;
  padding: 0.4em 0.4em;
  border-radius: 20px;
  min-width: unset;
}

/* --- Card & Modal Polish --- */
.card-content p {
  max-width: 260px;
  margin: 0 auto;
}
.modal-content.advanced-form {
  background: #fff;
  margin: 3% auto;
  padding: 2.5em 2.5em 1.5em 2.5em;
  border-radius: 18px;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,91,170,0.18), 0 2px 16px rgba(0,0,0,0.10);
  position: relative;
  animation: modalIn 0.2s;
}
@keyframes modalIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
/* --- Perfect Responsive Navbar and Layout Polish --- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1101;
  }
  .nav-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #005baa;
    text-align: center !important;
    gap: 1.2em !important;
  }
  .cta-banner h2 {
    font-size: 1.2em !important;
    margin-bottom: 0.7em !important;
  }
}
@media (max-width: 600px) {
  .site-header, .services, .how-to-order, .featured-products, .cards, .cta-banner, .approach, .story-hero, .features, .process, .testimonials, .site-footer {
    padding-left: 0.2em !important;
    padding-right: 0.2em !important;
  }
  .hero-content {
    padding: 0.7em 0.2em !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 1em !important;
    align-items: flex-start !important;
  }
  .footer-col {
    width: 100% !important;
    min-width: 0 !important;
  }
  .modal-content.advanced-form {
    max-width: 99vw !important;
    padding: 0.7em 0.2em 0.7em 0.2em !important;
  }
  .modal-content h2 {
    font-size: 1em !important;
  }
  .btn, .btn-light, .btn-outline, .btn-advanced {
    font-size: 0.98em !important;
    padding: 0.6em 1em !important;
  }
  .card-content p, .feature p, .testimonial p {
    font-size: 0.98em !important;
    padding-left: 0.2em !important;
    padding-right: 0.2em !important;
  }
}
/* --- Enhanced Responsive Design --- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 900px) {
  .nav, .hero-content, .banner-inner, .footer-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.2em;
  }
  .site-header {
    border-radius: 0 0 18px 18px;
    padding-bottom: 1em;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-bg {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
  }
  .section-head h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 700px) {
  .site-header, .services, .how-to-order, .featured-products, .cards, .cta-banner, .approach, .story-hero, .features, .process, .testimonials, .site-footer {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .hero-content {
    padding: 1em 0.5em;
  }
  .section-head h2, .process h2 {
    font-size: 1.2rem;
  }
  .btn, .btn-light, .btn-outline, .btn-advanced {
    font-size: 1em;
    padding: 0.7em 1em;
  }
}
@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 0.5em;
  }
  .menu {
    display: flex !important;
    flex-direction: column;
    gap: 0.5em;
    width: 100%;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,91,170,0.07);
    padding: 0.5em 1em;
    margin-top: 0.5em;
  }
  .menu a {
    width: 100%;
    padding: 0.5em 0;
    font-size: 1.05em;
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .steps, .cards, .feature-grid, .testimonial-list {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    gap: 1em !important;
  }
  .order-steps {
    grid-template-columns: 1fr !important;
    gap: 1em !important;
  }
  .featured-list {
    flex-direction: column !important;
    gap: 1em !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 1.5em;
    align-items: flex-start;
  }
  .footer-col {
    width: 100%;
  }
  .modal-content.advanced-form {
    max-width: 98vw;
    padding: 1em 0.5em 1em 0.5em;
  }
  .modal-content h2 {
    font-size: 1.1em;
  }
}
img, .hero-bg {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Make Learn more button in Our Process section stand out */
.process .btn-light {
  background: #fff;
  color: #005baa;
  border: 2px solid #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,91,170,0.08);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.process .btn-light:hover, .process .btn-light:focus {
  background: #005baa;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
}
body {
  --primary: #5697d1;
  background: linear-gradient(120deg, #a7a8acbe 60%, #98999bcb 100%);
  color: #222;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.07rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Section backgrounds with color and gradient accents */
.site-header {
  background: linear-gradient(90deg, #f6f7f8eb 60%, #f1f2f2f6 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.07);
}
.cta-row {
  background: linear-gradient(90deg, #b2cec8 60%, #e0e7ff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.04);
}
.brand-logos {
  background: linear-gradient(90deg, #f7fafd 60%, #e0e7ff 100%);
}
.how-to-order {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.services {
  background: linear-gradient(90deg, #f0fdfa 60%, #e0e7ff 100%);
}
.featured-products {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.cards {
  background: linear-gradient(90deg, #f0fdfa 60%, #e0e7ff 100%);
}
.cta-banner {
  background: linear-gradient(90deg, #2563eb 60%, #22d3ee 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.approach {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.story-hero {
  background: linear-gradient(90deg, #f0fdfa 60%, #e0e7ff 100%);
}
.features {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.process {
  background: linear-gradient(90deg, #f0fdfa 60%, #e0e7ff 100%);
}
.testimonials {
  background: linear-gradient(90deg, #e0e7ff 60%, #f0fdfa 100%);
}
.site-footer {
  background: linear-gradient(90deg, #181c24 60%, #232a36 100%);
}
/* ---- Logo Text Gradient ---- */
.logo-text {
  font-weight: 800;
  font-size: 1.45rem;
  background: linear-gradient(135deg, #3b82f6 40%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */
  letter-spacing: 0.03em;
  margin-left: 0.3em;
  font-family: inherit;
}
/* ---- Card Modern Badge & Content ---- */
.card {
  position: relative;
}
.card-badge {
  position: absolute;
  top: 16px;
  .testimonials {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
  }
  .testimonial {
    background: rgba(255,255,255,0.65);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(37,99,235,0.10), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    max-width: 340px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    border: 1.5px solid rgba(37,99,235,0.08);
    backdrop-filter: blur(7px);
    overflow: hidden;
  }
  .testimonial::before {
    content: "\201C";
    position: absolute;
    top: 1.1rem;
    left: 1.2rem;
    font-size: 3.5rem;
    color: #2563eb22;
    font-family: serif;
    pointer-events: none;
    z-index: 0;
  }
  .testimonial:hover {
    box-shadow: 0 8px 40px rgba(37,99,235,0.18), 0 2px 12px rgba(0,0,0,0.10);
    transform: translateY(-6px) scale(1.035);
    background: rgba(255,255,255,0.82);
  }
  .testimonial .testimonial-quote {
    font-size: 1.13em;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1.3rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
  }
  .testimonial .testimonial-author {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.05em;
    margin-bottom: 0.18rem;
    position: relative;
    z-index: 1;
  }
  .testimonial .testimonial-role {
    font-size: 0.98em;
    color: #64748b;
    position: relative;
    z-index: 1;
  }
  margin-left: 1em;
}
.btn-order-now:hover {
  background: linear-gradient(90deg, #0077b6 60%, #005baa 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.03);
}
/* ---- Our Solution Link ---- */
.solution-link {
  color: #005baa;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.3em;
  display: inline-block;
  transition: color 0.2s;
}
.solution-link:hover {
  color: #003e6b;
  text-decoration: underline;
}
/* ---- Our Process Link ---- */
.process-link {
  color: #005baa;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.3em;
  display: inline-block;
  transition: color 0.2s;
}
.process-link:hover {
  color: #003e6b;
  text-decoration: underline;
}
/* ---- Track Record Link ---- */
.track-record-link {
  color: #005baa;
  text-decoration: none;
  font-weight: bold;
  margin-right: 0.4em;
  transition: color 0.2s;
}
.track-record-link:hover {
  color: #003e6b;
  text-decoration: underline;
}
/* ---- Single Industrial Uniform Image ---- */
.industrial-img-single {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
/* ---- Industrial Uniform Card Image Row ---- */
.industrial-img-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0.7em;
}
.industrial-img-row img {
  width: 48%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.cards .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.7em;
}
/* ---- Approach Section (Uniform Image) ---- */
.approach img {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 0;
}
.approach .split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.approach h2 {
  color: #005baa;
  margin-bottom: 0.5em;
}
.approach p {
  color: #607d8b;
  font-size: 1.08em;
}
@media (max-width: 900px) {
  .approach .split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .approach img {
    max-width: 100%;
    height: 220px;
  }
}
/* ---- Featured Products Section ---- */
.featured-products {
  max-width: 1100px;
  margin: 3em auto 2em auto;
  padding: 0 1em 2em 1em;
}
.featured-products h2 {
  text-align: center;
  color: #005baa;
  margin-bottom: 1.5em;
  font-size: 2rem;
}
.featured-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 0.5em;
  flex-wrap: wrap;
}
.featured-item {
  background: rgba(250, 248, 248, 0.97);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,91,170,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
  padding: 2em 1.2em 1.7em 1.2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 280px;
  height: 370px;
  flex: 0 0 280px;
  justify-content: flex-start;
  position: relative;
  backdrop-filter: blur(4px);
  border: 1.5px solid #e3eafc;
  transition: box-shadow 0.22s, transform 0.18s;
  box-sizing: border-box;
}
.featured-item:hover, .featured-item:focus-within {
  box-shadow: 0 8px 32px rgba(0,91,170,0.16), 0 2px 8px rgba(0,0,0,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.featured-item-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 0.32em 1em;
  border-radius: 999px;
  color: #fff;
  font-size: 0.93em;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0.93;
  pointer-events: none;
  background: #2563eb;
}
.featured-item img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  align-self: center;
}
.featured-item h4 {
  margin-bottom: 0.4em;
  color: #222;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-item p {
  color: #607d8b;
  font-size: 1em;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* ---- Brand Logos Section ---- */
.brand-logos {
  background: #f7fafd;
  padding: 2em 0 1.5em 0;
  margin-bottom: 2em;
}
.brand-logos-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.brand-logos-inner img {
  height: 38px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.brand-logos-inner img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---- How to Order Section ---- */
.how-to-order {
  max-width: 1100px;
  margin: 0 auto 3em auto;
  padding: 0 1em 2em 1em;
  text-align: center;
}
.how-to-order h2 {
  color: #005baa;
  margin-bottom: 1.5em;
  font-size: 2rem;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  margin-top: 1em;
}
.order-step {
  background: rgba(255,255,255,0.75);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,91,170,0.10), 0 1.5px 6px rgba(0,0,0,0.08);
  padding: 2em 1.2em 1.7em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  backdrop-filter: blur(4px);
  border: 1.5px solid #e3eafc;
  transition: box-shadow 0.22s, transform 0.18s;
}
.order-step:hover, .order-step:focus-within {
  box-shadow: 0 8px 32px rgba(0,91,170,0.16), 0 2px 8px rgba(0,0,0,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.order-step-icon {
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 0.7em;
  background: linear-gradient(135deg, #2563eb 60%, #22d3ee 100%);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,91,170,0.10);
  margin-top: -2.2em;
  margin-bottom: 1em;
  font-size: 2em;
  border: 2.5px solid #fff;
}
.order-step h4 {
  margin-bottom: 0.3em;
  color: #222;
}
.order-step p {
  color: #607d8b;
  font-size: 1em;
}
/* ---- Testimonials Section ---- */
.testimonials {
  max-width: 1100px;
  margin: 56px auto 0 auto;
  padding: 0 1em 2em 1em;
}
.testimonials h2 {
  text-align: center;
  color: #005baa;
  margin-bottom: 1.5em;
  font-size: 2rem;
}
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.testimonial {
  background: #f5f7fa;
  border-radius: 14px;
  padding: 1.5em 1.2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.testimonial p {
  font-style: italic;
  color: #37474f;
  margin-bottom: 1em;
}
.testimonial-author {
  font-weight: bold;
  color: #005baa;
}
/* ---- Professional Footer ---- */
/* ---- Professional Footer (Enhanced) ---- */
.site-footer {
  background: #181c24;
  color: #fff;
  padding: 2.5em 0 0.5em 0;
  position: relative;
  width: 100%;
  font-size: 1.08rem;
  margin-top: 40px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.07);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5em;
  padding: 0 1.5em 1.5em 1.5em;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5em;
}
.company-info h4 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  color: #fff;
}
.company-info p {
  color: #cfd8dc;
  font-size: 1em;
  margin: 0;
}
.quick-links h5, .social-links h5 {
  font-size: 1.1em;
  margin-bottom: 0.5em;
  color: #fff;
}
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  margin-bottom: 0.4em;
}
.quick-links a {
  color: #b0bec5;
  text-decoration: none;
  transition: color 0.2s;
}
.quick-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 0.7em;
  margin-top: 0.2em;
}
.footer-social svg {
  transition: transform 0.2s, filter 0.2s;
  filter: grayscale(30%);
  background: #fff;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.footer-social:hover svg {
  transform: scale(1.15);
  filter: grayscale(0%);
}
.footer-bottom {
  text-align: center;
  color: #b0bec5;
  font-size: 0.98em;
  border-top: 1px solid #232a36;
  padding: 1em 0 0.5em 0;
  margin-top: 0.5em;
}
@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5em;
    align-items: flex-start;
  }
  .footer-col {
    min-width: 0;
    width: 100%;
  }
}
root{
  --bg:#ffffff;
  --text:#0f172a;          /* slate-900 */
  --muted:#475569;         /* slate-600 */
  --light:#e2e8f0;         /* slate-200 */
  --primary:#2563eb;       /* blue-600 */
  --primary-600:#1d4ed8;
  --blue-50:#eff6ff;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
small{color:var(--muted);letter-spacing:.02em}

.container{max-width:1100px;margin-inline:auto;padding:0 20px}

/* ---- Buttons ---- */
.btn{display:inline-block;padding:.9rem 1.2rem;border-radius:999px;background:var(--primary);color:#fff;font-weight:600}
.btn:hover{background:var(--primary-600)}
.btn-outline{background:transparent;border:1px solid var(--light);color:var(--text)}
.btn-ghost{background:transparent;border:1px solid transparent}
.btn-light{background:#fff;color:var(--text);border:1px solid var(--light)}
.mt{margin-top:1rem}

/* ---- 1) NAV + HERO ---- */
.site-header{position:relative;overflow:hidden}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;gap:.5rem;align-items:center}
.logo{display:inline-grid;place-items:center;width:28px;height:28px;border-radius:6px;background:linear-gradient(135deg,#3b82f6,#22d3ee);color:#fff;font-weight:700}
.menu {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}
.menu a {
  opacity: 0.93;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 0.01em;
  padding: 0.2em 0.7em;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.menu a:hover, .menu a:focus {
  background: linear-gradient(90deg, #e0f2fe 60%, #e3eafc 100%);
  color: #2563eb;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  text-decoration: none;
}
.menu .btn-outline {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 2px solid #2563eb;
  color: #2563eb;
  background: #fff;
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}
.menu .btn-outline:hover, .menu .btn-outline:focus {
  background: linear-gradient(90deg, #2563eb 60%, #22d3ee 100%);
  color: #fff;
  border-color: #22d3ee;
  box-shadow: 0 4px 16px rgba(37,99,235,0.13);
}

.hero{position:relative;isolation:isolate}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.7);z-index:-1}
.hero-content{padding:80px 0 120px;color:#fff}
.hero h1{font-size:clamp(2rem,5vw,3.7rem);line-height:1.1;margin:0 0 .6rem}
.hero .accent{font-weight:800}
.hero p{max-width:650px;opacity:.95}
.actions{display:flex;gap:.75rem;margin-top:1rem}
.btn-ghost{color:#fff;border-color:#ffffff55}

/* ---- 2) CTA BUTTONS ROW ---- */
.cta-row{padding:24px 0;background:var(--blue-50);border-top:1px solid var(--light);border-bottom:1px solid var(--light)}
.cta-row .container{display:flex;gap:12px;flex-wrap:wrap}

/* ---- 3) SERVICES GRID ---- */
.services{padding:70px 0}
.section-head{display:grid;gap:.5rem;max-width:900px}
.section-head h2{font-size:clamp(1.6rem,3.5vw,2.6rem);line-height:1.2;margin:.25rem 0}
.section-head.center{text-align:center;margin-inline:auto}
.cards{margin-top:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{
  border:1px solid var(--light);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
  transition:box-shadow 0.2s, transform 0.18s;
  position:relative;
}
.card:hover, .card:focus-within {
  box-shadow:0 8px 24px rgba(0,91,170,0.13), 0 1.5px 6px rgba(0,0,0,0.08);
  transform:translateY(-4px) scale(1.025);
  z-index:2;
}
.card img{aspect-ratio:4/3;object-fit:cover}
.card h3{margin:12px 14px 16px}

/* ---- 4) BLUE CTA BANNER ---- */
.cta-banner{background:var(--primary);color:#fff;padding:50px 0}
.banner-inner{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap;text-align:center}
.cta-banner .btn-light {
  background: #fff;
  color: #005baa;
  border: 2px solid #fff;
  font-weight: 700;
  border-radius: 24px;
  font-size: 1.22em;
  padding: 1.1em 2.8em;
  min-width: 220px;
  min-height: 54px;
  box-shadow: 0 2px 8px rgba(0,91,170,0.08);
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-top: 0.5em;
}
.cta-banner .btn-light:hover, .cta-banner .btn-light:focus {
  background: #005baa;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
}

/* ---- 5) APPROACH SPLIT ---- */
.approach{padding:70px 0}
.split{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:center}
.split img{border-radius:16px}

/* ---- 6) FULL-BLEED STORY HERO ---- */
.story-hero{position:relative;margin:40px 0}
.story-hero img{width:100%;height:420px;object-fit:cover;border-radius:18px}
.story-overlay{position:absolute;inset:0;display:grid;align-content:end;padding:28px;color:#fff}
.story-overlay h2{font-size:clamp(1.4rem,4vw,2.4rem);margin:0 0 .75rem}
.btn-light.btn-outline{border-color:#fff;color:#fff;background:transparent}

/* ---- 7) FEATURES ---- */
.features{padding:70px 0;background:#fff}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.feature {
  border: 1.5px solid #e0e7ef;
  border-radius: 20px;
  padding: 28px 22px 24px 22px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(37,99,235,0.07);
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(37,99,235,0.13);
  border-color: #b2cec8;
}
.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e0e7ff 60%, #b2cec8 100%);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px 0 rgba(37,99,235,0.06);
}
.feature h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #005baa;
}
.feature p {
  font-size: 1.01rem;
  color: #444;
  margin-bottom: 12px;
}
.feature a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.feature a:hover {
  color: #0e7490;
  text-decoration: underline;
}

.product-card p {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 500px;            /* keeps lines shorter */
  text-align: center;          /* optional: center align */
}


/* ---- 8) PROCESS ---- */
.process{padding:70px 0;background:var(--primary);color:#fff}
.process h2{margin-top:0}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:20px 0}
.step{background:#ffffff12;border:1px solid #ffffff30;border-radius:16px;padding:18px}
.num{font-weight:800;opacity:.9}

/* ---- Footer ---- */
.footer{padding:24px 0;border-top:1px solid var(--light);color:var(--muted);text-align:center}

/* ---- Responsive tweaks ---- */
@media (max-width:900px){
  .cards,.feature-grid,.steps{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .banner-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:600px){
  .cards,.feature-grid,.steps{grid-template-columns:1fr}
  .menu{display:none} /* keep it simple for now */
} 