:root {
  --red: #c9282d;
  --orange: #f28c28;
  --green: #2f7d4f;
  --ink: #202124;
  --muted: #5f656d;
  --line: #dfe3e6;
  --soft: #f5f7f6;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(32, 33, 36, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(70% - 40px));
  margin: 0 auto;
}

.alert-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.80rem;
}

.alert-inner {
  min-height: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alert-bar .btn {
  padding: 2px 7px;
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  border-radius: 5px;
  font-weight: 700;
}

@keyframes blinkPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,255,255,0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,255,255,0);
  }
}

.alert-bar .blink-btn {
  animation: blinkPulse 1.2s infinite;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0 10px;
}

.brand-slot {
  display: flex;
  align-items: center;
}

.brand-slot.center {
  justify-content: center;
  text-align: center;
}

.brand-slot.right {
  justify-content: flex-end;
}

.ap-logo,
.startup-logo {
  width: 90px;             
  height: 90px;
  object-fit: contain;

  border-radius: 50%;       
  background: #ffffff;      
  padding: 0px;           

  box-shadow: 0 1px 4px rgba(0,0,0,0.15); /* subtle govt-style shadow */
}

.district-name {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: -4px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-kicker {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
}

.nav-row {
  border-top: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 0;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 14px 13px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
  color: var(--red);
  border-bottom-color: var(--orange);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(rgba(10, 12, 14, 0.72), rgba(10, 12, 14, 0.58)), url("startup-kadapa-building.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 790px;
  padding: 82px 0;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 10px 0 18px;
  font-size: 3.8rem;
  line-height: 1.05;
}

.hero p,
.page-hero p {
  margin: 0;
  font-size: 1.2rem;
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #a91f24;
}

.btn.secondary {
  background: var(--orange);
  color: #1f1f1f;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #d97716;
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn.ghost:hover,
.btn.ghost:focus {
  background: rgba(255, 255, 255, 0.12);
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background-image: linear-gradient(rgba(10, 12, 14, 0.78), rgba(10, 12, 14, 0.62)), url("startup-kadapa-building.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.section.narrow {
  padding: 52px 0;
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 14px;
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.metric-card,
.feature-card,
.contact-card,
.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card,
.feature-card,
.contact-card,
.event-card {
  padding: 24px;
}

.info-card h3,
.feature-card h3 {
  color: var(--ink);
}

.info-card p,
.feature-card p,
.contact-card p,
.event-card p {
  color: var(--muted);
}

.accent-line {
  width: 54px;
  height: 4px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green));
  border-radius: 4px;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.offer-list li:last-child {
  border-bottom: 0;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: rgba(47, 125, 79, 0.12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.flow-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.metric-card {
  padding: 26px 20px;
  text-align: center;
}

.metric-value {
  display: block;
  color: var(--red);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}

.metric-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.hub-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.image-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(90deg, #8f1d21, #c9282d 48%, #2f7d4f);
}

.cta-band .section-header {
  margin-bottom: 0;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero.compact {
  padding: 58px 0;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.plain-list li:last-child {
  border-bottom: 0;
}

.source-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #aeb5ba;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  background: #202124;
  color: var(--white);
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logos img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .grid.two,
  .grid.three,
  .grid.four,
  .hub-preview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.75rem;
  }

  .brand-row {
    grid-template-columns: 1fr auto 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .alert-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .brand-row {
    gap: 10px;
    padding-top: 10px;
  }

  .ap-logo {
    width: 58px;
    height: 58px;
  }

  .startup-logo {
    width: 68px;
    height: 68px;
  }

  .brand-kicker,
  .brand-slot.right {
    display: none;
  }

  .nav-inner {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    border-top: 1px solid var(--line);
    padding: 8px 0 12px;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu a {
    padding: 10px 0;
    border-bottom: 0;
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 54px 0;
  }

  .flow {
    grid-template-columns: 1fr;
  }
}
