/* Hospital Projects — theme: dark blue, teal, orange */
:root {
  --blue-dark: #0c2340;
  --blue-mid: #153a5c;
  --teal: #1aab9b;
  --teal-dark: #148f82;
  --orange: #e85d04;
  --orange-hover: #c94f03;
  --text: #2b2b2b;
  --text-muted: #5a5a5a;
  --bg-light: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(12, 35, 64, 0.12);
  --radius: 8px;
  --font: "Poppins", system-ui, sans-serif;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container-wide {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.6rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.2rem 0;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 72px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-text span {
  display: block;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue-mid) 100%);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.logo-hp {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14em;
  color: var(--white);
}

.logo-text span {
  display: block;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
}

.nav-menu a:hover {
  color: var(--teal);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-phone {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone i {
  color: var(--teal);
  margin-right: 0.35rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}

.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-cta:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
}

.hero-swiper {
  min-height: min(72vh, 640px);
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 4rem 5rem;
  max-width: 640px;
}

.hero-kicker {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin: 0 0 0.75rem;
}

.hero-slide h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 1.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pagination.swiper-pagination-bullets {
  bottom: 1.25rem !important;
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.75rem;
  flex-wrap: nowrap !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--blue-dark);
  opacity: 0.35;
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--teal);
  opacity: 1;
}

.hero-features {
  position: relative;
  margin-top: -2.5rem;
  z-index: 5;
}

.hero-features-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--blue-dark);
}

.feature-item i {
  color: var(--teal);
  font-size: 1.25rem;
}

/* Sections */
.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
}

.section-title.teal-underline {
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--teal);
  display: inline-block;
}

.section-title.dark {
  margin-bottom: 1.25rem;
}

.center-kicker {
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin: 0 0 0.5rem;
}

.center-headline {
  text-align: center;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--blue-dark);
  font-weight: 700;
  max-width: 28ch;
}

/* About — 3 columns: copy | widest image | stat rows */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

.about-copy {
  min-width: 0;
  width: 100%;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  min-width: 0;
  max-width: 20rem;
}

.about-label-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.about-teal-bar {
  display: block;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.about-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
}

.about-headline {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--blue-dark);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.about-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.93rem;
  line-height: 1.67;
  text-align: justify;
}

.about-copy p:last-of-type {
  margin-bottom: 1.35rem;
}

.about-read-more {
  margin-top: 0;
}

.about-visual {
  min-width: 0;
}

.about-visual > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  min-width: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-item-icon {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: rgba(26, 171, 155, 0.18);
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.stat-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.stat-item-text strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
}

.stat-item-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Services */
.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(12, 35, 64, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
  margin: 1rem 1.15rem 0.35rem;
  font-size: 1.05rem;
  color: var(--blue-dark);
}

.service-card p {
  margin: 0 1.15rem 1.15rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Projects */
.projects .center-headline {
  margin-bottom: 1.25rem;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 2px solid var(--blue-dark);
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.projects-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: clamp(0.5rem, 3vw, 2rem);
}

.project-swiper {
  flex: 1;
}

.swiper-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--blue-dark);
  background: var(--white);
  color: var(--blue-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.swiper-nav:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(12, 35, 64, 0.12);
  background: var(--white);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.project-card-body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--blue-dark);
}

.project-card-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.project-card-body i {
  color: var(--teal);
  margin-right: 0.35rem;
}

.project-slide-hidden {
  display: none !important;
}

/* Project portfolio summary section */
.project-portfolio {
  background: #f8f7f1;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.portfolio-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.10);
  border: 1px solid rgba(12, 35, 64, 0.06);
  display: flex;
  flex-direction: column;
}

/* Card heading */
.portfolio-card-head {
  background: var(--blue-dark);
  padding: 1rem 1.35rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portfolio-card-head h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
}

.portfolio-card-head .group-label {
  background: var(--teal);
  color: var(--white);
  box-shadow: none;
  border-color: transparent;
  font-size: 0.68rem;
  padding: 0.3rem 0.8rem;
  min-height: unset;
}

