:root {
  --primary-blue: #072f5f;
  --accent-blue: #00adef;
  --cta-orange: #ff6b00;
  --light-gray: #f9fafb;
  --dark-gray: #333333;
  --light-blue: #e6f0fa;
  --font-main: "Segoe UI", "Open Sans", Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--dark-gray);
  background-color: var(--light-gray);
  line-height: 1.5; /* tighter text lines */
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links a {
  position: relative;
  margin-left: 20px;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--cta-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Button */
/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: rotate(90deg);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }
}

/* HERO */
.hero {
  background: linear-gradient(
    to right,
    var(--primary-blue),
    var(--accent-blue)
  );
  color: #fff;
  padding: 40px 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 30px;
}

.hero-text {
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
  background-color: var(--cta-orange);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}

/* SECTIONS */
.intro-section,
.challenges-section,
.products-section,
.dashboard-showcase,
.why-section,
.counters-section,
.cta-footer {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 30px;
}

/* Values Section */
.values-section {
  background-color: var(--light-gray);
  padding: 40px 20px;
  text-align: center;
}
.values-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card img {
  width: 50px;
  margin-bottom: 15px;
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #072f5f;
}
.value-card p {
  font-size: 0.95rem;
  color: #333;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Subtle color variants per card */
.value1 {
  background-color: #eaf9ff;
}

.value2 {
  background-color: #e5f6e5;
}

.value3 {
  background-color: #fff7e6;
}
/* About Sections */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}
.about-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.about-section.reverse {
  flex-direction: row-reverse;
}

/* CEO Section */
.ceo-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}
.ceo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Vertically centers image & text */
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.ceo-image {
  flex: 0 0 280px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; /* This centers the image within its div */
}

.ceo-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.ceo-bio {
  flex: 1 1 400px;
}

.ceo-bio p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Forms */
.contact-section {
  background: #f9f9f9;
  padding: 30px 20px;
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
textarea {
  resize: vertical;
}

/* CTA Footer */
.cta-footer {
  background-color: var(--primary-blue);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

/* Footer */
footer {
  background-color: #072f5f;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}

/* Section Divider */
.section-divider {
  border: none;
  border-top: 3px solid var(--light-blue);
  margin: 15px 0;
}

/* Typography Tweaks */
h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
p {
  margin-top: 0;
  margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (min-width: 1200px) {
  .hero {
    padding: 40px 20px;
  }
  .contact-section {
    padding: 30px 20px;
  }
}
/* Reduce white space only on About/Privacy pages */
.page-about .intro-section,
.page-about .values-section,
.page-privacy .intro-section {
  padding: 40px 20px;
  margin-bottom: 30px;
}

/* Keep homepage original padding */
.page-home .intro-section,
.page-home .solutions-section,
.page-home .challenges-section,
.page-home .why-section {
  padding: 60px 20px; /* original values */
}

/* Hero adjustment only for sub-pages */
.page-home .hero {
  padding: 60px 20px;
}
.page-about .hero,
.page-privacy .hero {
  padding: 40px 20px;
}
.page-home .solutions-section {
  padding: 60px 20px; /* Restore original padding */
  text-align: center;
}

.page-home .solutions-section .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-blue);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card img {
  width: 100px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.solution-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cta-card {
  background-color: var(--cta-orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}
.page-home .challenges-section {
  padding: 60px 20px; /* Restore proper spacing */
  background-color: var(--light-gray);
  text-align: center;
}

.page-home .challenges-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.challenge-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.challenge-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.challenge-icon {
  font-size: 2rem;
  margin-right: 10px;
  color: var(--cta-orange);
}

.challenge-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin: 0;
}

.challenge-card ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
  color: #333;
}

.challenge-card ul li {
  margin-bottom: 10px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.product-feature-icon {
  flex: 0 0 80px;
}

.product-feature-icon img {
  width: 80px;
  height: auto;
}

.product-feature-content {
  flex: 1;
}

.product-feature-content h3 {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin: 0 0 10px 0;
}

.product-feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: none;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
.sticky-privacy-link {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(7, 47, 95, 0.9); /* semi-transparent primary blue */
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.sticky-privacy-link:hover {
  background: rgba(0, 173, 239, 0.9); /* accent blue on hover */
}

/* Hide on desktop */
@media (min-width: 768px) {
  .sticky-privacy-link {
    display: none;
  }
}
.intro-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Force 3 columns on desktop */
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-card img {
  width: 50px;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.why-card p {
  font-size: 0.95rem;
  color: #333;
}
.why-hccgrc-section {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}

.why-card {
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Color Variants */
.reason1 {
  background-color: #e0f7fa;
  color: #072f5f;
} /* Light Aqua */
.reason2 {
  background-color: #ffe9e1;
  color: #072f5f;
} /* Soft Peach */
.reason3 {
  background-color: #eaf4ff;
  color: #072f5f;
} /* Light Blue */
.reason4 {
  background-color: #e5f6e5;
  color: #072f5f;
} /* Soft Green */
.reason5 {
  background-color: #fff7e6;
  color: #072f5f;
} /* Soft Yellow */
.reason6 {
  background-color: #eaf9ff; /* Light pastel blueish */
  color: #072f5f;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.blog-post {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.blog-post h1 {
  color: #003366;
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-post h2 {
  color: #005b99;
  margin-top: 30px;
}

.blog-post .blog-date {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.blog-post ul {
  padding-left: 20px;
  margin-top: 10px;
}

.blog-post ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.blog-post p a {
  color: #005b99;
  text-decoration: none;
  font-weight: bold;
}

.blog-post p a:hover {
  text-decoration: underline;
}

.blog-post .highlight-box {
  background-color: #e6f2ff;
  padding: 15px 20px;
  border-left: 4px solid #3399ff;
  border-radius: 6px;
  margin: 20px 0;
}

.blog-post .cta-link {
  display: inline-block;
  background-color: #005b99;
  color: white;
  padding: 10px 18px;
  margin-top: 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blog-post .cta-link:hover {
  background-color: #004277;
}
.related-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.related-post {
  flex: 1 1 280px;
  background: #f4f8fb;
  padding: 20px;
  border-radius: 8px;
}

.related-post h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.related-post a {
  color: #005b99;
  text-decoration: none;
}

.related-post a:hover {
  text-decoration: underline;
}
.assessment-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.assessment-section h2 {
  color: #072f5f;
  font-size: 28px;
  margin-bottom: 15px;
}

.assessment-section p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  color: #333;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 600px) {
  .cta-button-group {
    flex-direction: row;
    justify-content: center;
  }
}
