/* Landing page-specific styles */
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-nav a { color: #333; text-decoration: none; margin-left: 1rem; font-weight: 600; }
.site-nav a:hover { color: #0b66ff; }
.lead { font-size: 1.125rem; color: #444; margin-top: 0.25rem; }
.cta { margin-top: 1rem; }
.btn { display: inline-block; padding: 0.6rem 0.95rem; border-radius: 6px; border: 1px solid #d1d1d1; background: #fff; color: #111; text-decoration: none; font-weight: 600; }
.btn-primary { background: linear-gradient(90deg, #0b66ff, #1367ff); color: #fff; border-color: #0b66ff; box-shadow: 0 6px 14px rgba(11,102,255,0.12); }
.hero { display: flex; gap: 2.5rem; align-items: center; margin: 2.5rem 0 2rem 0; padding: 0 1.5rem; }
.hero-content { flex: 2; padding: 1.5rem 0; display: flex; flex-direction: column; justify-content: center; }
.hero-stats { display: flex; gap: 1.5rem; flex: 1; align-items: center; justify-content: center; }
.stat { background: #fff; padding: 0.75rem 1rem; border-radius: 8px; text-align: center; border: 1px solid #eee; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.stat-num { font-size: 1.25rem; font-weight: 700; color: #0b66ff; }
.features { margin-top: 2.25rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature { background: #fff; padding: 1.25rem; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); max-width: 1200px; position: relative; z-index: 2; gap: 2rem; margin: 0 auto; }
.service-card { background: #fff; padding: 1rem; border-radius: 8px; border: 1px solid #efefef; box-shadow: 0 2px 10px rgba(0,0,0,0.04); display: flex; flex-direction: column; justify-content: space-between; min-height: 140px; }
.service-title { font-size: 1rem; margin: 0 0 0.25rem 0; font-weight: 700; }
.service-desc { font-size: 0.9rem; color: #666; margin: 0; }
/* Make service cards uniform height for visual consistency */
.service-card { min-height: 120px; }
.get-started .card { background: #fff; padding: 1.25rem; border-radius: 10px; border: 1px solid #eee; margin-top: 1.5rem; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.site-footer { background: #fff; border-top: 1px solid #eee; }

@media (max-width: 800px) {
  .hero { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

/* JNO-specific enhancements */
.jno-hero { background: linear-gradient(180deg, rgba(14,60,112,0.05) 0%, rgba(14,60,112,0.02) 40%, transparent 100%); padding: 2rem; border-radius: 10px; }
.company-title { font-size: 2rem; margin: 0 0 0.5rem 0; }
.jno-stats .stat { background: #fff; }
.company-about { margin-top: 2.5rem; }
.company-grid { display: flex; flex-direction: column; gap: 2.5rem; align-items: flex-start; }
.company-grid > .services-column { flex: 1 1 0; min-width: 0; }
.company-grid > div:not(.services-column) { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; }
.card .btn { margin-right: 0.5rem; }

.services-column { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.services-column .services-grid { gap: 0.9rem; }

.company-about h4 { margin-top: 1rem; }
.company-about ul { margin-top: 0.5rem; }
.contact-cta .card { display: flex; flex-direction: column; gap: 0.75rem; }
.company-grid p { margin: 0 0 0.5rem 0; color: #444; }

/* Logo styles */
.site-logo { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; display: inline-block; margin-right: 0.75rem; vertical-align: middle; }

.company-title { font-size: 2.25rem; font-weight: 700; }
.lead { font-size: 1.125rem; color: #555; }
.header-left a { display: flex; align-items: center; gap: 0.5rem; }
.site-title-text { font-weight: 700; font-size: 1.1rem; }

/* responsive */
@media (max-width: 800px) {
  .hero { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero-stats { width: 100%; }
  .company-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .company-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  .get-started.contact-cta {
    padding: 0 0.5rem;
  }
}

/* Professional, flat, icon-based design inspired by reference */
:root {
  --jno-blue: #3b82f6;
  --jno-blue-dark: #2563eb;
  --jno-gray: #64748b;
  --jno-bg: #f8fafc;
  --jno-bg-light: #e2e8f0;
  --jno-bg-lighter: #cbd5e1;
  --jno-card: #fff;
  --jno-accent: #f7c948;
}
body {
  background: var(--jno-bg);
  color: #1e293b;
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.hero {
  background: linear-gradient(135deg, var(--jno-bg) 0%, var(--jno-bg-light) 50%, var(--jno-bg-lighter) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.company-logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.8);
  animation: logoFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.company-logo:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.company-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Wallop', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.title-icon {
  color: var(--jno-blue);
  font-size: 2rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 1rem;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--jno-gray);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  font-size: 1.1rem;
}
.btn-primary {
  background-color: var(--jno-blue);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  background-color: var(--jno-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.btn-secondary {
  background-color: white;
  color: var(--jno-blue);
  border: 2px solid var(--jno-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-secondary:hover {
  background-color: var(--jno-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.services-section {
  padding: 1rem 1rem;
  background-color: var(--jno-bg);
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  max-width: 1200px;
  position: relative;
  z-index: 2;
  gap: 2rem;
  margin: 0 auto;
}
.service-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  background: linear-gradient(145deg, #ffffffe6, #ffffffb3);
  border: 1px solid hsla(0, 0%, 100%, .3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardFloat 3s ease-in-out infinite;
  animation-delay: 0s;
  box-shadow: none;
}
.service-card:first-child {
  --card-index: 1;
  animation-delay: calc(var(--card-index) * 0.2s);
}
.service-card:hover {
  background: linear-gradient(145deg, #fff, #ffffffe6);
  box-shadow: 0 20px 40px #0003;
  transform: translateY(-15px) scale(1.05);
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.service-icon {
  font-size: 3rem;
  color: var(--jno-blue);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--jno-blue-dark);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(28, 50, 91);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover h3 {
  color: var(--jno-blue-dark);
}
.service-card p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--jno-gray);
  line-height: 1.6;
  transition: color 0.3s ease;
}
.service-card:hover p {
  color: #1C325B;
}
.contact-section {
  padding: 4rem 2rem;
  background-color: #f1f5f9;
}
.contact-info {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--jno-blue);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; flex-direction: column; gap: 0.5rem; }
  .title-icon { font-size: 1.5rem; }
  .company-logo { width: 80px; height: 80px; }
  .action-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-item { flex-direction: column; text-align: center; }
}

/* Navigation bar styles */
.navigation-bar {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 1rem 0;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 1.3rem;
}
.nav-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.nav-link:hover {
  background-color: #547792;
  color: white;
  transform: translateY(-1px);
}
.nav-link.active {
  background-color: #3d5a73;
  color: white;
  font-weight: 600;
}
@media (max-width: 768px) {
  .nav-container { gap: 1rem; }
  .nav-link { font-size: 1.2rem; padding: 0.5rem 0.75rem; }
}
@media (max-width: 640px) {
  .nav-container { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
  .nav-link { font-size: 1.2rem; padding: 0.5rem 0.75rem; }
}

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

.section-title,
.service-card h3,
.contact-section h2 {
  font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.container {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