/* Image grid inside each card: 2 columns on wide screens */
.portfolio-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  flex: 1;
}

/* 3-item variant: only turns the last tile into a full-width "hero"
   tile when the card actually has exactly 3 images. If a 4th (or 5th, 6th...)
   image is added later, this selector simply stops matching and every tile
   falls back to the normal even grid below - no more gaps or stray full-width rows. */
.portfolio-img-grid--3 {
  grid-template-columns: repeat(2, 1fr);
}
.portfolio-img-grid--3 .pimg-item:nth-child(3):last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 6;
}

/* Each image cell */
.pimg-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.6);
  background: #dbe7f0;
}

.pimg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pimg-item:hover img {
  transform: scale(1.06);
}

/* Responsive rules: wide = 2 columns, <=900px = 1 column */
@media (max-width: 900px) {
  .portfolio-img-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .portfolio-board {
    grid-template-columns: 1fr;
  }
}

/* Fallback placeholder */
.pimg-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d0e4f0 0%, #b8d4e8 100%);
  color: var(--blue-dark);
  font-size: 2rem;
  opacity: 0.45;
}

/* Label overlay at bottom */
.pimg-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.65rem 0.5rem;
  background: linear-gradient(to top, rgba(12,35,64,0.82) 0%, rgba(12,35,64,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pimg-label strong {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.pimg-label span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  display: block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.portfolio-card .card-chip {
  background: rgba(26, 171, 155, 0.12);
  color: var(--teal);
}

.portfolio-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.summary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 14px 28px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.06);
}

.summary-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--blue-dark);
}

.summary-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.summary-card .detail-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-card .detail-list li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.summary-card .detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 1100px) {
  .portfolio-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .portfolio-board {
    grid-template-columns: 1fr;
  }

  .portfolio-summary {
    grid-template-columns: 1fr;
  }

  .group-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .group-list li span,
  .group-list li em {
    justify-self: start;
  }
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge.completed {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.status-badge.developing,
.status-badge.ongoing {
  background: rgba(255, 152, 0, 0.15);
  color: #ff9800;
}

.status-badge.planning {
  background: rgba(63, 81, 181, 0.15);
  color: #3f51b5;
}

/* Client / Project data table */
.client-table-section {
  margin-bottom: 3rem;
}

.client-table-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.1rem;
}

.client-table-head h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.client-table-head h3 i {
  font-size: 1.3rem;
  color: var(--teal);
}

.client-table-count {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-light);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}

.client-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.06);
  border: 1px solid rgba(12, 35, 64, 0.08);
  background: var(--white);
}

.client-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.client-table caption {
  display: none;
}

.client-table thead th {
  text-align: left;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.1rem;
  white-space: nowrap;
}

.client-table tbody td {
  padding: 0.85rem 1.1rem;
  color: var(--text);
  border-top: 1px solid rgba(12, 35, 64, 0.07);
  vertical-align: top;
}

.client-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.client-table tbody tr:hover {
  background: rgba(26, 171, 155, 0.08);
}

.client-table td.col-hospital strong {
  display: block;
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.35;
}

.client-table td.col-client {
  font-weight: 600;
  color: var(--blue-dark);
  min-width: 180px;
}

.client-table td.col-hospital span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.client-table td.col-beds {
  white-space: nowrap;
  font-weight: 600;
  color: var(--blue-dark);
}

.client-table td.col-status {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .client-table {
    font-size: 0.82rem;
  }

  .client-table thead th,
  .client-table tbody td {
    padding: 0.65rem 0.75rem;
  }
}

/* DIAGNOSTICS SECTION */
.diagnostics-section {
  background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-title {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--blue-dark);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.diagnostic-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diagnostic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(12, 35, 64, 0.12);
}

.diagnostic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 171, 155, 0.15);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
}

.diagnostic-card h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.05rem;
  line-height: 1.4;
}

.diagnostic-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.diagnostic-card .facility {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}

/* GOVERNMENT PROJECTS SECTION */
.government-section {
  background: #f0f4f8;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.government-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.government-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.06);
  display: grid;
  grid-template-rows: 180px 1fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.government-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(12, 35, 64, 0.14);
}

