* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fbff;
  color: #222;
}

/* Top Bar */
.top-bar {
  background: #063970;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 8%;
  font-size: 14px;
}

.top-bar i {
  margin-right: 6px;
}

/* Navbar */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #063970;
}

.logo span {
  color: #0aa1dd;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.nav-links a:hover {
  color: #0aa1dd;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 26px;
  height: 3px;
  background: #063970;
  margin: 5px;
}

/* Optimized Screenshot Hero Section */
.hero-new {
  min-height: 85vh;
  background: linear-gradient(rgba(0, 92, 170, 0.88), rgba(0, 92, 170, 0.9)),
    url("images/medical-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  color: #fff;
}

.hero-new-content {
  max-width: 950px;
  text-align: left;
}

/* Green Bullet Pill Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #b9dcff;
}

.hero-tag span {
  width: 7px;
  height: 7px;
  background: #00b050;
  border-radius: 50%;
  display: inline-block;
}

/* Headings typography mapping */
.hero-new h1 {
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-new h1 span {
  color: #00b050; /* Exact matching screenshot highlight */
}

.hero-new p {
  font-size: 21px;
  line-height: 1.55;
  max-width: 860px;
  color: #e7f3ff;
  font-weight: 400;
  margin-bottom: 40px;
}

/* Buttons Core Matrix Layout */
.hero-new-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.white-btn,
.green-btn,
.outline-btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease-in-out;
}

.white-btn {
  background: #fff;
  color: #005ca8;
}

.green-btn {
  background: #00b050;
  color: #fff;
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

/* Micro-interaction Hover Animations */
.white-btn:hover,
.green-btn:hover,
.outline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.white-btn:hover {
  background: #f1f7fc;
}

.green-btn:hover {
  background: #009944;
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Responsive Media Queries adaptation */
@media (max-width: 992px) {
  .hero-new h1 {
    font-size: 48px;
  }
  .hero-new p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 60px 5%;
  }
  .hero-new h1 {
    font-size: 36px;
  }
  .hero-new-buttons {
    flex-direction: column;
    width: 100%;
  }
  .white-btn, .green-btn, .outline-btn {
    justify-content: center;
    width: 100%;
  }
}
/* Action Buttons global standards */
.white-btn,
.green-btn,
.outline-btn,
.blue-btn,
.light-btn {
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.white-btn {
  background: #fff;
  color: #005ca8;
}

.green-btn {
  background: #00b050;
  color: #fff;
}

.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.blue-btn {
  background: #005ca8;
  color: #fff;
}

.light-btn {
  border: 1px solid #cbd8e6;
  color: #005ca8;
  background: #fff;
}

.white-btn:hover,
.green-btn:hover,
.outline-btn:hover,
.blue-btn:hover,
.light-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* General Layout System */
section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #063970;
  margin-bottom: 45px;
  font-weight: 800;
}

/* Premium About Section Layout */
.about-new {
  background: #fff;
}

.about-new-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-new-img {
  position: relative;
}

.about-new-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.client-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.client-badge h3 {
  color: #005ca8;
  font-size: 34px;
  font-weight: 800;
}

.client-badge p {
  color: #4b5d73;
  font-weight: 600;
  font-size: 14px;
}

.about-new-content h2 {
  font-size: 40px;
  margin-bottom: 22px;
  color: #063970;
  font-weight: 800;
}

.about-new-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5d73;
  margin-bottom: 20px;
}

.about-new-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-new-content li {
  font-size: 18px;
  margin-bottom: 14px;
  color: #222;
  display: flex;
  align-items: center;
}

.about-new-content li::before {
  content: "✓";
  color: #00b050;
  font-weight: bold;
  margin-right: 12px;
  border: 2px solid #00b050;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.about-new-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Why Choose Us Block */
.why-us {
  background: #eef7ff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-box {
  background: white;
  padding: 35px 25px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box i {
  font-size: 38px;
  color: #0aa1dd;
  margin-bottom: 15px;
}

.why-box h3 {
  color: #063970;
  margin-bottom: 10px;
  font-size: 20px;
}

.why-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

/* Filter Search UI */
.search-box {
  max-width: 500px;
  margin: 0 auto 45px;
  background: white;
  padding: 14px 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid #e1e9f5;
}

.search-box i {
  color: #0aa1dd;
  margin-right: 12px;
  font-size: 18px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  color: #333;
}

/* Product Cards Matrix */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #edf3f8;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #fafafa;
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  color: #063970;
  margin-bottom: 12px;
  font-size: 21px;
}

.product-content ul {
  margin-left: 18px;
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

.product-content li {
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-info {
  background: #f1f7fc;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: auto; /* Pushes button to bottom uniformly */
}

.product-info p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.product-info p:last-child {
  margin-bottom: 0;
}

.product-btn {
  display: block;
  text-align: center;
  background: #0aa1dd;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 18px;
  transition: background 0.2s ease;
}

.product-btn:hover {
  background: #063970;
}

/* Statistics Counter Section */
.stats-section {
  background: #063970;
  color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
  padding: 60px 8%;
}

.stat-box h2 {
  font-size: 42px;
  margin-bottom: 8px;
  font-weight: 800;
  color: #0aa1dd;
}

.stat-box p {
  font-size: 16px;
  color: #d1e6ff;
  font-weight: 600;
}

/* New Modern Contact Section */
.contact-new {
  background: #005ca8;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-left span {
  font-weight: 800;
  color: #9ed0ff;
  letter-spacing: 1px;
  font-size: 13px;
}

.contact-left h2 {
  font-size: 44px;
  margin: 15px 0 22px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #d9ecff;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
}

.contact-info-card i {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.contact-info-card small {
  color: #9ed0ff;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card strong {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.contact-form-box {
  background: #fff;
  color: #000;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-form-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #063970;
  font-weight: 800;
}

.contact-form-box p {
  color: #56677f;
  margin-bottom: 25px;
  font-size: 15px;
}

.contact-form-box label {
  display: block;
  margin: 14px 0 6px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 4px;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  font-size: 15px;
  background: #fbfdfe;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: #005ca8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-box button {
  width: 100%;
  padding: 16px;
  background: #005ca8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s;
}

.contact-form-box button:hover {
  background: #063970;
}

/* Sticky Utility Floating Nodes */
.whatsapp-btn,
.call-btn {
  position: fixed;
  right: 25px;
  width: 54px;
  height: 54px;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  bottom: 95px;
  background: #25d366;
}

.call-btn {
  bottom: 25px;
  background: #063970;
}

/* Master Integrated Footer Structural Core */
.footer {
  background: #075fa8;
  color: #d9ecff;
  padding-top: 60px;
  border-top: 4px solid #0aa1dd;
}

.footer-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 110px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.6;
  color: #d9ecff;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00b84a;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: opacity 0.2s;
}

.footer-whatsapp:hover {
  opacity: 0.9;
}

.footer-section h3, 
.supply-title {
  color: #8dc7ff;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  font-weight: 800;
}

.supply-title {
  margin-top: 30px;
}

.footer-section ul, 
.supply-list {
  list-style: none;
  padding: 0;
}

.footer-section ul li, 
.supply-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #d9ecff;
}

.footer-section ul li a {
  color: #d9ecff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #00c853;
}

.supply-list li {
  display: flex;
  align-items: center;
}

.supply-list li::before {
  content: "•";
  color: #00c853;
  font-size: 22px;
  margin-right: 8px;
  line-height: 0;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item i {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.contact-item span {
  color: #8dc7ff;
  font-size: 13px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

.contact-item p {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  padding: 25px 6%;
  color: #8dc7ff;
  font-size: 14px;
  background: #054d88;
}

.footer-bottom p {
  margin: 4px 0;
}

/* Breakpoint Media Queries Layer */
@media (max-width: 1200px) {
  .hero-new h1 { font-size: 46px; }
  .about-new-container, .contact-new { gap: 40px; }
}

@media (max-width: 992px) {
  .about-new-container, .contact-new {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .about-new-img img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 8px 5%;
  }

  .navbar {
    padding: 15px 5%;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 66px;
    background: white;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    gap: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .hero-new {
    padding: 60px 5%;
  }

  .hero-new h1 {
    font-size: 34px;
  }

  .hero-new p, .contact-left p {
    font-size: 16px;
  }

  .hero-new-buttons, .about-new-buttons, .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-new-img img {
    height: 320px;
  }

  .client-badge {
    right: 10px;
    bottom: -10px;
    padding: 12px 18px;
  }
  
  .client-badge h3 { font-size: 24px; }

  section, .about-new, .contact-new {
    padding: 50px 5%;
  }

  .contact-form-box {
    padding: 25px 20px;
  }

  .contact-left h2 { font-size: 32px; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
}