    :root {
      --color-bg: #ffffff;
      --color-bg-soft: #f5f5f7;
      --color-text: #111111;
      --color-text-muted: #555555;
      --color-accent: #d32f2f; /* Safety Red */
      --color-border-soft: #e0e0e0;

      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;

      --radius-card: 14px;
      --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.06);

      --container-width: 1120px;
      --space-xs: 0.5rem;
      --space-sm: 0.75rem;
      --space-md: 1.25rem;
      --space-lg: 2.5rem;
      --space-xl: 4rem;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-sans);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      background: radial-gradient(circle at top left, #ffe5e5 0, #ffffff 40%);
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.85);
      border-bottom: 1px solid rgba(224, 224, 224, 0.7);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
    }
.nav-pro {
  background: #d32f2f;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 1rem;
  transition: 0.2s ease;

  display: inline-flex;       /* ensures perfect centering */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */

  height: 42px;               /* consistent button height */
  padding: 0 1rem;            /* horizontal padding only */
  line-height: 1;             /* prevents text from floating */
  font-size: 0.95rem;         /* balanced text size */
}
.nav-pro:hover {
        background: #b71c1c;
    }
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-pro {
    height: 48px;               /* restores full button height */
    min-height: 48px;           /* prevents collapsing */
    padding: 0 1rem;            /* horizontal padding only */
    
    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: center;    /* horizontal centering */

    line-height: 1 !important;  /* prevents text from floating */
    box-sizing: border-box;     /* ensures padding doesn't shrink height */
  }
    
}

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }
/* Header Logo — rectangular version */
.logo-img {
  height: 60px;      /* clean, modern header size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Optional: slightly smaller on mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

.logo-text {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
}

.logo-accent {
  color: var(--color-accent);
}

.para-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text);
}

.para-accent {
  color: var(--color-accent);
}

.compliance-image {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  opacity: 0.9;
}

.compliance-image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

    .logo-mark {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffebee 0, #d32f2f 55%, #7f0000 100%);
      box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.15);
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      font-size: 0.9rem;
      color: var(--color-text-muted);
	  font-weight: 600;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--color-accent);
      transition: width 0.2s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      border: 1px solid rgba(211, 47, 47, 0.25);
      color: var(--color-accent);
      font-size: 0.9rem;
      font-weight: 600;
      background: rgba(211, 47, 47, 0.04);
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
      box-shadow: 0 10px 25px rgba(211, 47, 47, 0.08);
    }

    .nav-cta:hover {
      background: rgba(211, 47, 47, 0.08);
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(211, 47, 47, 0.16);
    }
	
	.nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--color-text);
    }

    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--color-accent);
      font-weight: 600;
      margin-bottom: var(--space-sm);
    }

    .hero-title {
      font-size: clamp(2.4rem, 4vw, 3.1rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-md);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--color-text-muted);
      max-width: 32rem;
      margin-bottom: var(--space-lg);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
      margin-bottom: var(--space-md);
    }

    .btn-primary {
      padding: 0.85rem 1.7rem;
      border-radius: 999px;
      border: none;
      background: var(--color-accent);
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 18px 40px rgba(211, 47, 47, 0.35);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 55px rgba(211, 47, 47, 0.45);
      background: #c62828;
    }

    .btn-ghost {
      padding: 0.8rem 1.4rem;
      border-radius: 999px;
      border: 1px solid var(--color-border-soft);
      background: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
      color: var(--color-text);
      cursor: pointer;
      transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .btn-ghost:hover {
      background: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .hero-meta {
      font-size: 0.8rem;
	  font-weight: 500;
      color: var(--color-text-muted);
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--color-accent);
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 1.6rem 1.5rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(224, 224, 224, 0.8);
      position: relative;
      overflow: hidden;
    }

    .hero-card-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--color-text-muted);
      margin-bottom: 0.75rem;
    }

    .hero-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .hero-card-text {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin-bottom: 1.1rem;
    }

    .hero-card-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.2rem;
    }

    .badge {
      font-size: 0.75rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(211, 47, 47, 0.18);
      background: rgba(211, 47, 47, 0.03);
      color: var(--color-text-muted);
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }

    .hero-card-status {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-card-status-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #43a047;
    }

    .hero-card-figure {
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 160px;
      height: 160px;
      border-radius: 40px;
      background: radial-gradient(circle at 20% 10%, #fff3e0 0, #ffccbc 20%, #ff8a65 55%, #d32f2f 100%);
      opacity: 0.9;
      filter: blur(0.2px);
    }

    .section {
      padding: 3.5rem 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--color-accent);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      max-width: 30rem;
    }

    .section-link {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .section-link::after {
      content: "→";
      font-size: 0.9rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: #ffffff;
      border-radius: var(--radius-card);
      padding: 1.4rem 1.3rem;
      border: 1px solid var(--color-border-soft);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
      border-color: rgba(211, 47, 47, 0.35);
    }

    .service-icon {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: rgba(211, 47, 47, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.9rem;
      font-size: 1.1rem;
    }

    .service-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .service-text {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin-bottom: 0.8rem;
    }

    .service-meta {
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: start;
    }

    .about-text p {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      margin-bottom: 0.9rem;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.2rem;
    }

    .about-highlight {
      font-size: 0.85rem;
      padding: 0.8rem 0.9rem;
      border-radius: 12px;
      background: var(--color-bg-soft);
    }

    .about-highlight strong {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.2rem;
      color: var(--color-text);
    }

    .about-panel {
      background: #ffffff;
      border-radius: 20px;
      padding: 1.6rem 1.5rem;
      border: 1px solid var(--color-border-soft);
      box-shadow: var(--shadow-soft);
    }

    .about-panel-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.9rem;
      font-size: 0.9rem;
    }

    .about-panel-row:last-child {
      margin-bottom: 0;
    }

    .about-panel-label {
      color: var(--color-text-muted);
    }

    .about-panel-value {
      font-weight: 500;
    }

    .about-panel-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      background: rgba(67, 160, 71, 0.06);
      color: #2e7d32;
      margin-top: 0.9rem;
    }

    .about-panel-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #2e7d32;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .project-card {
      border-radius: var(--radius-card);
      overflow: hidden;
      background: #ffffff;
      border: 1px solid var(--color-border-soft);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    }

    .project-image {
      height: 150px;
      background: linear-gradient(135deg, #fbe9e7, #ffccbc);
    }

    .project-body {
      padding: 1rem 1rem 1.1rem;
    }

    .project-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .project-text {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-bottom: 0.5rem;
    }

    .project-meta {
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }

    .compliance-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .compliance-card {
      background: var(--color-bg-soft);
      border-radius: 16px;
      padding: 1.2rem 1.1rem;
      font-size: 0.9rem;
    }

    .compliance-title {
      font-weight: 600;
      margin-bottom: 0.4rem;
	  text-align: center;
    }

    .compliance-text {
      color: var(--color-text-muted);
      margin-bottom: 0.5rem;
    }

    .compliance-tag {
      font-size: 0.8rem;
      color: var(--color-text-muted);
	  text-align: center;
    }

    .contact {
      padding: 3.5rem 0 3rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .contact-form {
      background: #ffffff;
      border-radius: 20px;
      padding: 1.8rem 1.6rem;
      border: 1px solid var(--color-border-soft);
      box-shadow: var(--shadow-soft);
    }

    .form-row {
      margin-bottom: 1rem;
    }

    .form-label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 0.3rem;
      color: var(--color-text-muted);
    }

    .form-input,
    .form-textarea {
      width: 100%;
      border-radius: 999px;
      border: 1px solid var(--color-border-soft);
      padding: 0.7rem 0.9rem;
      font-size: 0.9rem;
      font-family: var(--font-sans);
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      background: #fafafa;
    }

    .form-textarea {
      border-radius: 14px;
      min-height: 120px;
      resize: vertical;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: rgba(211, 47, 47, 0.7);
      box-shadow: 0 0 0 1px rgba(211, 47, 47, 0.25);
      background: #ffffff;
    }

    .contact-note {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin-top: 0.6rem;
    }

    .contact-side {
      font-size: 0.9rem;
      color: var(--color-text-muted);
    }

    .contact-side strong {
      color: var(--color-text);
    }

    .contact-list {
      margin-top: 1rem;
      list-style: none;
      padding-left: 0;
    }

    .contact-list li {
      margin-bottom: 0.4rem;
    }

    footer {
      border-top: 1px solid var(--color-border-soft);
      background: #fafafa;
      padding: 1.4rem 0;
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
    }

    @media (max-width: 960px) {
      .hero-grid,
      .about-grid,
      .projects-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.5rem;
      }

      .hero-visual {
        order: -1;
      }

      .services-grid,
      .projects-grid,
      .compliance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
	  .nav-toggle {
        display: block;
      }

      .nav-cta {
        display: none;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
	    padding: 1.2rem 1.4rem;
        background: #ffffff;
		border-radius: 16px;
		border: 1px solid var(--color-border-soft);
		box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
		margin-top: 0.8rem;
		animation: menuSlideDown 0.25s ease-out;
		position: absolute;
        top: 100%;
    	right: 1rem;
		left: 1rem;
		z-index: 10;
      }

      .nav-links a + a {
        border-top: 1px solid var(--color-border-soft);
        padding-top: 0.8rem;
      }

      .nav-links.open {
        display: flex;
      }
	  
      .services-grid,
      .projects-grid,
      .compliance-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero {
        padding-top: 2rem;
      }
    }

.expertise-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.expertise-image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
  
.project-image:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.contact-form .success {
  color: #2e7d32;
  margin-top: 1rem;
}

.contact-form .error {
  color: #d32f2f;
  margin-top: 1rem;
}

.checkbox-row {
  margin: 1rem 0;
}

.checkbox-label {
  font-size: 0.9rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
}

.checkbox-label a {
  color: var(--accent-color, #d32f2f);
  text-decoration: underline;
}

/* --- Responsive overrides at the bottom --- */
@media (max-width: 1024px) {
  .hero-visual {
    display: none !important;
  }
}

.fire-hero {
  background: none;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---
.fire-card {
  background: #264264;   
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
} --- */

.fire-card {
  background: #FFF8F8;                 /* white background */
 /* border: 0.01px solid #264264;           /* use your existing dark blue */
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 0 18px rgba(11, 27, 58, 0.45); /* keep light glow feel */
}

.fire-card-label {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fire-card-heading {
  color: #264264;;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.fire-card-description {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  /*color: #e2e8f0;*/
  color: #333333;
}

.fire-card-tags {
  display: flex;
  flex-wrap: wrap;      /* allows tags to move to new lines cleanly */
  gap: 8px;             /* adds spacing between tags on all sides */
  margin-top: 20px;
}

.fire-tag {
  background: #334155;
  color: #f1f5f9;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;  /* prevents text from breaking inside the tag */
}

.fire-card-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #264264;
}
.fire-card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e7d32;              /* green status text */
  font-weight: 600;
}

.status-tick {
  color: #2e7d32;
  font-size: 1.1rem;
}

.fire-card-next-audit {
  margin-top: 0.25rem;
  text-align: center;          /* center align under card */
  color: #555555;
  font-weight: 500;
}

.fire-status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
}

