
:root{
  --primary:#f5a623;
  --dark:#0f172a;
  --light:#f8fafc;
}

body{
  margin:0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color:#111;
  background:
    radial-gradient(circle at 10% 10%, rgba(245,166,35,0.15), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(15,23,42,0.15), transparent 40%),
    linear-gradient(135deg, #ffffff, #eef2f7);
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
}

.card-glass{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  padding:40px;
}

.logo{
  max-height:110px;
}

.badge-soon{
  background:var(--primary);
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
  display:inline-block;
}

.manufacturer li{
  padding:6px 0;
  border-bottom:1px dashed #ddd;
}

.manufacturer li:last-child{
  border-bottom:none;
}

.contact-box{
  background:#fff;
  border-radius:14px;
  padding:20px;
  height:100%;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

footer{
  background:var(--dark);
  color:#fff;
  padding:18px 0;
}

@media(max-width:768px){
  .card-glass{
    padding:25px;
  }
}


/* Country badges */
.country-badges{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:18px;
}
.flag{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:14px;
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}
.flag.india{
  background: linear-gradient(180deg,#ff9933 33%, #ffffff 33% 66%, #138808 66%);
  color:#0f172a;
}
.flag.saudi{
  background:#006c35;
}
.flag.uganda{
  background: linear-gradient(180deg,#000 20%, #fcdc04 20% 40%, #d90000 40% 60%, #000 60% 80%, #fcdc04 80%);
}

/* Manufacturer grid */
.mfg-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:14px;
}
.mfg-item{
  background:#fff;
  border-radius:14px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.mfg-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
}


/* Industrial background enhancement */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(135deg, rgba(15,23,42,.85), rgba(245,166,35,.25)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.04) 10px,
      transparent 10px,
      transparent 20px
    );
  z-index:-1;
}

/* Contact logo */
.contact-logo{
  width:42px;
  margin-bottom:8px;
}


/* ================== RESPONSIVE FIXES ================== */

img {
  max-width: 100%;
  height: auto;
}

.hero {
  min-height: auto;
  padding: 40px 0;
}

.card-glass {
  padding: 24px;
  margin: 12px;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.country-badges {
  justify-content: center;
}

.contact-box {
  padding: 16px;
}

@media (max-width: 768px) {
  .card-glass {
    padding: 20px;
  }

  .manufacturer,
  .mfg-grid {
    grid-template-columns: 1fr;
  }

  .contact-logo {
    width: 36px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 24px 0;
  }

  .btn-lg {
    width: 100%;
  }
}