.gov-image {
  margin: 0;
  overflow: hidden;
}

.gov-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.government-card:hover .gov-image img {
  transform: scale(1.05);
}

.gov-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gov-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(12, 35, 64, 0.1);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.gov-content h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.95rem;
  line-height: 1.4;
}

.gov-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gov-content .agency {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* TURNAROUND CONSULTANCY SECTION */
.turnaround-section {
  background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.turnaround-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.turnaround-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.turnaround-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 35, 64, 0.11);
}

.ta-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 171, 155, 0.15);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.turnaround-card h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.95rem;
  line-height: 1.35;
}

.turnaround-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.turnaround-card .beds {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
}

.turnaround-card .contact-doctor {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .diagnostics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .government-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .turnaround-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .diagnostics-grid,
  .government-grid,
  .turnaround-grid {
    grid-template-columns: 1fr;
  }
}

/* Clients */
.clients {
  background: var(--bg-light);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.clients > .container > .center-headline {
  margin-bottom: 3rem;
}

.clients-category {
  margin-bottom: 3.5rem;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.category-title i {
  font-size: 1.5rem;
  color: var(--teal);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 1.2rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(12, 35, 64, 0.08);
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
  min-height: 160px;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(12, 35, 64, 0.12);
  border-color: rgba(12, 35, 64, 0.15);
}

.client-card span {
  display: block;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.client-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(26, 171, 155, 0.12);
  color: var(--teal);
  font-size: 1.8rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.client-card:hover .client-icon {
  background: rgba(26, 171, 155, 0.25);
}

.client-icon.trust {
  background: rgba(244, 67, 54, 0.12);
  color: #f44336;
}

.client-card:hover .client-icon.trust {
  background: rgba(244, 67, 54, 0.25);
}

.client-icon.doctor {
  background: rgba(63, 81, 181, 0.12);
  color: #3f51b5;
}

.client-card:hover .client-icon.doctor {
  background: rgba(63, 81, 181, 0.25);
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .client-card {
    padding: 1.2rem 1rem;
    min-height: 140px;
  }

  .client-card span {
    font-size: 0.85rem;
  }

  .client-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-title {
    font-size: 1.1rem;
  }
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: stretch;
}

.client-logo {
  width: 100%;
  max-width: 260px;
  border-radius: calc(var(--radius) * 1.25);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(12, 35, 64, 0.08);
  box-shadow: 0 18px 40px rgba(12, 35, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(12, 35, 64, 0.12);
}

.client-logo img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.client-logo span {
  display: block;
  padding: 1rem 1rem 1.25rem;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-dark);
  background: transparent;
  position: static;
}

/* Why choose us — dark band + teal circles + centered grid */
.why-us {
  position: relative;
  background: var(--blue-dark);
  color: var(--white);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.why-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.why-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.why-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.why-heading {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  justify-items: center;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  max-width: 11rem;
  padding: 0.35rem;
  transition: transform 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.why-icon i {
  font-size: 1.55rem;
  color: #ffffff;
}

.why-label {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.75rem;
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* New hospital showcase (image card view) */
.hospital-showcase {
  background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.showcase-card {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(12, 35, 64, 0.13);
}

.showcase-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.03);
}

.showcase-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 171, 155, 0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.group-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 1.05rem;
  min-height: 40px;
  line-height: 1;
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.06), 0 10px 24px rgba(12,35,64,0.08);
  border: 2px solid rgba(255,255,255,0.03);
}

.showcase-body h4 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.15rem;
}

.showcase-body .muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.showcase-body .small {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.showcase-body .btn {
  width: fit-content;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    height: 260px;
  }
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.cert-left,
.cert-right {
  min-width: 0;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}

.badge span {
  font-size: 1rem;
}

.badge small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cert-swiper {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cert-swiper .swiper-slide {
  box-sizing: border-box;
  overflow: hidden;
  height: auto;
}

.cert-swiper .swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(420px, 52vw);
  object-fit: cover;
  display: block;
}

.cert-pagination.swiper-pagination-bullets {
  bottom: 8px !important;
}

.cert-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.cert-pagination .swiper-pagination-bullet-active {
  background: var(--teal);
  opacity: 1;
}

/* Testimonials — mockup style: left headers, row of cards, teal hollow dots */
.testimonials {
  background: var(--bg-light);
}

.testimonial-wrap {
  min-width: 0;
}

.testimonial-intro {
  text-align: left;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}

.testimonial-main-title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
}

.testimonial-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 2.75rem !important;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.testimonial-card {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(12, 35, 64, 0.08);
  border: 1px solid rgba(12, 35, 64, 0.05);
  text-align: left;
}

.t-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.t-content {
  flex: 1;
  min-width: 0;
}

.t-quote {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text);
  font-weight: 400;
}

.t-name {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.t-name strong {
  font-weight: 700;
  color: var(--blue-dark);
}

.t-role {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.testimonial-pagination.swiper-pagination-bullets {
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 6px !important;
  background: transparent;
  opacity: 1;
  border: 2px solid var(--teal);
  vertical-align: middle;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.05);
}

/* Blog */
.blog {
  background: var(--bg-light);
}

.blog-swiper .swiper-slide {
  height: auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.08);
  height: 100%;
  transition: transform 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.blog-card-body time {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
}

.blog-card-body h4 {
  margin: 0.5rem 0 0.4rem;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.blog-card-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.read-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
}

.read-link:hover {
  text-decoration: underline;
}

.blog-actions {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, 1fr) minmax(180px, 1fr) minmax(260px, 1.2fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-panel {
  min-width: 0;
}

.footer-kicker {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-title {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--white);
}

.footer-copy {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-contact i {
  color: var(--teal);
  min-width: 1.35rem;
  margin-top: 0.15rem;
}

.footer-social {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.footer-social-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--teal);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.whatsapp-btn:hover {
  background: #20b858;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form button {
  width: 100%;
  padding: 0.95rem 1rem;
}

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: flex-start;
  }

  .stat-item {
    flex: 1 1 200px;
    max-width: 280px;
  }

  .cert-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   MOBILE FIX
   ========================== */

@media (max-width:768px){

    /* Container */
    .container,
    .container-wide{
        width:100%;
        max-width:100%;
        padding-left:10px;
        padding-right:10px;
    }

    /* Header */
.header-inner{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    width:100%;
}
.logo{
    flex:0 0 auto;
    order:1;
}

.header-actions{
    display:flex !important;
    align-items:center;
    gap:6px;
    white-space:nowrap;
    flex:1 1 auto;
    justify-content:flex-start;
    order:2;
    min-width:0;
}

.main-nav{
    flex:0 0 auto;
    width:auto;
    order:3;
}

    .logo-img{
        width:50px;
    }

    .logo-text{
        display:none;
    }

.header-phone{
    display:inline-flex !important;
    align-items:center;
    white-space:nowrap;
    font-size:12px;
    margin: 0;
}

.header-actions .btn{
    display:inline-flex !important;
    align-items:center;
    white-space:nowrap;
    font-size:11px;
    padding:7px 11px;
    margin-top: 0;
}

.main-nav{
    flex:0 0 auto;
    margin-left:auto;
    position:relative;
}

.nav-toggle{
    display:inline-flex !important;
    margin:0;
    font-size:22px;
    order:3;
}

.nav-menu{
    position:absolute;
    top:100%;
    right:0;
    width:260px;
    background:#0c2340;
    z-index:9999;
    display:none;
    flex-direction: column;
    padding: 0.75rem 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.nav-menu.is-open {
    display:flex;
}

.nav-menu a {
    display: block;
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.08);
}

    /* Hero */
    .hero-swiper{
        min-height:420px;
    }

    .hero-features{
        margin-top:-15px;
    }

    .hero-features-inner{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px;
        padding:15px;
    }

    /* Clients */
    .clients-row{
        grid-template-columns:1fr !important;
        gap:15px;
    }

    .client-logo{
        width:100%;
        max-width:100%;
    }

    .client-logo img{
        width:100%;
        height:auto;
    }
}