* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #f9fbff;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #6366f1;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(90deg,#8b5cf6,#0ea5e9);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #e5e7eb;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
}

.hamburger {
  display: none;
  font-size: 22px;
  color: #2563eb;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 120px 20px 90px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f5f8ff 0%,
    #f9fbff 60%,
    #ffffff 100%
  );
}

/* Soft wave background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, #e0e7ff 0%, transparent 60%),
    radial-gradient(circle at 80% 40%, #dbeafe 0%, transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #eef2ff;
  color: #4f46e5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #4f46e5;
  border-radius: 50%;
}

/* Title */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.hero-title span {
  background: linear-gradient(90deg, #8b5cf6, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
  max-width: 720px;
  margin: 22px auto 36px;
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

/* Powered Badge */
.powered-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 999px;

  background: #eef4ff;
  border: 1px solid #c7d2fe;

  font-size: 13px;
  font-weight: 500;
  color: #0ea5e9;
}

/* Blinking Dot */
.blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ea5e9;

  animation: blink 2.5s infinite ease-in-out;
}

/* Blink Animation */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}


/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(90deg, #8b5cf6, #0ea5e9);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
}

/* Stats */
.hero-stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
}

.stat p {
  margin-top: 6px;
  font-size: 14px;
  color: #64748b;
}

/* Hero */
/* .hero {
  padding: 100px 0;
  background: radial-gradient(circle at top,#eef2ff,#f9fbff);
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(90deg,#8b5cf6,#0ea5e9);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 700px;
  margin: auto;
  color: #6b7280;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
} */


/* ===== PROBLEMS SECTION ===== */
.problems-section {
  padding: 100px 20px;
  background: #ffffff;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #2563eb;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.section-title span {
  background: linear-gradient(90deg, #8b5cf6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 680px;
  margin: 16px auto 60px;
  text-align: center;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.problem-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.problem-card.active {
  border-color: #6366f1;
}

.problem-card h4 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.problem-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

/* Icon box */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
}

/* Gradients */
.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.gradient-indigo {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.gradient-sky {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

/* ===== HEALTHCARE SOLUTIONS SECTION ===== */
.solutions-section {
  padding: 110px 20px;
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );
}

.solutions-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #2563eb;
  margin-bottom: 14px;
}

.solutions-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(90deg, #8b5cf6, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-subtitle {
  max-width: 720px;
  margin: 20px auto 70px;
  text-align: center;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* Grid */
.solutions-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.solution-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.solution-card.active {
  background: #f0f7ff;
  border-color: #bfdbfe;
}

.solution-card h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.solution-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64748b;
}



/* Icon */
.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eaf2ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}


/* ===== WHY PARTNER SECTION ===== */
.partner-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f9ff 100%
  );
}

.partner-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.partner-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #2563eb;
  margin-bottom: 14px;
}

.partner-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.partner-title span {
  background: linear-gradient(90deg, #8b5cf6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-desc {
  margin-top: 18px;
  max-width: 520px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #64748b;
}

.partner-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0 40px;
}

.partner-points ul {
  list-style: none;
}

/* .partner-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #0f172a;
}

.partner-points li::before {
  content: "✔";
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
} */

.partner-points li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #0f172a;
}

.partner-points li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 2px;

  font-size: 20px;
  color: #2563eb; /* blue tick */
}


/* BUTTON */
.partner-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
}

/* RIGHT */
.partner-right {
  position: relative;
}

.advantage-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #8b5cf6, #0ea5e9);
  color: #ffffff;
  font-size: 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #0f172a;
}

/* STEPS */
.advantage-step {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: #f8fafc;
  margin-bottom: 16px;
}

.advantage-step span {
  font-size: 22px;
  font-weight: 700;
  color: #6366f1;
}

.advantage-step h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: #0f172a;
}

.advantage-step p {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 4px;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );
}

.contact-label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #2563eb;
  margin-bottom: 14px;
}

.contact-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.contact-title span {
  background: linear-gradient(90deg, #8b5cf6, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  max-width: 720px;
  margin: 20px auto 70px;
  text-align: center;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
}

/* Grid */
.contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.gradient-sky {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.info-item h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: #0f172a;
}

.info-item p {
  font-size: 14px;
  color: #64748b;
  margin-top: 4px;
}

/* FORM */
.contact-form-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
}

/* Button */
.btn-full {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
}


/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 80px 20px 30px;
}

.footer-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
}

/* Links */
.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Divider */
.footer-divider {
  max-width: 1200px;
  margin: 60px auto 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #9ca3af;
}

.footer-legal a:hover {
  color: #ffffff;
}










/* Sections */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #fff;
}

.section h2 span {
  color: #6366f1;
}

.section-desc {
  color: #6b7280;
  margin: 15px 0 40px;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.footer a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-stats {
    gap: 32px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solutions-title {
    font-size: 38px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .partner-title {
    font-size: 32px;
  }

  .partner-points {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal a {
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 992px) {
  .grid-2, .grid-3, .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 36px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .btn-primary {
    display: none; /* optional: hides button on mobile */
  }
}




@media (max-width: 768px) {
  .header-inner {
    padding: 0 10px;
  }

  .logo {
    font-size: 20px;
  }
}

@media (max-width: 576px) {

  .hero {
    padding: 90px 16px 70px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
    margin: 16px auto 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat h3 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {

  .problem-card,
  .solution-card {
    padding: 26px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .partner-desc {
    max-width: 100%;
  }

  .partner-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {

  .contact-section {
    padding: 90px 16px;
  }

  .contact-title {
    font-size: 30px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  .contact-form-card {
    padding: 26px;
  }
}

@media (max-width: 576px) {

  .footer {
    padding: 60px 16px 20px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-brand p {
    font-size: 13px;
  }
}

