*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #01367A;
  --white: #ffffff;
  --gray: #666;
  --lightgray: #e8e8e8;
  --text: #1a1a1a;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #EFEFEF;
  border-bottom: 1px solid #ebebeb;
  padding: 0 90px;  
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-container{
  display: flex;
  justify-content: center;  
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  /* width: 36px;
  height: 36px; */
  /* background: var(--navy); */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-name span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: transparent;
  color: var(--navy);
  margin-left: 32px;
  padding: 9px 20px;
  border: 1px solid var(--navy);
  /* border-radius: 6px; */
  font-size: 0.83rem;
  font-weight: 600;
}

.nav-cta:hover {
  /* opacity: .85; */
  background: var(--navy);
  color: var(--white);
  transition: background-color .3s;
}

/* HERO */
.hero {
  padding: 70px 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  /* font-size: clamp(2rem, 3.5vw, 3rem); */
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  /* border-radius: 6px; */
  font-size: 0.83rem;
  font-weight: 600;
}

.btn-navy:hover {
  opacity: .85;
}

.hero-img img {
  width: 100%;
  object-fit: contain;
  max-height: 340px;
}

/* CATEGORY STRIP */
.cat-strip {
  background: var(--navy);
}

.cat-strip-inner {
  max-width: 1000px;
  /* height: 120px; */
  margin: 0 auto;
  display: grid;  
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 10px;
}

.cat-item {
  margin:15px 0;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.cat-item:last-child {
  border-right: none;
}

.cat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cat-item p {
  font-size: 0.78rem;
  color: #fff;
}

/* ABOUT */
.about-section {
  padding: 70px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.about-left h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.about-left p {
  font-size: 0.8rem;
  color: var(--gray);
}

.about-right p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* PRODUCTS */
.products-section {
  padding: 20px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.section-heading p {
  font-size: 0.82rem;
  color: var(--gray);
}

.product-card {
  display: grid;
  grid-template-columns: 450px 1.5fr;
  border: 1px solid var(--lightgray);
  /* border-radius: 10px; */
  background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
  overflow: hidden;
  margin-bottom: 20px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  padding: 28px 32px;
}

.product-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.product-body .desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  list-style: none;
}

.product-body ul li {
  font-size: 0.8rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
}

.product-body ul li::before {
  content: '•';
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

/* PRODUCTION */
.production-section {
  padding: 20px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.prod-card {
  /* border-radius: 10px; */
  overflow: hidden;
}

.prod-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.prod-card p {
  font-size: 0.82rem;
  color: #777;
  padding: 10px 2px 0;
  font-weight: 300;
  padding-bottom: 5px;
  border-bottom: 1px solid #777;
}

/* PROCESS */
.process-section {
  padding: 20px 60px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  margin-top: 36px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 4px;
}

.step-arrow {
  position: absolute;
  right: -8px;
  top: 14px;
  font-size: 0.9rem;
  color: #aaa;
  z-index: 1;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #fff;
}

.step-item.active {
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 10px 6px 14px;
  margin-top: -10px;
}

.step-item.active .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-size: 0.9rem;
}

.step-item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 0.7rem;
  color: var(--gray);
  line-height: 1.5;
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 30px 60px;
  overflow: hidden;
  background: url('../images/cta-banner.png') center/cover no-repeat;
}

/* .cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/cta-banner.png') center/cover no-repeat;
  /* opacity: .12; */
} */

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 244, 240, .93);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: 0.86rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* KEY CONTACTS + WHY */
.contacts-why-section {
  padding: 70px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.key-contacts h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.key-contacts .sub {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.person-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.person-card {
  border: 1px solid var(--lightgray);
  border-radius: 10px;
  padding: 18px 16px;
}

.person-card img {
  width: 100%;
  aspect-ratio: 3/3.5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.person-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.person-card .role {
  font-size: 0.73rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.person-card .desc {
  font-size: 0.72rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.connect-btn {
  display: inline-block;
  background: #0A66C2;
  color: #fff;
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 600;
}
.why-us{
  margin-top: 70px;
}
.why-us h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.why-us .intro {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.6;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.why-list li {
  font-size: 0.83rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.why-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-footer {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.why-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* HC BANNER */
.hc-banner {
  /* background: var(--navy); */
  background: url(../images/healthcare-banner.png) center/cover;  
  text-align: center;
  padding: 72px 60px;
}

.hc-banner h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.hc-banner p {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, .6);
  
}

/* CONTACT */
.contact-section {
  padding: 70px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-mockup {
  /* background: #c8651a; */
  /* border-radius: 14px; */
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.contact-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/contact.png') center/cover;  
}

.mock-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-icon {
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-icon svg {
  width: 16px;
  height: 16px;
}

.mock-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.mock-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: #999;
}

.mock-card2 {
  background: var(--navy);
  border-radius: 10px;
  padding: 14px 18px;
  z-index: 1;
  margin-left: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.mock-card2 p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 3px;
}

.mock-card2 h4 {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 700;
}

.contact-form-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form-box .sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 26px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  /* border-radius: 7px; */
  padding: 13px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  opacity: .85;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 50px 60px 28px;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.footer-brand {
  flex: 0 0 300px;
}

.footer-logo {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;  
}

/* .footer-logo-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 16px;
  height: 16px;
} */

.footer-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.footer-logo-name span {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand .tagline {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 12px;
}

.footer-brand .gstin {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-brand address {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-brand .flinks a {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 3px;
}

.footer-brand .flinks a:hover {
  color: #fff;
}

.footer-right {
  /* display: flex; */
  gap: 60px;
  /* align-items: flex-start; */
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 30px;
}

.footer-col ul a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-row a {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 0.72rem;
  font-weight: 700;
  transition: all .2s;
}

.social-row a:hover {
  border-color: #fff;
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .about-section,
  .contacts-why-section,
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .hero-img {
    display: none;
  }

  .cat-strip-inner {
    grid-template-columns: 1fr;
  }

  .products-section,
  .production-section,
  .process-section {
    padding: 30px 20px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 180px;
  }

  .production-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-item {
    flex: 0 0 45%;
  }

  .person-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-right {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cta-banner,
  .hc-banner {
    padding: 50px 20px;
  }
}