:root {
  --bg: #0b0d12;
  --card: #12151d;
  --text: #e8ebf0;
  --muted: #a9b1bd;
  --brand: #d21f26;
  --ring: rgba(210,31,38,0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji';
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(210,31,38,.25), transparent 50%) no-repeat,
    radial-gradient(800px 500px at -10% 20%, rgba(76,110,245,.15), transparent 55%) no-repeat,
    var(--bg);
  line-height: 1.6;
}

.container { width: min(1100px, 90%); margin: 0 auto; }

header {
  position: sticky; top: 0; backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(11,13,18,.9), rgba(11,13,18,.6) 60%, transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 10;
}

.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }

.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo { width: 56px; height: 56px; display: block; }

.brand { font-weight: 800; letter-spacing: .3px; font-size: 1.1rem; color: var(--text); }

.cta {
  background: var(--brand); color: white; border: none; border-radius: 999px;
  padding: 10px 16px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 24px var(--ring);
}
.cta:hover { transform: translateY(-1px); }

main { padding: 48px 0 80px; }

.hero {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; margin-top: 12px; padding-bottom: 50px;
}

.hero h1 { font-size: 30px; line-height: 1.15; margin: 0 0 10px; }

.hero p { color: var(--muted); margin: 0 0 20px; font-size:15px;}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.badge {
  background: rgba(210,31,38,.14); color: #ffdede; border: 1px solid rgba(210,31,38,.4);
  padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: .86rem;
}

.section-title { font-size: 1.3rem; margin: 40px 0 12px; }

/* Responsive iframe */
.form-wrap { position: relative; width: 100%; }

.form-wrap iframe { width: 100%; border: 0; height: 2657px; background: transparent; }

footer { color: var(--muted); padding: 32px 0 60px; }

.socials { display: flex; gap: 14px; }

.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.03);
}

.socials svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .logo { width: 48px; height: 48px; }
}


.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;      /* makes a circle */
  height: 36px;
  border-radius: 50%;
  background-color: transparent; /* default no background */
  color: white;     /* svg fill will follow this */
  transition: all 0.3s ease;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor; /* inherits white */
}

.socials a:hover {
  background-color: red; /* red circle background */
  color: white;          /* icon stays white */
}



.msme-info {
  background-color: #ffffff;   /* white background */
  color: #c80000;              /* red text */
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;   /* smooth hover effect */
}

.msme-info:hover {
  background-color: #ffeaea;   /* light red background on hover */
  box-shadow: 0 4px 12px rgba(200, 0, 0, 0.3);
}

.msme-info p {
  margin-bottom: 15px;
}

.msme-info ul {
  padding-left: 20px;
}

.msme-info ul li {
  margin-bottom: 8px;
}



.center-section {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  height: 100vh;             /* full viewport height */
  width: 100%;               /* full screen width */
}

.section-title {
  font-size: 40px;
  background-color: #c80000; /* red background */
  color: #ffffff;            /* white text */
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}


