.site-header .navbar .navbar-brand {
    max-width:200px;
    margin-right: 1rem;
    margin-left: 0;
    font-size: 1.5rem;
}
.home-overview
{
	background-color:#ced4db;
    background-size: cover;
}
.has-soft-orange-color {
    color: #273253;
}
.has-soft-orange-color {
    color: #273253;
}
.home-overview-b{
	color:#273253;
}
.has-soft-creame-background-color {
    background-color: #ced4db;
}
.home-hero {
        margin-top: 40px !important;
    }
}
body {
  font-family: Arial, sans-serif;
}

.customer-feedback-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.feedback-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feedback-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feedback-card:hover {
  transform: translateY(-5px);
}

.customer-quote {
  font-style: italic;
  color: #555;
}

.customer-name {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

.customer-position {
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  .feedback-container {
    flex-direction: column;
    align-items: center;
  }
}



.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 0rem !important;
}
.site-header .navbar {
    min-height: 50px;
}
.custom {
    font-size: 2rem;
    color: #eba509;
}
a {
    /* color: #000; */
    text-decoration: none;
    color: white;
}
a:hover {
    color: white;
}


.partner-ecosystem-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.partner-ecosystem-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.partner-card {
      /* background-color: #fff; */
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    padding: 20px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    display: flex
;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.partner-card img {
  max-width: 100%;
  height: 100px;
}

.partner-card:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-ecosystem-section h2 {
    font-size: 1.5rem;
  }
}
.navbar.navbar-expand-lg.navbar-light.fixed-top {
    background: ;
    color: blue;
}
.site-header .navbar .nav-item .nav-link {
    color: ;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.transform-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  background-color: #ced4db;
}

.transform-content {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.transform-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.transform-content p {
  font-size: 1.5rem;
  color: #273253;
  line-height: 1.5;
}

.transform-video {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.transform-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .transform-section {
    flex-direction: column;
    text-align: center;
  }

  .transform-content, 
  .transform-video {
    max-width: 100%;
  }

  .transform-content h2 {
    font-size: 1.75rem;
  }

  .transform-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .transform-content h2 {
    font-size: 1.5rem;
  }

  .transform-content p {
    font-size: 0.85rem;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.blog-section {
  padding: 40px 20px;
  background-color: #ced4db;
  text-align: center;
}

.blog-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-heading {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 10px;
}

.blog-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-read-more {
  font-size: 1rem;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.blog-read-more:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .blog-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.5rem;
  }

  .blog-description {
    font-size: 0.9rem;
  }

  .blog-read-more {
    font-size: 0.9rem;
  }
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .hero-slider {
      position: relative;
      overflow: hidden;
      max-width: 100%;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      min-width: 100%;
      height: 100vh;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      z-index: 10;
    }

    .prev-btn {
      left: 10px;
    }

    .next-btn {
      right: 10px;
    }

    /* Dots navigation */
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
    }

    .dot.active {
      background-color:#273253;
    }
	 body {
            margin: 0;
            font-family: Arial, sans-serif;
        }
        .knowledge-hub {
            padding: 20px;
            background-color: #f9f9f9;
            text-align: center;
        }
        .knowledge-hub h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .knowledge-hub p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 20px;
        }
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 0;
        }
        .knowledge-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: left;
        }
        .knowledge-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .knowledge-item .content {
            padding: 15px;
        }
        .knowledge-item h2 {
            font-size: 1.5rem;
            margin: 0 0 10px;
        }
        .knowledge-item p {
            font-size: 1rem;
            color: #666;
        }

        @media (max-width: 600px) {
            .knowledge-hub h1 {
                font-size: 1.5rem;
            }
            .knowledge-hub p {
                font-size: 0.9rem;
            }
        }
		
		