

.support-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.support-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0b2d5e;
  position: relative;
  display: inline-block;
}

.support-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: #fdd835; /* yellow highlight */
  z-index: -1;
}

.support-section p {
  max-width: 750px;
  margin: 20px auto;
  line-height: 1.6;
  font-size: 16px;
  color: #adaaaa;
}

.support-card {
  max-width: 900px;
  margin: 40px auto;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.support-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0b2d5e;
}

.support-list {
  list-style: none;
  padding: 0;
}

.support-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.support-list li::before {
  content: "✔";
  color: #2e7d32;
  font-weight: bold;
  margin-right: 10px;
}

/* Frame for Video / Image / Tiles */
.media-frame {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.media-frame img, 
.media-frame video {
  width: 100%;
  display: block;
}

/* Logo styling */
.logo {
  margin-bottom: 20px;
}

.logo img {
  height: 60px;
}

@media (max-width: 768px) {
  .support-section h2 {
    font-size: 26px;
  }
  .support-card {
    padding: 20px;
  }
}

/* Breadcrumb / Page Path */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.breadcrumb a {
  text-decoration: none;
  color: #0b2d5e;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fdd835;
}

.breadcrumb span {
  color: #888;
}



h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

p {
  font-size: 1em;
  color: #555;
}

.remediation-section .certifications {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}

.badge {
  background-color: #007BFF;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: bold;
}

.benefits-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-item {
  flex: 1 1 200px;
  text-align: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.difference-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 300px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}

.column h3 {
  margin-bottom: 10px;
  color: #007BFF;
}

.carousel-section {
  text-align: center;
  padding: 40px 20px;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.carousel {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 300px;
  flex: 0 0 auto;
}
.card img {
  width: 100%;
  border-radius: 8px;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #001f3f;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.1;
}
.nav:hover { opacity: 1; }
.prev { left: 10px; }
.next { right: 10px; }
.dots {
  margin-top: 15px;
}
.dots span {
  display: inline-block;
  height: 10px;
  width: 10px;
  background: #ccc;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}
.dots .active {
  background: #001f3f;
}




/* Why Node Section */
.why-node {
  text-align: center;
  padding: 60px 20px;
}

.why-node h2 {
  font-size: 2.4em;
  margin-bottom: 15px;
}

.why-node p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1em;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit {
  text-align: center;
}

.circle {
  width: 60px;
  height: 60px;
  background: #6c63ff;features
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  margin: 0 auto 10px;
}features

/* Features Section */
.features {
  background: #fff;
  padding: 80px 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.feature-card img {
  width: 50px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 0.95em;
}




