/* General Typography */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
}

/* Header */
.k-toolbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0;
}
.k-tabstrip-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.k-tabstrip-items .k-link {
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.k-tabstrip-items .k-link:hover {
  color: #007bff;
}

.custom-bg-gradient {
    background: linear-gradient(to right, #ffffff 0%, #f0f4f8 20%, #c0d3df 40%, #7ca0b4 60%, #3e6c84 80%, #002e50 100%) !important;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center !important;
  padding: 4rem;
}

.hero-content {
  z-index: 2;
  flex: 1;
  max-width: 50%;
  color: #1f1f1f;
}

.hero-animation {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#canvas--header {
  width: 100%;
  height: 50%;
  display: block;
}

/* Hero Text */
.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Buttons */
.k-button {
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  margin-right: 0.5rem;
}
.k-button.k-primary {
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
}
.k-button.k-primary:hover {
  background-color: #00509e;
}
.k-button:hover {
  background-color: #e6e6e6;
}

/* Features Section */
.features {
  padding: 3rem 2rem;
  background-color: #f8faff;
  text-align: center;
}
.features h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.features .k-card {
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  background: white;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
.features .k-card h5 {
  color: #003366;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.features .k-card p {
  color: #555;
  font-size: 1rem;
}

/* SVG Icons */
.svg-icon {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  fill: #3c8395;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
footer h5 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
footer p {
  margin: 0;
}

.four-lists {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
}

.svg-icon {
  margin-bottom: 1rem;
}

.icon-predictive-analytics {
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  fill: #3c8395; /* directly fill the paths */
}

.icon-predictive-analytics .cls-1 {
  fill: #3c8395 !important;
}

.icon-service {
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  fill: #3c8395 !important; /* or any brand color */
}

.icon-diagram {
  stroke: #1f268e; /* Customize stroke color */
  height: 1.5rem;
  width: 48px;
  height: 48px;
}


.icon-service *,
.icon-diagram *,
.icon-predictive-analytics * {
  fill: #3c8395 !important;
  stroke: #3c8395 !important;
}

.icon-service,
.icon-diagram,
.icon-predictive-analytics {
  color: #3c8395;
}

.max-wid {
  max-width: 1320px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991.98px) {
    .hero-animation {
      display: none;
    }
    .hero-content {
      max-width: 100% !important;
      margin: auto;
    }
    .hero h1 {
      font-size: 1.5rem;
    }
}