:root{
  --bg: #ffffff;
  --text: #0A1833;
  --primary-blue: #0b4da6; /* slightly brighter navy */
  --navy: #0a2a66;
  --muted: #6b7280;
  --accent: #f0f4ff;
}

/* Base and Reset */
*, *::before, *::after { box-sizing: border-box; }
html,body{ height:100% }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

/* Typography Helpers */
.sr-only { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; border:0; padding:0; margin:-1px; }

/* --- NAVBAR --- */
.navbar {
  height: 72px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 24px;
  border-bottom: 1px solid #e6e9ee;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02));
}
.nav-left {
  display:flex;
  align-items:center;
}
.logo {
  height:48px;
  width:auto;
  margin-right:12px;
  border-radius:6px;
  object-fit:cover;
}
.brand {
  color: var(--text);
  font-size:20px;
  margin:0;
  font-weight:700;
}
.nav-links a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  padding:8px 6px;
  border-radius:6px;
}
.nav-links a:hover, .nav-links a:focus {
  color: var(--primary-blue);
  outline: none;
}
/* Header Contact Button */
.contact-btn-header{
  background: linear-gradient(135deg, #0b4da6, #0a2a66);
  color:#ffffff !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 6px 18px rgba(10,24,51,0.25);
  transition: all 0.2s ease-in-out;
}
.contact-btn-header:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10,24,51,0.35);
}

/* --- SECTIONS --- */
.section-padding { padding: 56px 20px; }
.section-title-v2 {
  text-align:center;
  font-size:32px; 
  font-weight:800;
  margin-bottom:40px;
  color:var(--text);
}
.services { padding-top: 28px; padding-bottom: 24px; }
.safety { background: var(--accent); }

/* --- HERO SECTION (Split) --- */
.hero-split-container {
  max-width: 1200px; 
  margin: 40px auto;
  padding: 40px 20px;
  background: #f7f7f7; 
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 30px; 
}
.hero-logo-container {
  flex-basis: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
}
.hero-logo {
  max-width: 90%; 
  height: auto;
  max-height: 500px; 
}
.hero-content-right {
  flex-basis: 60%; 
  text-align: left;
  padding-left: 15px;
}
#hero-heading {
  font-size: 40px; 
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* Call to Action Button */
.cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #0a2a66, #0b4da6);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: background 0.3s ease;
}
.cta:hover { background: #0090d9; }


/* --- QUALITY HEADING WRAPPER --- */
.quality-heading-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:35px;
}
.quality-heading-box{
  background:linear-gradient(135deg, #0a2a66, #0b4da6);
  padding:20px 30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(10,24,51,0.18);
}
.quality-heading-box h2{
  margin:0;
  color:#ffffff;
  font-size:28px;
  font-weight:800;
  letter-spacing:0.4px;
}


/* --- SERVICE CARDS GRID --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; 
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 1rem;
}
.service-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #0c489d;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-color: #00b0ff;
}
.service-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}
.icon-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
}
.service-card.professional { 
  background-color: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}
.service-card.professional p {
  color: #ffffff;
}
.service-card.professional:hover {
  background-color: #1b3d82;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* --- FEATURES/SAFETY --- */
.feature-image-placeholder {
  min-height: 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px dashed rgba(10,24,51,0.06);
  color: var(--muted);
  padding:12px;
}

/* --- DUAL CARDS --- */
.dual {
  display:flex;
  justify-content:center;
  gap:20px;
  padding:40px 20px;
  flex-wrap:wrap;
}
.dual-card {
  background: var(--navy);
  color: white;
  padding: 26px;
  width: 320px;
  border-radius: 12px;
  text-align:center;
  box-shadow: 0 10px 30px rgba(10,24,51,0.06);
}
.box-title{
  padding:12px;
  font-weight:bold;
  border-radius:10px;
  margin-bottom:14px;
  font-size:18px;
}
.parents-title{
  background:#ffffff;
  color:var(--navy);
}
.find-btn{
  background:transparent;
  border:2px solid #ffffff;
  color:#ffffff;
  font-weight:700;
  padding:10px 24px;
  border-radius:12px;
  display:inline-block;
  margin-top:12px;
  text-decoration:none;
}
.join-highlight{
  background:#ffffff !important;
  color:var(--navy) !important;
  font-weight:700;
  padding:12px 24px;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
  margin-top:10px;
}

/* --- QUALITY GRID --- */
.quality { background: #fbfcff; }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}
.quality-card {
  background:#fff;
  padding:16px;
  border-radius:10px;
  border-top: 4px solid var(--primary-blue);
  box-shadow: 0 6px 18px rgba(10,24,51,0.04);
}
.quality-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

/* --- FOOTER / CONTACT WIDGET (Full-Width) --- */
.footer {
  background:#071028;
  color:#fff;
  text-align:center;
  padding:0px 8px 18px 8px;
  font-size:14px;
}
.contact-widget{
  margin: 40px 0;
  padding: 25px 0; 
  background:var(--navy);
  border-radius:0; 
  box-shadow:0 12px 30px rgba(10,24,51,0.15);
  color:#ffffff;
  text-align:center;
}
.content-limiter { 
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px; 
}
.contact-title{
  font-size:24px;
  font-weight:800;
  margin-bottom:25px;
}
.contact-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.contact-btn{
  text-decoration:none;
  padding:12px 24px;
  border-radius:12px;
  font-weight:700;
  font-size:16px;
  display:inline-block;
  transition:background 0.3s, color 0.3s, border-color 0.3s;
}
.contact-btn:hover{
  transform: translateY(-2px); 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.call-btn{
  background:#ffffff;
  color:var(--navy);
}
.email-btn{
  background:transparent;
  color:#ffffff;
  border:2px solid #ffffff;
}
.email-btn:hover {
  background: #ffffff;
  color:var(--navy);
}
.contact-details {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  padding: 5px 0;
  transition: opacity 0.3s;
  text-decoration: underline dashed #ffffff80;
}
.phone-text:hover { opacity: 0.8; }
.email-text{
  font-size:16px;
  color:#ffffff;
  text-decoration:underline;
  cursor:pointer;
  margin-top: 10px;
  display: block;
}
.email-text:hover{ opacity:0.8; }
.contact-address {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ffffff30;
}
.contact-address p {
  margin-bottom: 5px;
  line-height: 1.4;
  font-size: 14px;
}


/* Responsive Tweaks */
@media (max-width: 768px) {
  /* Hero Split Container Stacks */
  .hero-split-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-logo-container,
  .hero-content-right {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .hero-content-right {
    text-align: center;
  }
  
  /* Navbar adjustments */
  .brand { font-size:18px; }
  .logo { height:40px; }
  
  /* Heading size reduction for mobile */
  #hero-heading { font-size: 32px; }
  .section-title-v2, .quality-heading-box h2 { font-size: 24px; }
  
  /* Quality grid single column on mobile */
  .quality-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
  }
}