:root {
  --primary: #6a5cff;      /* keep purple as accent */
  --secondary: #1e293b;    /* dark navy, replaces pink */
  --text-dark: #111827;    /* headings, body text */
  --text-light: #555555;   /* subtitles, descriptions */
  --bg-light: #f9fafb;     /* page / section backgrounds */
  --border: #e5e7eb;       /* card borders, timeline lines */
}

body{
margin:0;
font-family:Poppins;
color:#222;
background:#f8f9fc;
}

.navbar {
  background-color: #ffffff; /* pure white */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* subtle separation */
  position: sticky; /* optional, stays on top when scrolling */
  top: 0;
  z-index: 999;
}

.nav-menu a {
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
  color: #000; /* black text for visibility on white background */
  position: relative;
  transition: color 0.3s;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #111; /* black text */
  cursor: pointer;
}

.logo img{
  height:40px;
  width:auto;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#6a5cff,#ff3c7a); /* subtle hover underline */
  left: 0;
  bottom: -4px;
  transition: width 0.4s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #6a5cff; /* subtle hover color */
}

.cta {
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(106,92,255,0.4);
}

/* small gradient badge */
.logo .badge {
  font-size: 18px;
  margin-left: 8px;
  background: linear-gradient(135deg,#6a5cff,#ff3c7a);
  padding: 2px 6px;
  border-radius: 6px;
  color: #fff;
}

/* hover magic underline gradient */

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #000;
}

