:root {
  --primary: #0b2c4d; /* navy */
  --accent: #2f75b5; /* blue */
  --soft: #eef5fb; /* light blue */
  --border: #cfe0f1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  background: #0b2c4d;
  color: #fff;
  padding: 15px 0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background:
    linear-gradient(rgba(11, 44, 77, 0.9), rgba(11, 44, 77, 0.9)),
    url("../images/factory/factory7.jpeg") center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
}
.section {
  background-color: #fdf4ee;
  padding: 60px 0;
}

.section.light {
  background: #f9f9f9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stats div {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.stats div:hover {
  transform: translateY(-8px);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}

.card:hover {
  background: #0b2c4d;
  color: #fff;
  transform: translateY(-8px);
}

.center-text {
  text-align: center;
  margin-bottom: 30px;
}

/* IMAGE WALL */
.image-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.image-wall img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}

.image-wall img:hover {
  transform: scale(1.05);
}

/* CONTACT FORM */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #0b2c4d;
  color: #fff;
  padding: 12px;
  border: none;
  cursor: pointer;
}

.footer {
  background: #0b2c4d;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* MOBILE NAV FIX */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }
}

body {
  background: #f4f6f9;
  color: #222;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h2 {
  margin-bottom: 10px;
}

/* COMPANY OVERVIEW */
.overview {
  background: #ffffff;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0b2c4d;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.overview-card {
  padding: 30px;
  border-radius: 10px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.overview-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.overview-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* Dark & Light variants (like PDF) */
.overview-card.dark {
  background: #1e3a5f;
  color: #ffffff;
}

.overview-card.light {
  background: #a9c9e8;
  color: #0b2c4d;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.overview-text {
  font-size: 16px;
  max-width: 900px;
  line-height: 1.7;
}

/* MANUFACTURING EXCELLENCE */
.manufacturing {
  background: #ffffff;
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* LEFT PANEL */
.manufacturing-left {
  background: #062f57;
  color: #fff;
  padding: 35px;
  border-radius: 12px;
}

.manufacturing-left h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.manufacturing-left ul {
  list-style: none;
}

.manufacturing-left li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.manufacturing-left li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7fb3e6;
  font-size: 20px;
}

/* RIGHT PANEL */
.manufacturing-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.metric-card {
  padding: 22px;
  border-radius: 10px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.metric-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.metric-card p {
  font-size: 18px;
  font-weight: 700;
}

/* Color Variants */
.metric-card.light {
  background: #dfe6ee;
}

.metric-card.dark {
  background: #8fa1b5;
  color: #fff;
}

.metric-card.blue {
  background: #9fc5e8;
}

.metric-card.wide {
  grid-column: span 2;
  background: #2f75b5;
  color: #fff;
}

/* Hover Effect */
.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT PORTFOLIO */
.product-portfolio {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.portfolio-card {
  padding: 30px;
  border-radius: 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.portfolio-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.portfolio-card ul {
  list-style: none;
  padding-left: 0;
}

.portfolio-card li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Color Variants (matching PDF) */
.portfolio-card.dark {
  background: #062f57;
  color: #ffffff;
}

.portfolio-card.blue {
  background: #4f8edb;
  color: #ffffff;
}

.portfolio-card.cyan {
  background: #00b4d8;
  color: #ffffff;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-text {
  margin-top: 25px;
  font-size: 16px;
  max-width: 900px;
}

/* MARKET OPPORTUNITY */
.market-opportunity {
  background: #ffffff;
}

.market-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT */
.market-left h3 {
  margin-bottom: 15px;
  color: #0b2c4d;
}

.market-box {
  border: 1px solid #d0d7e2;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.market-box strong {
  display: block;
  margin-bottom: 5px;
}

.target-markets {
  list-style: none;
  padding: 0;
}

.target-markets li {
  border: 1px solid #4f8edb;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* RIGHT */
.market-right {
  text-align: left;
}

.map-title {
  margin-bottom: 15px;
  color: #0b2c4d;
}

/* MAP */
.map-container {
  position: relative;
  max-width: 420px;
  margin: auto;
}

.india-map {
  width: 100%;
}

.state {
  fill: #d3dce6;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.state.active {
  fill: #4f8edb;
}

.state:hover {
  fill: #00b4d8;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transform: scale(1.02);
}

/* TOOLTIP */
.map-tooltip {
  position: absolute;
  background: #0b2c4d;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.map-caption {
  margin-top: 12px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
}
/* GEOGRAPHIC PRESENCE - STATE BOXES */
.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row on desktop */
  gap: 20px;
  margin-top: 25px;
}

.state-box {
  border: 2px solid #4f8edb;
  padding: 22px 10px; /* ⬅ increased size */
  text-align: center;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px; /* ⬅ bigger text */
  color: #0b2c4d;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Hover animation */
.state-box:hover {
  background: #4f8edb;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.map-title.center {
  text-align: center;
}

@media (max-width: 768px) {
  .states-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
  }
}

@media (max-width: 480px) {
  .states-grid {
    grid-template-columns: 1fr; /* 1 per row on very small screens */
  }
}

.valuation-grid,
.roadmap-grid,
.team-grid,
.investment-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.val-box,
.road-card,
.team-card,
.inv-card,
.industry-box {
  .market-opportunity {
    background: #ffffff;
  }
  border-left: 6px solid var(--accent);
  padding: 22px;
  border-radius: 14px;
  transition: 0.3s;
}

.val-box.dark,
.industry-box.dark {
  background: #0b2c4d;
  color: #fff;
}
.industry-box.light {
  background: #2078d1;
  color: #fff;
}

.val-box:hover,
.road-card:hover,
.team-card:hover,
.inv-card:hover,
.industry-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.road-card h4 {
  color: var(--primary);
}
.road-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.team-card {
  background: #ffffff;
  border-top: 6px solid var(--primary);
  padding: 22px;
  border-radius: 14px;
  transition: 0.3s;
}

.team-card h4 {
  color: var(--primary);
}
.team-card:hover {
  background: var(--soft);
  transform: translateY(-6px);
}
.inv-card {
  background: linear-gradient(135deg, var(--soft), #ffffff);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.inv-card:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.section-title {
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
}

/* Section wrapper */
.section {
  padding: 40px 0;
  background-color: #f5e4da;
}

/* Heading */
.section h2 {
  text-align: center;
  color: #0b2c4d;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2f75b5;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Grid layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Cards */
.product-grid .card {
  background: #ffffff;
  border-left: 6px solid #2f75b5;
  padding: 22px 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #0b2c4d;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  cursor: default;
}

/* Hover effect */
.product-grid .card:hover {
  background: #2f75b5;
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* Responsive tweak */
@media (max-width: 576px) {
  .section h2 {
    font-size: 28px;
  }

  .product-grid .card {
    font-size: 15px;
    padding: 18px;
  }
}

.manufacturing {
  background: #ffffff;
}
.market-opportunity {
  background: #ffffff;
}

/* CONTACT SECTION */
.contact-section {
  min-height: calc(100vh - 140px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f7ede2, #fff);
  padding: 31px 20px;
}

/* CARD */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-card h2 {
  font-size: 32px;
  color: #0a2340;
}

.subtitle {
  margin-bottom: 30px;
  color: #555;
}

/* FORM */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-card textarea {
  resize: none;
  height: 120px;
}

.contact-card button {
  width: 100%;
  padding: 14px;
  background: #0a2340;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-card button:hover {
  background: #123b6d;
}

/* SUCCESS MESSAGE */
.success-msg {
  background: #e6fffa;
  color: #0f5132;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}
