@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --brand-primary: #703572; /* brand primary */
  --brand-primary-600: #5d2e61; /* darker primary */
  --brand-purple: #703572; /* align purple with brand */
  --brand-purple-500: #703572;
  --brand-secondary: #1e293b; /* slate-800 */
  --brand-muted: #334155; /* slate-700 */
  --brand-bg: #f8fafc; /* slate-50 */
  --brand-surface: #ffffff;
  --brand-border: #e2e8f0; /* slate-200 */
  --accent: #703572; /* brand accent */
  --danger: #ef4444; /* red-500 */
  --warning: #f59e0b; /* amber-500 */
  --success: #10b981; /* emerald-500 */
  --shadow-color: 0deg 0% 0%;
  --brand-tint-1: color-mix(in srgb, var(--brand-primary) 12%, #ffffff);
  --brand-tint-2: color-mix(in srgb, var(--brand-primary) 18%, #ffffff);
  --brand-ring: color-mix(in srgb, var(--brand-primary) 40%, transparent);
  --brand-secondary-accent: #f59e0b; /* amber-500 */
  --brand-secondary-accent-600: #d97706; /* amber-600 */
}

/* Disable dark mode - always use light theme */
/* @media (prefers-color-scheme: dark) {
  :root {
    --brand-secondary: #0b1220;
    --brand-muted: #9aa4b2;
    --brand-bg: #0b1220;
    --brand-surface: #0f172a;
    --brand-border: #1f2937;
  }
} */

/* CSS Reset (modern minimal) */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body { -webkit-font-smoothing: antialiased; line-height: 1.6; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

::selection { background: var(--brand-primary); color: #fff; }

/* Base */
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--brand-secondary);
  background: linear-gradient(180deg, var(--brand-bg) 0%, #ffffff 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* All pages use same width as home page */

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-600) 100%);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-content a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-content a::before {
  content: "📞";
  font-size: 1rem;
  filter: brightness(0) invert(1);
}

.top-bar-content a:hover {
  opacity: 0.8;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background-color: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--brand-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-logo {
  width: 150px;
  height: 150px;
  background: url('../../Logo/ANFC_Logo.png') no-repeat center center;
  background-size: contain;
  margin-left: 1.5rem;
}

.brand-logo-alt {
  width: 150px;
  height: 150px;
  background: url('../../Logo/logo.png') no-repeat center center;
  background-size: contain;
  margin-left: 1.5rem;
}
.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-secondary);
  display: none;
}
.brand-sub {
  font-size: 0.8rem;
  color: var(--brand-muted);
  display: none;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-links a {
  color: var(--brand-muted);
  text-decoration: none;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--brand-secondary);
  background: var(--brand-tint-1);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  margin-top: 0.25rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--brand-muted);
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.nav-dropdown-menu a:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.nav-dropdown-menu a:hover {
  background: var(--brand-tint-1);
  color: var(--brand-secondary);
}

.nav-cta {
  display: none;
}
.mobile-toggle {
  display: none;
  border: 1px solid var(--brand-border);
  background: var(--brand-surface);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 900px) {
  .top-bar-content {
    gap: 1rem;
    font-size: 0.85rem;
    justify-content: center;
  }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .mobile-menu {
    display: none;
    border-top: 1px solid var(--brand-border);
    padding: 0.75rem 0;
  }
  .mobile-menu.open { display: grid; gap: 0.25rem; }
  .mobile-menu a {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--brand-secondary);
    font-weight: 700;
    border-radius: 0.5rem;
  }
  .mobile-menu a:hover { background: var(--brand-tint-1); }
  .mobile-menu-label {
    padding: 0.75rem 1rem;
    color: var(--brand-secondary);
    font-weight: 700;
    font-size: 1rem;
    cursor: default;
  }
  .mobile-menu-sub {
    padding-left: 2rem !important;
    font-size: 0.95rem;
  }
  
  /* Ensure all text is visible on mobile */
  .section-header-left {
    color: var(--brand-secondary) !important;
  }
  .section-desc {
    color: var(--brand-secondary) !important;
  }
  .card p {
    color: var(--brand-secondary) !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 0.7rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-600) 100%);
  box-shadow: 0 10px 20px rgba(112, 53, 114, 0.25);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
  color: var(--brand-secondary);
  background: var(--brand-tint-1);
}
.btn-secondary:hover { background: var(--brand-tint-2); }

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 3rem;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(112,53,114,.15), transparent 60%),
              radial-gradient(1200px 600px at 80% 0%, rgba(112,53,114,.12), transparent 60%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }

/* Hero Banner */
.hero-banner {
  padding: 1rem 0 1.5rem;
}

.hero-banner-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
}


.hero-banner-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-banner-content {
  padding: 0;
}

/* Side-by-side hero layout for home page */
.hero-banner-side-by-side .hero-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-banner-side-by-side .hero-banner-image {
  max-width: 100%;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-banner-side-by-side .hero-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-side-by-side .hero-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 900px) {
  .hero-banner-side-by-side .hero-banner-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-banner-side-by-side .hero-banner-image {
    margin: 0 auto 1.5rem;
  }
}


.hero-banner-content h1 {
  color: var(--brand-secondary);
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-banner-content p {
  color: var(--brand-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-banner-content p:last-child {
  margin-bottom: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  max-width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero h1 { font-family: "Playfair Display", serif; font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; }
.hero p { color: var(--brand-muted); font-size: clamp(1rem, 1.6vw, 1.125rem); margin-top: 1rem; }
.hero-cta { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-card {
  border: 1px solid var(--brand-border);
  background: var(--brand-surface);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
}

@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } }

/* Sections */
section { padding: 3rem 0; }
.section-header { margin-bottom: 2rem; text-align: center; }


.section-header-left {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.section-header-left .section-title {
  margin-bottom: 0.75rem;
}

.section-header-left .section-desc {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  max-width: 100%;
}
.eyebrow { color: var(--brand-primary-600); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
.section-title { font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; }
.section-desc { color: var(--brand-muted); max-width: 65ch; margin: 0 auto; line-height: 1.7; }

/* Cards & grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
/* Services Section Redesign */
.services-section {
  padding: 2rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-bg) 100%);
}

.services-section:first-of-type {
  padding-top: 1.5rem;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: var(--brand-surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--brand-border);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(112, 53, 114, 0.15);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(112, 53, 114, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-content p {
  color: var(--brand-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.services-grid { 
  max-width: 500px; 
  margin: 0 auto; 
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.services-grid .card {
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { 
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { max-width: 100%; }
  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  .service-content {
    padding: 1.25rem;
  }
  .service-content h3 {
    font-size: 1.1rem;
  }
  .service-content p {
    font-size: 0.9rem;
  }
}

.card {
  border: 1px solid var(--brand-border);
  background: var(--brand-surface);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.05);
}
.card h3 { font-weight: 700; margin-bottom: 0.35rem; }
.services-grid .card h3 {
  padding: 1rem 1.25rem;
  margin: 0;
}
.card p { color: var(--brand-muted); }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  font-size: 2rem;
  color: var(--brand-primary);
  background: none;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icon:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: scale(1.1);
}

.services-grid .service-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.service-image {
  width: 100%;
  padding-bottom: 100%; /* Creates square aspect ratio */
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Lists */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.checklist li { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.5rem; align-items: start; }
.checklist .check {
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--brand-primary);
  position: relative;
}

.checklist .check::before {
  content: "✓";
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.muted { color: var(--brand-muted); }

/* Testimonial */
.testimonial {
  border-left: 3px solid var(--brand-primary);
  padding-left: 1rem;
}
.quote { font-style: italic; color: var(--brand-secondary); }
.quote-by { color: var(--brand-muted); font-size: 0.95rem; margin-top: 0.5rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--brand-border);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-600) 100%);
  padding: 3rem 0 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}


.footer-grid { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr 1fr; 
  gap: 2rem; 
  align-items: center;
}
.site-footer .muted { color: rgba(255, 255, 255, 0.8); }
.footer-col h4 { font-weight: 700; margin-bottom: 0.5rem; color: white; }
.footer-col a { color: rgba(255, 255, 255, 0.8); text-decoration: none; display: block; padding: 0.25rem 0; transition: color 0.3s ease; }
.footer-col a:hover { color: white; }

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
}

.footer-logo .brand-logo {
  width: 180px;
  height: 180px;
  background: url('../../Logo/ANFC_Logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.9;
}

.footer-logo .brand-logo-alt {
  width: 180px;
  height: 180px;
  background: url('../../Logo/logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.9;
}

.footer-logo .brand-name {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-logo .brand-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}
.copyright { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; margin-top: 1.25rem; }

/* Copyright Section */
.copyright-section {
  background: var(--brand-secondary);
  padding: 1.5rem 0;
  text-align: center;
}

.copyright-section .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}
@media (max-width: 900px) { 
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem;
  }
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) { 
  .hero-banner-image {
    height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .healthcare-images-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .healthcare-image {
    height: auto !important;
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
    text-align: center;
  }
  .footer-logo {
    align-items: center;
  }
  .footer-logo .brand-logo {
    width: 140px;
    height: 140px;
  }
}

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--brand-border);
  background: var(--brand-surface);
}
textarea { min-height: 140px; }

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-primary-600);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

:is(a, button, [role="button"], input, select, textarea):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.banner {
  border: 1px dashed var(--brand-border);
  background: color-mix(in srgb, var(--brand-primary) 6%, #ffffff);
  border-radius: 0.9rem;
  padding: 1rem;
}

/* Reveal animations */
[data-animate] { opacity: 0; transform: translateY(12px); transition: 500ms ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* Responsive logo */
@media (max-width: 600px) {
  .brand-logo, .brand-logo-alt {
    width: 120px;
    height: 120px;
    margin-left: 0.5rem;
  }
  .brand-name {
    font-size: 0.9rem;
  }
  .brand-sub {
    font-size: 0.7rem;
  }
  
  /* Top bar mobile */
  .top-bar {
    padding: 0.4rem 0;
    font-size: 0.75rem;
  }
  .top-bar-content {
    gap: 0.75rem;
    justify-content: center;
  }
  .top-bar-content a {
    font-size: 0.75rem;
  }
  
  /* Navigation mobile */
  .nav {
    padding: 0.5rem 0;
  }
  .container {
    padding: 0 1rem;
  }
  
  /* Hero banner mobile */
  .hero-banner {
    padding: 0.75rem 0 1rem;
  }
  .hero-banner-image {
    margin-bottom: 1rem;
  }
  .hero-banner-content {
    padding: 0 1rem;
  }
  .hero-banner-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Section headers mobile */
  .section-header {
    padding: 0 1rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header-left h2 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Services section mobile */
  .services-section {
    padding: 1rem 0;
  }
  .card {
    padding: 1.25rem;
  }
  .card h3 {
    font-size: 1.25rem;
  }
  
  /* Hero side by side mobile */
  .hero-banner-side-by-side {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-banner-side-by-side .hero-banner-image {
    height: 250px;
  }
  
  /* Forms mobile */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-logo .brand-logo,
  .footer-logo .brand-logo-alt {
    width: 120px;
    height: 120px;
  }
  
  /* Ensure colors are correct on mobile */
  body {
    color: var(--brand-secondary);
    background: linear-gradient(180deg, var(--brand-bg) 0%, #ffffff 100%);
  }
  .section-header-left {
    color: var(--brand-secondary);
  }
  .section-desc {
    color: var(--brand-secondary);
  }
  .card {
    background: var(--brand-surface);
    color: var(--brand-secondary);
  }
  
  /* Connecting people text mobile */
  p[style*="Connecting people"] {
    font-size: 1rem !important;
    margin: 0.5rem 0 1.5rem !important;
  }
  
  /* Explore our services mobile */
  h2[style*="EXPLORE"] {
    font-size: 1.25rem !important;
  }
}