/* CTA button */
.cta {
  background: linear-gradient(135deg,#6a5cff,#ff3c7a);
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(106,92,255,0.4);
}

/* subtle animated glow on navbar hover */
.navbar:hover {
  box-shadow: 0 8px 28px rgba(106,92,255,0.3);
  transition: box-shadow 0.3s ease;
}

.hero {
  position: relative;
  background: url('images/hero.png') no-repeat;
  background-size: cover;
  background-position: right center;

  height: 90vh;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 100px 8% 0;
  color: #fff;
}

/* DARK GRADIENT FOR TEXT VISIBILITY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0)
  );
}

/* CONTENT */
.hero-content {
  margin-top: -140px; /* move up */
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* SMALL TAGLINE */
.tagline {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ccc;
}

/* MAIN HEADING */
.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* SUBTEXT */
.subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

/* BADGES */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.badges span {
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #f5b400;
  color: #000;
}

.btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* Paragraph - gradient text for premium feel */
/* Paragraph text - bright, readable, premium */
.hero-content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
  
  /* Solid bright color */
  color: #ffffff; /* white base for readability */
  
  /* Optional subtle gradient overlay effect */
  background: linear-gradient(90deg, #9b5de5, #f15bb5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff; /* fallback solid white */
  
  /* Shadow to make it pop */
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Badges - gradient background */
.hero-badges span {
  background: linear-gradient(135deg, #9b5de5, #f15bb5); /* purple-pink gradient */
  color: #fff; /* white text on gradient */
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* subtle depth */
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Checkmark - highlight slightly brighter */
.hero-badges span::before {
  content: "✔";
  color: #ffd6f0; /* soft bright pink accent */
  font-weight: bold;
  font-size: 16px;
}

/* Hover effect for badges */
.hero-badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* add margin-top to push buttons down */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px; /* push buttons down from badges */
}
.hero-buttons .btn{
  padding:12px 28px;
  border-radius:25px;
  font-weight:600;
  text-decoration:none;
  margin:0 10px;
  transition: transform .3s, box-shadow .3s;
}



.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106,92,255,0.4);
}

.btn.secondary {
  background: rgba(255,255,255,0.2);
  color:#fff;
}

.btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* single subtle floating icon */

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.btn{
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.primary{
background:white;
color:#6a5cff;
}

.secondary{
border:2px solid white;
color:white;
}

.section{
padding:100px 8%;
text-align:center;
}

.subtitle{
color:#666;
margin-bottom:40px;
}

.trust{
background:white;
padding:60px 8%;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
}

/* Section */
.section {
  padding: 100px 8%;
  text-align: center;
  position: relative;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}


.network-section{
background: linear-gradient(180deg,#f8fafc,#ffffff);
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.feature-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
text-align:center;
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.icon-circle{
width:60px;
height:60px;
background:#eef2ff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
margin:0 auto 15px;
}

.comparison{
margin-top:80px;
}

.comparison-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:30px;
}

.compare-box{
padding:30px;
border-radius:12px;
background:white;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.compare-box.factory{
border-left:5px solid #ff6b6b;
}

.compare-box.fabriccrew{
border-left:5px solid #2ecc71;
}

.compare-box ul{
margin-top:15px;
padding-left:20px;
}

.compare-box li{
margin-bottom:10px;
}

/* Animation */
.animate {
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.dark{
background:#111;
color:white;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.step span{
background:#6a5cff;
color:white;
padding:8px 14px;
border-radius:50%;
}

.contact form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:14px;
border:1px solid #ddd;
border-radius:6px;
}


.icon{
font-size:38px;
margin-bottom:15px;
}

.manufacturing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
margin-top:50px;
}

.manu-step{
background:white;
border-radius:14px;
padding:25px;
text-align:center;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
transition:transform .3s ease, box-shadow .3s ease;
opacity:0;
transform:translateY(30px);
}

.manu-step:hover{
transform:translateY(-10px);
box-shadow:0 18px 38px rgba(0,0,0,0.12);
}

.manu-step .icon{
font-size:40px;
margin-bottom:12px;
}

.manu-step img{
width:100%;
border-radius:10px;
margin-top:12px;
height:160px;
object-fit:cover;
}

/* SECTION */
.process-section {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 40px;
}

/* TIMELINE LINE */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  top: 0;
  bottom: 0;
  background: #e5e7eb;
}

/* ITEM */
.timeline-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* CONTENT BOX */
.content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: inline-block;
  max-width: 300px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1f2937, #4b5563);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* TEXT */
.content h4 {
  margin: 5px 0;
  font-size: 15px;
  color: #111827;
}

.content p {
  font-size: 13px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0;
  }

}

.work-section{
background:#f9fafb;
}

.work-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.work-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.work-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.work-card img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.work-info{
padding:20px;
}

.work-info h3{
margin-bottom:8px;
}

.work-cta {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  clear: both;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.95);
  color: #fff;
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cookie-popup a {
  color: #6a5cff;
  text-decoration: underline;
}

.cookie-popup button {
  background: linear-gradient(135deg,#6a5cff,#ff3c7a);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(106,92,255,0.4);
}

/* Footer styling */
.site-footer {
  background-color: var(--text-dark); /* dark navy/gray */
  color: #f8f9fc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
}

.site-footer a:hover {
  color: #8a6bff;
}

/* Hamburger menu - hidden by default */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none; /* HIDDEN on desktop */
}

/* Mobile view only */
@media (max-width:768px) {
  .menu-toggle {
    display: block; /* SHOW on mobile */
    margin-bottom: 10px;
  }

  .nav-menu {
    display: none; /* hide menu initially */
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu.active {
    display: flex; /* show menu when hamburger clicked */
  }
}

/* ------------------- MOBILE RESPONSIVE FIXES ------------------- */
/* ---------------- MOBILE RESPONSIVE ---------------- */

@media (max-width:768px){

  /* NAVBAR */
  .nav-container{
    padding:16px 5%;
    position:relative;
  }

  .menu-toggle{
    display:block;
    font-size:28px;
    cursor:pointer;
  }

  .nav-menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#ffffff;
    padding:20px 0;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    z-index:999;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-menu a{
    padding:12px 20px;
    margin:0;
    text-align:left;
  }

  .nav-menu .cta{
    margin:15px 20px 0;
    text-align:center;
  }

  /* HERO MOBILE FIX */
/* HERO MOBILE FIX */
.hero {
  height: 90vh; /* give space for image */
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background-image: url('images/hero-m.png'); /* your mobile image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px; /* spacing from image */
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.hero h1 {
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hero p {
  font-size: 15px;
  margin-bottom: 20px;
}

.hero-badges {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-badges span {
  font-size: 13px;
  padding: 6px 12px;
}

.hero-buttons {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 260px;
}

.floating-icon {
  display: none;
}

  /* SECTIONS */

  .section{
    padding:70px 6%;
  }

  .section h2{
    font-size:28px;
  }

  .section .subtitle{
    font-size:16px;
  }

  /* PRODUCTS */


  /* FEATURE GRID */

  .features{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* COMPARISON */

  .comparison-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* PROCESS */

  .process-grid{
    grid-template-columns:1fr;
  }

  /* MANUFACTURING */

  .manufacturing-grid{
    grid-template-columns:1fr;
  }

  /* WORK */

  .work-grid{
    grid-template-columns:1fr;
  }

  /* CONTACT FORM */

  input, textarea{
    width:100%;
  }

  /* COOKIE POPUP */

  .cookie-popup{
    flex-direction:column;
    text-align:center;
    gap:10px;
    width:90%;
  }

}

/* Page Background */
.quote-page {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
  font-family: 'Inter', sans-serif;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.quote-page h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 10px;
}


/* Process Steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.process div {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #444;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.process div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Form Card */
.quote-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Section Titles */
.quote-form h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
  border-left: 4px solid #6c4cff;
  padding-left: 10px;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

/* Inputs */
.form-row input,
.form-row select,
textarea {
  flex: 1;
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fafafa;
}

/* Focus Effect */
.form-row input:focus,
.form-row select:focus,
textarea:focus {
  outline: none;
  border-color: #6c4cff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108,76,255,0.1);
}

/* Textarea */
textarea {
  width: 100%;
  min-height: 130px;
  margin-bottom: 25px;
}

/* Button */
.btn.primary {
  background: linear-gradient(135deg, #6a5cff, #ff3c7a);
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(106,92,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .quote-page h1 {
    font-size: 30px;
  }
}

/* =========================
   DESIGN PAGE
========================= */

.design-page {
  padding-top: 90px; /* avoid navbar overlap */
}

/* HEADER */
.design-page .header {
  padding: 40px 8% 20px;
  text-align: center;
}

.design-page .header h1 {
  font-size: 32px;
  font-weight: 600;
}

.design-page .header p {
  color: #666;
  margin-top: 8px;
  font-size: 15px;
}

/* FILTERS */
.design-page .filters {
  text-align: center;
  margin: 25px 0 40px;
}

.design-page .filter-btn {
  padding: 8px 18px;
  margin: 6px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.design-page .filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* GRID */
.design-page .design-grid {
  padding: 0 8% 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.design-page .design-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.design-page .design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.design-page .design-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* CONTENT */
.design-page .card-content {
  padding: 16px;
}

.design-page .card-content h3 {
  font-size: 15px;
  font-weight: 500;
}

.design-page .card-content p {
  font-size: 13px;
  color: #888;
}

/* BUTTON */
.design-page .select-btn {
  display: block;
  margin: 0 16px 16px;
  padding: 10px;
  text-align: center;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* brand hover */
.design-page .select-btn:hover {
  background: linear-gradient(90deg, #ff4d8d, #7a5cff);
  color: #fff;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .design-page .header {
    padding: 30px 20px 10px;
  }

  .design-page .header h1 {
    font-size: 24px;
  }

  .design-page .header p {
    font-size: 14px;
  }

  .design-page .design-grid {
    padding: 0 20px 40px;
    gap: 20px;
  }

  .design-page .design-card img {
    height: 220px;
  }
}

/* LIGHTBOX STYLES */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #bbb;
}

.solutions-premium {
  padding: 100px 8%;
  background: #fff;
}

.solutions-premium h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.solutions-premium .subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

/* ROW */

.solution-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.solution-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */

.solution-row .text {
  flex: 1;
}

.solution-row h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.solution-row p {
  color: #555;
  margin-bottom: 15px;
}

.solution-row ul {
  padding-left: 18px;
  color: #444;
}

.solution-row li {
  margin-bottom: 6px;
}

/* IMAGE */

.solution-row .image {
  flex: 1;
  display: flex;
}

.solution-row .image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* MOBILE */

@media (max-width: 768px) {
  .solution-row {
    flex-direction: column;
    gap: 25px;
  }

  .solution-row.reverse {
    flex-direction: column;
  }

  .solution-row .image img {
    aspect-ratio: 4 / 3;
  }
}

/* solution page */
.hero-banner {
  background: url("images/sb.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-banner1 {
  background: url("images/wb.png") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30); /* dark overlay for readability */
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #ffcc00;
  color: #000;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}