.fire-card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e7d32;              /* green status text */
  font-weight: 600;
}

.status-tick {
  color: #2e7d32;
  font-size: 1.1rem;
}

/*.fire-card-next-audit {
  margin-top: 0.25rem;
  text-align: center;          
  color: #555555;
  font-weight: 500;
}*/
.fire-card-next-audit {
  background: #FFE8E8;        /* soft red background */
  color: #8A1F1F;             /* darker red text */
  padding: 2px 4px;          /* reduced padding */
  border-radius: 4px;         /* slightly smaller rounded edges */
  font-weight: 500;           /* lighter weight */
  font-size: 0.85rem;         /* smaller text */
  text-align: center;
  margin-top: 6px;

  display: inline-block;      /* still looks like a badge */
  pointer-events: none;
  user-select: none;
}


/* Hide on mobile and tablet */
@media (max-width: 1024px) {
  .fire-hero {
    display: none !important;
  }
}
/* Hide burger on desktop */
.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links a {
    margin: 12px 0;
    font-size: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  /* Hide desktop CTA */
  .nav-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-block;
    background-color: #ff5a5f;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
  }
}

.group-companies {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fafafa, #f1f1f1);
  border: 1px solid #eee;
  text-align: center;
}

.group-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #333;
}



/* Logos layout */

.group-logos {
  display: flex;
  justify-content: center;   /* center everything */
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;           /* prevents overflow */
}


/* Ensure uniform logo sizing */
.group-logos img {
  height: 60px !important;   /* fixed visual size */
  width: auto !important;    /* keeps aspect ratio */
  max-width: 100% !important;
  display: inline-block;
}


.group-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .group-logos {
    flex-direction: row;
    justify-content: center;
  }

  .group-logos img {
    max-width: 70px;
  }
}
