/* Container Base */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.lead {
  font-size: 1.2em;
  line-height: 1.6em;
  color: #333;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 60px;
}
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.feature-card:hover,
.feature-card:focus-within {
  box-shadow: 0 8px 24px rgba(0, 80, 160, 0.3);
  transform: translateY(-5px);
  outline: none;
}
.feature-card h3 {
  margin-top: 0;
  color: #003366;
}

/* CTA Section */
.callout {
  background: #f0f5ff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 60px;
}
.callout h2 {
  margin-bottom: 10px;
  color: #003366;
}
.cta-button {
  display: inline-block;
  margin-top: 15px;
  background: #003366;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button:hover,
.cta-button:focus {
  background-color: #0050a0;
  transform: scale(1.05);
  outline: none;
  box-shadow: 0 0 8px rgba(0, 80, 160, 0.6);
}

/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #003366;
  transition: box-shadow 0.3s ease;
}
header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Dashboard Preview Section */
.dashboard-preview {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background: #f0f4f9;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.dashboard-preview h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
}
.dashboard-preview .charts-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.dashboard-preview .chart-container {
  flex: 1 1 350px;
  max-width: 350px;
}


/* About Us Page Specific Styling */
.about-us h1,
.about-us h2 {
  color: #003366;
  margin-bottom: 0.5em;
}

.about-us p,
.about-us ul {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5em;
}

.about-us ul {
  padding-left: 1.2em;
  list-style-type: disc;
}

.callout-compact {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
}


.services-page h1 {
  color: #003366;
  margin-bottom: 0.8em;
}

.services-page .service-list {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 60px;
}

.service-item h2 {
  color: #0050a0;
  margin-bottom: 0.4em;
}

.service-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.callout-compact {
  max-width: 600px;
  margin: 0 auto 60px auto;
  padding: 30px;
  text-align: center;
}



.about-intro {
  margin-bottom: 50px;
  overflow: hidden; /* to clear floats */
}

.about-float-image {
  float: right;
  width: 300px;
  max-width: 40%;
  margin-left: 25px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-journey-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.callout-compact {
  max-width: 600px;
  margin: 0 auto 60px auto;
  padding: 30px;
  text-align: center;
}

